blob: dd5588f5d9390bd21d2585582716adfd20875c20 [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 *
17 * This file is released under the GPL.
18 */
19
20/*
21 * This virtual memory filesystem is heavily based on the ramfs. It
22 * extends ramfs by the ability to use swap and honor resource limits
23 * which makes it a completely usable filesystem.
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/fs.h>
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070029#include <linux/xattr.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070030#include <linux/exportfs.h>
Andreas Gruenbacher39f02472006-09-29 02:01:35 -070031#include <linux/generic_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/mm.h>
33#include <linux/mman.h>
34#include <linux/file.h>
35#include <linux/swap.h>
36#include <linux/pagemap.h>
37#include <linux/string.h>
38#include <linux/slab.h>
39#include <linux/backing-dev.h>
40#include <linux/shmem_fs.h>
41#include <linux/mount.h>
42#include <linux/writeback.h>
43#include <linux/vfs.h>
44#include <linux/blkdev.h>
45#include <linux/security.h>
46#include <linux/swapops.h>
47#include <linux/mempolicy.h>
48#include <linux/namei.h>
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +000049#include <linux/ctype.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070050#include <linux/migrate.h>
Christoph Lameterc1f60a52006-09-25 23:31:11 -070051#include <linux/highmem.h>
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080052#include <linux/seq_file.h>
Mimi Zohar92562922008-10-07 14:00:12 -040053#include <linux/magic.h>
Mimi Zohar1df9f0a2009-02-04 09:07:02 -050054#include <linux/ima.h>
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/uaccess.h>
57#include <asm/div64.h>
58#include <asm/pgtable.h>
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define ENTRIES_PER_PAGE (PAGE_CACHE_SIZE/sizeof(unsigned long))
61#define ENTRIES_PER_PAGEPAGE (ENTRIES_PER_PAGE*ENTRIES_PER_PAGE)
62#define BLOCKS_PER_PAGE (PAGE_CACHE_SIZE/512)
63
64#define SHMEM_MAX_INDEX (SHMEM_NR_DIRECT + (ENTRIES_PER_PAGEPAGE/2) * (ENTRIES_PER_PAGE+1))
65#define SHMEM_MAX_BYTES ((unsigned long long)SHMEM_MAX_INDEX << PAGE_CACHE_SHIFT)
66
67#define VM_ACCT(size) (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
68
69/* info->flags needs VM_flags to handle pagein/truncate races efficiently */
70#define SHMEM_PAGEIN VM_READ
71#define SHMEM_TRUNCATE VM_WRITE
72
73/* Definition to limit shmem_truncate's steps between cond_rescheds */
74#define LATENCY_LIMIT 64
75
76/* Pretend that each entry is of this size in directory's i_size */
77#define BOGO_DIRENT_SIZE 20
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/* Flag allocation requirements to shmem_getpage and shmem_swp_alloc */
80enum sgp_type {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 SGP_READ, /* don't exceed i_size, don't allocate page */
82 SGP_CACHE, /* don't exceed i_size, may allocate page */
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -080083 SGP_DIRTY, /* like SGP_CACHE, but set new page dirty */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 SGP_WRITE, /* may exceed i_size, may allocate page */
85};
86
Andrew Mortonb76db732008-02-08 04:21:49 -080087#ifdef CONFIG_TMPFS
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080088static unsigned long shmem_default_max_blocks(void)
89{
90 return totalram_pages / 2;
91}
92
93static unsigned long shmem_default_max_inodes(void)
94{
95 return min(totalram_pages - totalhigh_pages, totalram_pages / 2);
96}
Andrew Mortonb76db732008-02-08 04:21:49 -080097#endif
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -080098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static int shmem_getpage(struct inode *inode, unsigned long idx,
100 struct page **pagep, enum sgp_type sgp, int *type);
101
Al Viro6daa0e22005-10-21 03:18:50 -0400102static inline struct page *shmem_dir_alloc(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 /*
105 * The above definition of ENTRIES_PER_PAGE, and the use of
106 * BLOCKS_PER_PAGE on indirect pages, assume PAGE_CACHE_SIZE:
107 * might be reconsidered if it ever diverges from PAGE_SIZE.
Mel Gorman769848c2007-07-17 04:03:05 -0700108 *
Mel Gormane12ba742007-10-16 01:25:52 -0700109 * Mobility flags are masked out as swap vectors cannot move
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
Mel Gormane12ba742007-10-16 01:25:52 -0700111 return alloc_pages((gfp_mask & ~GFP_MOVABLE_MASK) | __GFP_ZERO,
Mel Gorman769848c2007-07-17 04:03:05 -0700112 PAGE_CACHE_SHIFT-PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115static inline void shmem_dir_free(struct page *page)
116{
117 __free_pages(page, PAGE_CACHE_SHIFT-PAGE_SHIFT);
118}
119
120static struct page **shmem_dir_map(struct page *page)
121{
122 return (struct page **)kmap_atomic(page, KM_USER0);
123}
124
125static inline void shmem_dir_unmap(struct page **dir)
126{
127 kunmap_atomic(dir, KM_USER0);
128}
129
130static swp_entry_t *shmem_swp_map(struct page *page)
131{
132 return (swp_entry_t *)kmap_atomic(page, KM_USER1);
133}
134
135static inline void shmem_swp_balance_unmap(void)
136{
137 /*
138 * When passing a pointer to an i_direct entry, to code which
139 * also handles indirect entries and so will shmem_swp_unmap,
140 * we must arrange for the preempt count to remain in balance.
141 * What kmap_atomic of a lowmem page does depends on config
142 * and architecture, so pretend to kmap_atomic some lowmem page.
143 */
144 (void) kmap_atomic(ZERO_PAGE(0), KM_USER1);
145}
146
147static inline void shmem_swp_unmap(swp_entry_t *entry)
148{
149 kunmap_atomic(entry, KM_USER1);
150}
151
152static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
153{
154 return sb->s_fs_info;
155}
156
157/*
158 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
159 * for shared memory and for shared anonymous (/dev/zero) mappings
160 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
161 * consistent with the pre-accounting of private mappings ...
162 */
163static inline int shmem_acct_size(unsigned long flags, loff_t size)
164{
Alan Cox731572d2008-10-29 14:01:20 -0700165 return (flags & VM_ACCOUNT) ?
166 security_vm_enough_memory_kern(VM_ACCT(size)) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169static inline void shmem_unacct_size(unsigned long flags, loff_t size)
170{
171 if (flags & VM_ACCOUNT)
172 vm_unacct_memory(VM_ACCT(size));
173}
174
175/*
176 * ... whereas tmpfs objects are accounted incrementally as
177 * pages are allocated, in order to allow huge sparse files.
178 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
179 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
180 */
181static inline int shmem_acct_block(unsigned long flags)
182{
Alan Cox731572d2008-10-29 14:01:20 -0700183 return (flags & VM_ACCOUNT) ?
184 0 : security_vm_enough_memory_kern(VM_ACCT(PAGE_CACHE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
187static inline void shmem_unacct_blocks(unsigned long flags, long pages)
188{
189 if (!(flags & VM_ACCOUNT))
190 vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
191}
192
Hugh Dickins759b9772007-03-05 00:30:28 -0800193static const struct super_operations shmem_ops;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700194static const struct address_space_operations shmem_aops;
Helge Deller15ad7cd2006-12-06 20:40:36 -0800195static const struct file_operations shmem_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800196static const struct inode_operations shmem_inode_operations;
197static const struct inode_operations shmem_dir_inode_operations;
198static const struct inode_operations shmem_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static struct vm_operations_struct shmem_vm_ops;
200
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -0700201static struct backing_dev_info shmem_backing_dev_info __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 .ra_pages = 0, /* No readahead */
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700203 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK | BDI_CAP_SWAP_BACKED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 .unplug_io_fn = default_unplug_io_fn,
205};
206
207static LIST_HEAD(shmem_swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800208static DEFINE_MUTEX(shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210static void shmem_free_blocks(struct inode *inode, long pages)
211{
212 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700213 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 spin_lock(&sbinfo->stat_lock);
215 sbinfo->free_blocks += pages;
216 inode->i_blocks -= pages*BLOCKS_PER_PAGE;
217 spin_unlock(&sbinfo->stat_lock);
218 }
219}
220
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800221static int shmem_reserve_inode(struct super_block *sb)
222{
223 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
224 if (sbinfo->max_inodes) {
225 spin_lock(&sbinfo->stat_lock);
226 if (!sbinfo->free_inodes) {
227 spin_unlock(&sbinfo->stat_lock);
228 return -ENOSPC;
229 }
230 sbinfo->free_inodes--;
231 spin_unlock(&sbinfo->stat_lock);
232 }
233 return 0;
234}
235
236static void shmem_free_inode(struct super_block *sb)
237{
238 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
239 if (sbinfo->max_inodes) {
240 spin_lock(&sbinfo->stat_lock);
241 sbinfo->free_inodes++;
242 spin_unlock(&sbinfo->stat_lock);
243 }
244}
245
Randy Dunlap46711812008-03-19 17:00:41 -0700246/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 * shmem_recalc_inode - recalculate the size of an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * @inode: inode to recalc
249 *
250 * We have to calculate the free blocks since the mm can drop
251 * undirtied hole pages behind our back.
252 *
253 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
254 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
255 *
256 * It has to be called with the spinlock held.
257 */
258static void shmem_recalc_inode(struct inode *inode)
259{
260 struct shmem_inode_info *info = SHMEM_I(inode);
261 long freed;
262
263 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
264 if (freed > 0) {
265 info->alloced -= freed;
266 shmem_unacct_blocks(info->flags, freed);
267 shmem_free_blocks(inode, freed);
268 }
269}
270
Randy Dunlap46711812008-03-19 17:00:41 -0700271/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 * shmem_swp_entry - find the swap vector position in the info structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * @info: info structure for the inode
274 * @index: index of the page to find
275 * @page: optional page to add to the structure. Has to be preset to
276 * all zeros
277 *
278 * If there is no space allocated yet it will return NULL when
279 * page is NULL, else it will use the page for the needed block,
280 * setting it to NULL on return to indicate that it has been used.
281 *
282 * The swap vector is organized the following way:
283 *
284 * There are SHMEM_NR_DIRECT entries directly stored in the
285 * shmem_inode_info structure. So small files do not need an addional
286 * allocation.
287 *
288 * For pages with index > SHMEM_NR_DIRECT there is the pointer
289 * i_indirect which points to a page which holds in the first half
290 * doubly indirect blocks, in the second half triple indirect blocks:
291 *
292 * For an artificial ENTRIES_PER_PAGE = 4 this would lead to the
293 * following layout (for SHMEM_NR_DIRECT == 16):
294 *
295 * i_indirect -> dir --> 16-19
296 * | +-> 20-23
297 * |
298 * +-->dir2 --> 24-27
299 * | +-> 28-31
300 * | +-> 32-35
301 * | +-> 36-39
302 * |
303 * +-->dir3 --> 40-43
304 * +-> 44-47
305 * +-> 48-51
306 * +-> 52-55
307 */
308static swp_entry_t *shmem_swp_entry(struct shmem_inode_info *info, unsigned long index, struct page **page)
309{
310 unsigned long offset;
311 struct page **dir;
312 struct page *subdir;
313
314 if (index < SHMEM_NR_DIRECT) {
315 shmem_swp_balance_unmap();
316 return info->i_direct+index;
317 }
318 if (!info->i_indirect) {
319 if (page) {
320 info->i_indirect = *page;
321 *page = NULL;
322 }
323 return NULL; /* need another page */
324 }
325
326 index -= SHMEM_NR_DIRECT;
327 offset = index % ENTRIES_PER_PAGE;
328 index /= ENTRIES_PER_PAGE;
329 dir = shmem_dir_map(info->i_indirect);
330
331 if (index >= ENTRIES_PER_PAGE/2) {
332 index -= ENTRIES_PER_PAGE/2;
333 dir += ENTRIES_PER_PAGE/2 + index/ENTRIES_PER_PAGE;
334 index %= ENTRIES_PER_PAGE;
335 subdir = *dir;
336 if (!subdir) {
337 if (page) {
338 *dir = *page;
339 *page = NULL;
340 }
341 shmem_dir_unmap(dir);
342 return NULL; /* need another page */
343 }
344 shmem_dir_unmap(dir);
345 dir = shmem_dir_map(subdir);
346 }
347
348 dir += index;
349 subdir = *dir;
350 if (!subdir) {
351 if (!page || !(subdir = *page)) {
352 shmem_dir_unmap(dir);
353 return NULL; /* need a page */
354 }
355 *dir = subdir;
356 *page = NULL;
357 }
358 shmem_dir_unmap(dir);
359 return shmem_swp_map(subdir) + offset;
360}
361
362static void shmem_swp_set(struct shmem_inode_info *info, swp_entry_t *entry, unsigned long value)
363{
364 long incdec = value? 1: -1;
365
366 entry->val = value;
367 info->swapped += incdec;
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700368 if ((unsigned long)(entry - info->i_direct) >= SHMEM_NR_DIRECT) {
369 struct page *page = kmap_atomic_to_page(entry);
370 set_page_private(page, page_private(page) + incdec);
371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Randy Dunlap46711812008-03-19 17:00:41 -0700374/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * shmem_swp_alloc - get the position of the swap entry for the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 * @info: info structure for the inode
377 * @index: index of the page to find
378 * @sgp: check and recheck i_size? skip allocation?
Randy Dunlap46711812008-03-19 17:00:41 -0700379 *
380 * If the entry does not exist, allocate it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 */
382static swp_entry_t *shmem_swp_alloc(struct shmem_inode_info *info, unsigned long index, enum sgp_type sgp)
383{
384 struct inode *inode = &info->vfs_inode;
385 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
386 struct page *page = NULL;
387 swp_entry_t *entry;
388
389 if (sgp != SGP_WRITE &&
390 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode))
391 return ERR_PTR(-EINVAL);
392
393 while (!(entry = shmem_swp_entry(info, index, &page))) {
394 if (sgp == SGP_READ)
395 return shmem_swp_map(ZERO_PAGE(0));
396 /*
397 * Test free_blocks against 1 not 0, since we have 1 data
398 * page (and perhaps indirect index pages) yet to allocate:
399 * a waste to allocate index if we cannot allocate data.
400 */
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700401 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 spin_lock(&sbinfo->stat_lock);
403 if (sbinfo->free_blocks <= 1) {
404 spin_unlock(&sbinfo->stat_lock);
405 return ERR_PTR(-ENOSPC);
406 }
407 sbinfo->free_blocks--;
408 inode->i_blocks += BLOCKS_PER_PAGE;
409 spin_unlock(&sbinfo->stat_lock);
410 }
411
412 spin_unlock(&info->lock);
Mel Gorman769848c2007-07-17 04:03:05 -0700413 page = shmem_dir_alloc(mapping_gfp_mask(inode->i_mapping));
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700414 if (page)
415 set_page_private(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 spin_lock(&info->lock);
417
418 if (!page) {
419 shmem_free_blocks(inode, 1);
420 return ERR_PTR(-ENOMEM);
421 }
422 if (sgp != SGP_WRITE &&
423 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
424 entry = ERR_PTR(-EINVAL);
425 break;
426 }
427 if (info->next_index <= index)
428 info->next_index = index + 1;
429 }
430 if (page) {
431 /* another task gave its page, or truncated the file */
432 shmem_free_blocks(inode, 1);
433 shmem_dir_free(page);
434 }
435 if (info->next_index <= index && !IS_ERR(entry))
436 info->next_index = index + 1;
437 return entry;
438}
439
Randy Dunlap46711812008-03-19 17:00:41 -0700440/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * shmem_free_swp - free some swap entries in a directory
Hugh Dickins1ae70002007-03-29 01:20:36 -0700442 * @dir: pointer to the directory
443 * @edir: pointer after last entry of the directory
444 * @punch_lock: pointer to spinlock when needed for the holepunch case
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
Hugh Dickins1ae70002007-03-29 01:20:36 -0700446static int shmem_free_swp(swp_entry_t *dir, swp_entry_t *edir,
447 spinlock_t *punch_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Hugh Dickins1ae70002007-03-29 01:20:36 -0700449 spinlock_t *punch_unlock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 swp_entry_t *ptr;
451 int freed = 0;
452
453 for (ptr = dir; ptr < edir; ptr++) {
454 if (ptr->val) {
Hugh Dickins1ae70002007-03-29 01:20:36 -0700455 if (unlikely(punch_lock)) {
456 punch_unlock = punch_lock;
457 punch_lock = NULL;
458 spin_lock(punch_unlock);
459 if (!ptr->val)
460 continue;
461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 free_swap_and_cache(*ptr);
463 *ptr = (swp_entry_t){0};
464 freed++;
465 }
466 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700467 if (punch_unlock)
468 spin_unlock(punch_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return freed;
470}
471
Hugh Dickins1ae70002007-03-29 01:20:36 -0700472static int shmem_map_and_free_swp(struct page *subdir, int offset,
473 int limit, struct page ***dir, spinlock_t *punch_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 swp_entry_t *ptr;
476 int freed = 0;
477
478 ptr = shmem_swp_map(subdir);
479 for (; offset < limit; offset += LATENCY_LIMIT) {
480 int size = limit - offset;
481 if (size > LATENCY_LIMIT)
482 size = LATENCY_LIMIT;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700483 freed += shmem_free_swp(ptr+offset, ptr+offset+size,
484 punch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (need_resched()) {
486 shmem_swp_unmap(ptr);
487 if (*dir) {
488 shmem_dir_unmap(*dir);
489 *dir = NULL;
490 }
491 cond_resched();
492 ptr = shmem_swp_map(subdir);
493 }
494 }
495 shmem_swp_unmap(ptr);
496 return freed;
497}
498
499static void shmem_free_pages(struct list_head *next)
500{
501 struct page *page;
502 int freed = 0;
503
504 do {
505 page = container_of(next, struct page, lru);
506 next = next->next;
507 shmem_dir_free(page);
508 freed++;
509 if (freed >= LATENCY_LIMIT) {
510 cond_resched();
511 freed = 0;
512 }
513 } while (next);
514}
515
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800516static void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 struct shmem_inode_info *info = SHMEM_I(inode);
519 unsigned long idx;
520 unsigned long size;
521 unsigned long limit;
522 unsigned long stage;
523 unsigned long diroff;
524 struct page **dir;
525 struct page *topdir;
526 struct page *middir;
527 struct page *subdir;
528 swp_entry_t *ptr;
529 LIST_HEAD(pages_to_free);
530 long nr_pages_to_free = 0;
531 long nr_swaps_freed = 0;
532 int offset;
533 int freed;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700534 int punch_hole;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700535 spinlock_t *needs_lock;
536 spinlock_t *punch_lock;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700537 unsigned long upper_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800540 idx = (start + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (idx >= info->next_index)
542 return;
543
544 spin_lock(&info->lock);
545 info->flags |= SHMEM_TRUNCATE;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800546 if (likely(end == (loff_t) -1)) {
547 limit = info->next_index;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700548 upper_limit = SHMEM_MAX_INDEX;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800549 info->next_index = idx;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700550 needs_lock = NULL;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700551 punch_hole = 0;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800552 } else {
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700553 if (end + 1 >= inode->i_size) { /* we may free a little more */
554 limit = (inode->i_size + PAGE_CACHE_SIZE - 1) >>
555 PAGE_CACHE_SHIFT;
556 upper_limit = SHMEM_MAX_INDEX;
557 } else {
558 limit = (end + 1) >> PAGE_CACHE_SHIFT;
559 upper_limit = limit;
560 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700561 needs_lock = &info->lock;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800562 punch_hole = 1;
563 }
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 topdir = info->i_indirect;
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800566 if (topdir && idx <= SHMEM_NR_DIRECT && !punch_hole) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 info->i_indirect = NULL;
568 nr_pages_to_free++;
569 list_add(&topdir->lru, &pages_to_free);
570 }
571 spin_unlock(&info->lock);
572
573 if (info->swapped && idx < SHMEM_NR_DIRECT) {
574 ptr = info->i_direct;
575 size = limit;
576 if (size > SHMEM_NR_DIRECT)
577 size = SHMEM_NR_DIRECT;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700578 nr_swaps_freed = shmem_free_swp(ptr+idx, ptr+size, needs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Badari Pulavarty92a3d032006-12-22 01:06:23 -0800580
581 /*
582 * If there are no indirect blocks or we are punching a hole
583 * below indirect blocks, nothing to be done.
584 */
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700585 if (!topdir || limit <= SHMEM_NR_DIRECT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 goto done2;
587
Hugh Dickins1ae70002007-03-29 01:20:36 -0700588 /*
589 * The truncation case has already dropped info->lock, and we're safe
590 * because i_size and next_index have already been lowered, preventing
591 * access beyond. But in the punch_hole case, we still need to take
592 * the lock when updating the swap directory, because there might be
593 * racing accesses by shmem_getpage(SGP_CACHE), shmem_unuse_inode or
594 * shmem_writepage. However, whenever we find we can remove a whole
595 * directory page (not at the misaligned start or end of the range),
596 * we first NULLify its pointer in the level above, and then have no
597 * need to take the lock when updating its contents: needs_lock and
598 * punch_lock (either pointing to info->lock or NULL) manage this.
599 */
600
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700601 upper_limit -= SHMEM_NR_DIRECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 limit -= SHMEM_NR_DIRECT;
603 idx = (idx > SHMEM_NR_DIRECT)? (idx - SHMEM_NR_DIRECT): 0;
604 offset = idx % ENTRIES_PER_PAGE;
605 idx -= offset;
606
607 dir = shmem_dir_map(topdir);
608 stage = ENTRIES_PER_PAGEPAGE/2;
609 if (idx < ENTRIES_PER_PAGEPAGE/2) {
610 middir = topdir;
611 diroff = idx/ENTRIES_PER_PAGE;
612 } else {
613 dir += ENTRIES_PER_PAGE/2;
614 dir += (idx - ENTRIES_PER_PAGEPAGE/2)/ENTRIES_PER_PAGEPAGE;
615 while (stage <= idx)
616 stage += ENTRIES_PER_PAGEPAGE;
617 middir = *dir;
618 if (*dir) {
619 diroff = ((idx - ENTRIES_PER_PAGEPAGE/2) %
620 ENTRIES_PER_PAGEPAGE) / ENTRIES_PER_PAGE;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700621 if (!diroff && !offset && upper_limit >= stage) {
Hugh Dickins1ae70002007-03-29 01:20:36 -0700622 if (needs_lock) {
623 spin_lock(needs_lock);
624 *dir = NULL;
625 spin_unlock(needs_lock);
626 needs_lock = NULL;
627 } else
628 *dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 nr_pages_to_free++;
630 list_add(&middir->lru, &pages_to_free);
631 }
632 shmem_dir_unmap(dir);
633 dir = shmem_dir_map(middir);
634 } else {
635 diroff = 0;
636 offset = 0;
637 idx = stage;
638 }
639 }
640
641 for (; idx < limit; idx += ENTRIES_PER_PAGE, diroff++) {
642 if (unlikely(idx == stage)) {
643 shmem_dir_unmap(dir);
644 dir = shmem_dir_map(topdir) +
645 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
646 while (!*dir) {
647 dir++;
648 idx += ENTRIES_PER_PAGEPAGE;
649 if (idx >= limit)
650 goto done1;
651 }
652 stage = idx + ENTRIES_PER_PAGEPAGE;
653 middir = *dir;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700654 if (punch_hole)
655 needs_lock = &info->lock;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700656 if (upper_limit >= stage) {
Hugh Dickins1ae70002007-03-29 01:20:36 -0700657 if (needs_lock) {
658 spin_lock(needs_lock);
659 *dir = NULL;
660 spin_unlock(needs_lock);
661 needs_lock = NULL;
662 } else
663 *dir = NULL;
Hugh Dickinsa2646d12007-03-29 01:20:35 -0700664 nr_pages_to_free++;
665 list_add(&middir->lru, &pages_to_free);
666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 shmem_dir_unmap(dir);
668 cond_resched();
669 dir = shmem_dir_map(middir);
670 diroff = 0;
671 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700672 punch_lock = needs_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 subdir = dir[diroff];
Hugh Dickins1ae70002007-03-29 01:20:36 -0700674 if (subdir && !offset && upper_limit-idx >= ENTRIES_PER_PAGE) {
675 if (needs_lock) {
676 spin_lock(needs_lock);
677 dir[diroff] = NULL;
678 spin_unlock(needs_lock);
679 punch_lock = NULL;
680 } else
681 dir[diroff] = NULL;
682 nr_pages_to_free++;
683 list_add(&subdir->lru, &pages_to_free);
684 }
685 if (subdir && page_private(subdir) /* has swap entries */) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 size = limit - idx;
687 if (size > ENTRIES_PER_PAGE)
688 size = ENTRIES_PER_PAGE;
689 freed = shmem_map_and_free_swp(subdir,
Hugh Dickins1ae70002007-03-29 01:20:36 -0700690 offset, size, &dir, punch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (!dir)
692 dir = shmem_dir_map(middir);
693 nr_swaps_freed += freed;
Hugh Dickins1ae70002007-03-29 01:20:36 -0700694 if (offset || punch_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 spin_lock(&info->lock);
Hugh Dickins1ae70002007-03-29 01:20:36 -0700696 set_page_private(subdir,
697 page_private(subdir) - freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 spin_unlock(&info->lock);
Hugh Dickins1ae70002007-03-29 01:20:36 -0700699 } else
700 BUG_ON(page_private(subdir) != freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Hugh Dickins1ae70002007-03-29 01:20:36 -0700702 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704done1:
705 shmem_dir_unmap(dir);
706done2:
707 if (inode->i_mapping->nrpages && (info->flags & SHMEM_PAGEIN)) {
708 /*
709 * Call truncate_inode_pages again: racing shmem_unuse_inode
710 * may have swizzled a page in from swap since vmtruncate or
711 * generic_delete_inode did it, before we lowered next_index.
712 * Also, though shmem_getpage checks i_size before adding to
713 * cache, no recheck after: so fix the narrow window there too.
Hugh Dickins16a10012007-03-29 01:20:37 -0700714 *
715 * Recalling truncate_inode_pages_range and unmap_mapping_range
716 * every time for punch_hole (which never got a chance to clear
717 * SHMEM_PAGEIN at the start of vmtruncate_range) is expensive,
718 * yet hardly ever necessary: try to optimize them out later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 */
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800720 truncate_inode_pages_range(inode->i_mapping, start, end);
Hugh Dickins16a10012007-03-29 01:20:37 -0700721 if (punch_hole)
722 unmap_mapping_range(inode->i_mapping, start,
723 end - start, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725
726 spin_lock(&info->lock);
727 info->flags &= ~SHMEM_TRUNCATE;
728 info->swapped -= nr_swaps_freed;
729 if (nr_pages_to_free)
730 shmem_free_blocks(inode, nr_pages_to_free);
731 shmem_recalc_inode(inode);
732 spin_unlock(&info->lock);
733
734 /*
735 * Empty swap vector directory pages to be freed?
736 */
737 if (!list_empty(&pages_to_free)) {
738 pages_to_free.prev->next = NULL;
739 shmem_free_pages(pages_to_free.next);
740 }
741}
742
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -0800743static void shmem_truncate(struct inode *inode)
744{
745 shmem_truncate_range(inode, inode->i_size, (loff_t)-1);
746}
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748static int shmem_notify_change(struct dentry *dentry, struct iattr *attr)
749{
750 struct inode *inode = dentry->d_inode;
751 struct page *page = NULL;
752 int error;
753
Andreas Gruenbacher39f02472006-09-29 02:01:35 -0700754 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (attr->ia_size < inode->i_size) {
756 /*
757 * If truncating down to a partial page, then
758 * if that page is already allocated, hold it
759 * in memory until the truncation is over, so
760 * truncate_partial_page cannnot miss it were
761 * it assigned to swap.
762 */
763 if (attr->ia_size & (PAGE_CACHE_SIZE-1)) {
764 (void) shmem_getpage(inode,
765 attr->ia_size>>PAGE_CACHE_SHIFT,
766 &page, SGP_READ, NULL);
Hugh Dickinsd3602442008-02-04 22:28:44 -0800767 if (page)
768 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770 /*
771 * Reset SHMEM_PAGEIN flag so that shmem_truncate can
772 * detect if any pages might have been added to cache
773 * after truncate_inode_pages. But we needn't bother
774 * if it's being fully truncated to zero-length: the
775 * nrpages check is efficient enough in that case.
776 */
777 if (attr->ia_size) {
778 struct shmem_inode_info *info = SHMEM_I(inode);
779 spin_lock(&info->lock);
780 info->flags &= ~SHMEM_PAGEIN;
781 spin_unlock(&info->lock);
782 }
783 }
784 }
785
786 error = inode_change_ok(inode, attr);
787 if (!error)
788 error = inode_setattr(inode, attr);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -0700789#ifdef CONFIG_TMPFS_POSIX_ACL
790 if (!error && (attr->ia_valid & ATTR_MODE))
791 error = generic_acl_chmod(inode, &shmem_acl_ops);
792#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (page)
794 page_cache_release(page);
795 return error;
796}
797
798static void shmem_delete_inode(struct inode *inode)
799{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 struct shmem_inode_info *info = SHMEM_I(inode);
801
802 if (inode->i_op->truncate == shmem_truncate) {
Mark Fashehfef26652005-09-09 13:01:31 -0700803 truncate_inode_pages(inode->i_mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 shmem_unacct_size(info->flags, inode->i_size);
805 inode->i_size = 0;
806 shmem_truncate(inode);
807 if (!list_empty(&info->swaplist)) {
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800808 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 list_del_init(&info->swaplist);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800810 mutex_unlock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812 }
Hugh Dickins0edd73b2005-06-21 17:15:04 -0700813 BUG_ON(inode->i_blocks);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -0800814 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 clear_inode(inode);
816}
817
818static inline int shmem_find_swp(swp_entry_t entry, swp_entry_t *dir, swp_entry_t *edir)
819{
820 swp_entry_t *ptr;
821
822 for (ptr = dir; ptr < edir; ptr++) {
823 if (ptr->val == entry.val)
824 return ptr - dir;
825 }
826 return -1;
827}
828
829static int shmem_unuse_inode(struct shmem_inode_info *info, swp_entry_t entry, struct page *page)
830{
831 struct inode *inode;
832 unsigned long idx;
833 unsigned long size;
834 unsigned long limit;
835 unsigned long stage;
836 struct page **dir;
837 struct page *subdir;
838 swp_entry_t *ptr;
839 int offset;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800840 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 idx = 0;
843 ptr = info->i_direct;
844 spin_lock(&info->lock);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800845 if (!info->swapped) {
846 list_del_init(&info->swaplist);
847 goto lost2;
848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 limit = info->next_index;
850 size = limit;
851 if (size > SHMEM_NR_DIRECT)
852 size = SHMEM_NR_DIRECT;
853 offset = shmem_find_swp(entry, ptr, ptr+size);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800854 if (offset >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (!info->i_indirect)
857 goto lost2;
858
859 dir = shmem_dir_map(info->i_indirect);
860 stage = SHMEM_NR_DIRECT + ENTRIES_PER_PAGEPAGE/2;
861
862 for (idx = SHMEM_NR_DIRECT; idx < limit; idx += ENTRIES_PER_PAGE, dir++) {
863 if (unlikely(idx == stage)) {
864 shmem_dir_unmap(dir-1);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800865 if (cond_resched_lock(&info->lock)) {
866 /* check it has not been truncated */
867 if (limit > info->next_index) {
868 limit = info->next_index;
869 if (idx >= limit)
870 goto lost2;
871 }
872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 dir = shmem_dir_map(info->i_indirect) +
874 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
875 while (!*dir) {
876 dir++;
877 idx += ENTRIES_PER_PAGEPAGE;
878 if (idx >= limit)
879 goto lost1;
880 }
881 stage = idx + ENTRIES_PER_PAGEPAGE;
882 subdir = *dir;
883 shmem_dir_unmap(dir);
884 dir = shmem_dir_map(subdir);
885 }
886 subdir = *dir;
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700887 if (subdir && page_private(subdir)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 ptr = shmem_swp_map(subdir);
889 size = limit - idx;
890 if (size > ENTRIES_PER_PAGE)
891 size = ENTRIES_PER_PAGE;
892 offset = shmem_find_swp(entry, ptr, ptr+size);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800893 shmem_swp_unmap(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (offset >= 0) {
895 shmem_dir_unmap(dir);
896 goto found;
897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899 }
900lost1:
901 shmem_dir_unmap(dir-1);
902lost2:
903 spin_unlock(&info->lock);
904 return 0;
905found:
906 idx += offset;
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800907 inode = igrab(&info->vfs_inode);
908 spin_unlock(&info->lock);
909
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800910 /*
911 * Move _head_ to start search for next from here.
912 * But be careful: shmem_delete_inode checks list_empty without taking
913 * mutex, and there's an instant in list_move_tail when info->swaplist
914 * would appear empty, if it were the only one on shmem_swaplist. We
915 * could avoid doing it if inode NULL; or use this minor optimization.
916 */
917 if (shmem_swaplist.next != &info->swaplist)
918 list_move_tail(&shmem_swaplist, &info->swaplist);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800919 mutex_unlock(&shmem_swaplist_mutex);
920
921 error = 1;
922 if (!inode)
923 goto out;
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700924 /* Precharge page using GFP_KERNEL while we can wait */
Hugh Dickins82369552008-02-07 00:14:22 -0800925 error = mem_cgroup_cache_charge(page, current->mm, GFP_KERNEL);
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800926 if (error)
927 goto out;
Hugh Dickins82369552008-02-07 00:14:22 -0800928 error = radix_tree_preload(GFP_KERNEL);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700929 if (error) {
930 mem_cgroup_uncharge_cache_page(page);
931 goto out;
932 }
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800933 error = 1;
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800934
935 spin_lock(&info->lock);
936 ptr = shmem_swp_entry(info, idx, NULL);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700937 if (ptr && ptr->val == entry.val) {
Nick Piggine2867812008-07-25 19:45:30 -0700938 error = add_to_page_cache_locked(page, inode->i_mapping,
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800939 idx, GFP_NOWAIT);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -0700940 /* does mem_cgroup_uncharge_cache_page on error */
941 } else /* we must compensate for our precharge above */
942 mem_cgroup_uncharge_cache_page(page);
943
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800944 if (error == -EEXIST) {
945 struct page *filepage = find_get_page(inode->i_mapping, idx);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800946 error = 1;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -0800947 if (filepage) {
948 /*
949 * There might be a more uptodate page coming down
950 * from a stacked writepage: forget our swappage if so.
951 */
952 if (PageUptodate(filepage))
953 error = 0;
954 page_cache_release(filepage);
955 }
956 }
957 if (!error) {
Hugh Dickins73b12622008-02-04 22:28:50 -0800958 delete_from_swap_cache(page);
959 set_page_dirty(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 info->flags |= SHMEM_PAGEIN;
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800961 shmem_swp_set(info, ptr, 0);
962 swap_free(entry);
963 error = 1; /* not an error, but entry was found */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800965 if (ptr)
966 shmem_swp_unmap(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 spin_unlock(&info->lock);
Hugh Dickinsb409f9f2008-02-04 22:28:54 -0800968 radix_tree_preload_end();
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800969out:
970 unlock_page(page);
971 page_cache_release(page);
972 iput(inode); /* allows for NULL */
973 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
976/*
977 * shmem_unuse() search for an eventually swapped out shmem page.
978 */
979int shmem_unuse(swp_entry_t entry, struct page *page)
980{
981 struct list_head *p, *next;
982 struct shmem_inode_info *info;
983 int found = 0;
984
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800985 mutex_lock(&shmem_swaplist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 list_for_each_safe(p, next, &shmem_swaplist) {
987 info = list_entry(p, struct shmem_inode_info, swaplist);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -0800988 found = shmem_unuse_inode(info, entry, page);
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800989 cond_resched();
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800990 if (found)
991 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
Hugh Dickinscb5f7b92008-02-04 22:28:52 -0800993 mutex_unlock(&shmem_swaplist_mutex);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800994out: return found; /* 0 or 1 or -ENOMEM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
997/*
998 * Move the page from the page cache to the swap cache.
999 */
1000static int shmem_writepage(struct page *page, struct writeback_control *wbc)
1001{
1002 struct shmem_inode_info *info;
1003 swp_entry_t *entry, swap;
1004 struct address_space *mapping;
1005 unsigned long index;
1006 struct inode *inode;
1007
1008 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 mapping = page->mapping;
1010 index = page->index;
1011 inode = mapping->host;
1012 info = SHMEM_I(inode);
1013 if (info->flags & VM_LOCKED)
1014 goto redirty;
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001015 if (!total_swap_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 goto redirty;
1017
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001018 /*
1019 * shmem_backing_dev_info's capabilities prevent regular writeback or
1020 * sync from ever calling shmem_writepage; but a stacking filesystem
1021 * may use the ->writepage of its underlying filesystem, in which case
1022 * tmpfs should write out to swap only in response to memory pressure,
1023 * and not for pdflush or sync. However, in those cases, we do still
1024 * want to check if there's a redundant swappage to be discarded.
1025 */
1026 if (wbc->for_reclaim)
1027 swap = get_swap_page();
1028 else
1029 swap.val = 0;
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 spin_lock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (index >= info->next_index) {
1033 BUG_ON(!(info->flags & SHMEM_TRUNCATE));
1034 goto unlock;
1035 }
1036 entry = shmem_swp_entry(info, index, NULL);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001037 if (entry->val) {
1038 /*
1039 * The more uptodate page coming down from a stacked
1040 * writepage should replace our old swappage.
1041 */
1042 free_swap_and_cache(*entry);
1043 shmem_swp_set(info, entry, 0);
1044 }
1045 shmem_recalc_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001047 if (swap.val && add_to_swap_cache(page, swap, GFP_ATOMIC) == 0) {
Hugh Dickins73b12622008-02-04 22:28:50 -08001048 remove_from_page_cache(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 shmem_swp_set(info, entry, swap.val);
1050 shmem_swp_unmap(entry);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001051 if (list_empty(&info->swaplist))
1052 inode = igrab(inode);
1053 else
1054 inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 spin_unlock(&info->lock);
Hugh Dickins73b12622008-02-04 22:28:50 -08001056 swap_duplicate(swap);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001057 BUG_ON(page_mapped(page));
Hugh Dickins73b12622008-02-04 22:28:50 -08001058 page_cache_release(page); /* pagecache ref */
1059 set_page_dirty(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 unlock_page(page);
Hugh Dickins1b1b32f2008-02-04 22:28:55 -08001061 if (inode) {
1062 mutex_lock(&shmem_swaplist_mutex);
1063 /* move instead of add in case we're racing */
1064 list_move_tail(&info->swaplist, &shmem_swaplist);
1065 mutex_unlock(&shmem_swaplist_mutex);
1066 iput(inode);
1067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return 0;
1069 }
1070
1071 shmem_swp_unmap(entry);
1072unlock:
1073 spin_unlock(&info->lock);
1074 swap_free(swap);
1075redirty:
1076 set_page_dirty(page);
Hugh Dickinsd9fe5262008-02-04 22:28:51 -08001077 if (wbc->for_reclaim)
1078 return AOP_WRITEPAGE_ACTIVATE; /* Return with page locked */
1079 unlock_page(page);
1080 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
1083#ifdef CONFIG_NUMA
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001084#ifdef CONFIG_TMPFS
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001085static void shmem_show_mpol(struct seq_file *seq, struct mempolicy *mpol)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001086{
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001087 char buffer[64];
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001088
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001089 if (!mpol || mpol->mode == MPOL_DEFAULT)
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001090 return; /* show nothing */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001091
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001092 mpol_to_str(buffer, sizeof(buffer), mpol, 1);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001093
Lee Schermerhorn095f1fc2008-04-28 02:13:23 -07001094 seq_printf(seq, ",mpol=%s", buffer);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001095}
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001096
1097static struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1098{
1099 struct mempolicy *mpol = NULL;
1100 if (sbinfo->mpol) {
1101 spin_lock(&sbinfo->stat_lock); /* prevent replace/use races */
1102 mpol = sbinfo->mpol;
1103 mpol_get(mpol);
1104 spin_unlock(&sbinfo->stat_lock);
1105 }
1106 return mpol;
1107}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001108#endif /* CONFIG_TMPFS */
1109
Hugh Dickins02098fe2008-02-04 22:28:42 -08001110static struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
1111 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001113 struct mempolicy mpol, *spol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 struct vm_area_struct pvma;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001115 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001117 spol = mpol_cond_copy(&mpol,
1118 mpol_shared_policy_lookup(&info->policy, idx));
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /* Create a pseudo vma that just contains the policy */
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001121 pvma.vm_start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 pvma.vm_pgoff = idx;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001123 pvma.vm_ops = NULL;
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001124 pvma.vm_policy = spol;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001125 page = swapin_readahead(entry, gfp, &pvma, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return page;
1127}
1128
Hugh Dickins02098fe2008-02-04 22:28:42 -08001129static struct page *shmem_alloc_page(gfp_t gfp,
1130 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
1132 struct vm_area_struct pvma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001134 /* Create a pseudo vma that just contains the policy */
1135 pvma.vm_start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 pvma.vm_pgoff = idx;
Hugh Dickinsc4cc6d02008-02-04 22:28:40 -08001137 pvma.vm_ops = NULL;
1138 pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, idx);
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -07001139
1140 /*
1141 * alloc_page_vma() will drop the shared policy reference
1142 */
1143 return alloc_page_vma(gfp, &pvma, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001145#else /* !CONFIG_NUMA */
1146#ifdef CONFIG_TMPFS
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001147static inline void shmem_show_mpol(struct seq_file *seq, struct mempolicy *p)
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001148{
1149}
1150#endif /* CONFIG_TMPFS */
1151
Hugh Dickins02098fe2008-02-04 22:28:42 -08001152static inline struct page *shmem_swapin(swp_entry_t entry, gfp_t gfp,
1153 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Hugh Dickins02098fe2008-02-04 22:28:42 -08001155 return swapin_readahead(entry, gfp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Hugh Dickins02098fe2008-02-04 22:28:42 -08001158static inline struct page *shmem_alloc_page(gfp_t gfp,
1159 struct shmem_inode_info *info, unsigned long idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Hugh Dickinse84e2e12007-11-28 18:55:10 +00001161 return alloc_page(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08001163#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001165#if !defined(CONFIG_NUMA) || !defined(CONFIG_TMPFS)
1166static inline struct mempolicy *shmem_get_sbmpol(struct shmem_sb_info *sbinfo)
1167{
1168 return NULL;
1169}
1170#endif
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172/*
1173 * shmem_getpage - either get the page from swap or allocate a new one
1174 *
1175 * If we allocate a new one we do not mark it dirty. That's up to the
1176 * vm. If we swap it in we mark it dirty since we also free the swap
1177 * entry since a page cannot live in both the swap and page cache
1178 */
1179static int shmem_getpage(struct inode *inode, unsigned long idx,
1180 struct page **pagep, enum sgp_type sgp, int *type)
1181{
1182 struct address_space *mapping = inode->i_mapping;
1183 struct shmem_inode_info *info = SHMEM_I(inode);
1184 struct shmem_sb_info *sbinfo;
1185 struct page *filepage = *pagep;
1186 struct page *swappage;
1187 swp_entry_t *entry;
1188 swp_entry_t swap;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001189 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 int error;
1191
1192 if (idx >= SHMEM_MAX_INDEX)
1193 return -EFBIG;
Nick Piggin54cb8822007-07-19 01:46:59 -07001194
1195 if (type)
Nick Piggin83c54072007-07-19 01:47:05 -07001196 *type = 0;
Nick Piggin54cb8822007-07-19 01:46:59 -07001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 /*
1199 * Normally, filepage is NULL on entry, and either found
1200 * uptodate immediately, or allocated and zeroed, or read
1201 * in under swappage, which is then assigned to filepage.
Hugh Dickins5402b972008-02-04 22:28:44 -08001202 * But shmem_readpage (required for splice) passes in a locked
Hugh Dickinsae9764162007-06-04 10:00:39 +02001203 * filepage, which may be found not uptodate by other callers
1204 * too, and may need to be copied from the swappage read in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 */
1206repeat:
1207 if (!filepage)
1208 filepage = find_lock_page(mapping, idx);
1209 if (filepage && PageUptodate(filepage))
1210 goto done;
1211 error = 0;
Hugh Dickins02098fe2008-02-04 22:28:42 -08001212 gfp = mapping_gfp_mask(mapping);
Hugh Dickinsb409f9f2008-02-04 22:28:54 -08001213 if (!filepage) {
1214 /*
1215 * Try to preload while we can wait, to not make a habit of
1216 * draining atomic reserves; but don't latch on to this cpu.
1217 */
1218 error = radix_tree_preload(gfp & ~__GFP_HIGHMEM);
1219 if (error)
1220 goto failed;
1221 radix_tree_preload_end();
1222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 spin_lock(&info->lock);
1225 shmem_recalc_inode(inode);
1226 entry = shmem_swp_alloc(info, idx, sgp);
1227 if (IS_ERR(entry)) {
1228 spin_unlock(&info->lock);
1229 error = PTR_ERR(entry);
1230 goto failed;
1231 }
1232 swap = *entry;
1233
1234 if (swap.val) {
1235 /* Look it up and read it in.. */
1236 swappage = lookup_swap_cache(swap);
1237 if (!swappage) {
1238 shmem_swp_unmap(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 /* here we actually do the io */
Nick Piggin83c54072007-07-19 01:47:05 -07001240 if (type && !(*type & VM_FAULT_MAJOR)) {
Christoph Lameterf8891e52006-06-30 01:55:45 -07001241 __count_vm_event(PGMAJFAULT);
Nick Piggin83c54072007-07-19 01:47:05 -07001242 *type |= VM_FAULT_MAJOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
Christoph Lameterf8891e52006-06-30 01:55:45 -07001244 spin_unlock(&info->lock);
Hugh Dickins02098fe2008-02-04 22:28:42 -08001245 swappage = shmem_swapin(swap, gfp, info, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (!swappage) {
1247 spin_lock(&info->lock);
1248 entry = shmem_swp_alloc(info, idx, sgp);
1249 if (IS_ERR(entry))
1250 error = PTR_ERR(entry);
1251 else {
1252 if (entry->val == swap.val)
1253 error = -ENOMEM;
1254 shmem_swp_unmap(entry);
1255 }
1256 spin_unlock(&info->lock);
1257 if (error)
1258 goto failed;
1259 goto repeat;
1260 }
1261 wait_on_page_locked(swappage);
1262 page_cache_release(swappage);
1263 goto repeat;
1264 }
1265
1266 /* We have to do this with page locked to prevent races */
Nick Piggin529ae9a2008-08-02 12:01:03 +02001267 if (!trylock_page(swappage)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 shmem_swp_unmap(entry);
1269 spin_unlock(&info->lock);
1270 wait_on_page_locked(swappage);
1271 page_cache_release(swappage);
1272 goto repeat;
1273 }
1274 if (PageWriteback(swappage)) {
1275 shmem_swp_unmap(entry);
1276 spin_unlock(&info->lock);
1277 wait_on_page_writeback(swappage);
1278 unlock_page(swappage);
1279 page_cache_release(swappage);
1280 goto repeat;
1281 }
1282 if (!PageUptodate(swappage)) {
1283 shmem_swp_unmap(entry);
1284 spin_unlock(&info->lock);
1285 unlock_page(swappage);
1286 page_cache_release(swappage);
1287 error = -EIO;
1288 goto failed;
1289 }
1290
1291 if (filepage) {
1292 shmem_swp_set(info, entry, 0);
1293 shmem_swp_unmap(entry);
1294 delete_from_swap_cache(swappage);
1295 spin_unlock(&info->lock);
1296 copy_highpage(filepage, swappage);
1297 unlock_page(swappage);
1298 page_cache_release(swappage);
1299 flush_dcache_page(filepage);
1300 SetPageUptodate(filepage);
1301 set_page_dirty(filepage);
1302 swap_free(swap);
Nick Piggine2867812008-07-25 19:45:30 -07001303 } else if (!(error = add_to_page_cache_locked(swappage, mapping,
1304 idx, GFP_NOWAIT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 info->flags |= SHMEM_PAGEIN;
1306 shmem_swp_set(info, entry, 0);
1307 shmem_swp_unmap(entry);
Hugh Dickins73b12622008-02-04 22:28:50 -08001308 delete_from_swap_cache(swappage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 spin_unlock(&info->lock);
1310 filepage = swappage;
Hugh Dickins73b12622008-02-04 22:28:50 -08001311 set_page_dirty(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 swap_free(swap);
1313 } else {
1314 shmem_swp_unmap(entry);
1315 spin_unlock(&info->lock);
1316 unlock_page(swappage);
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001317 page_cache_release(swappage);
Hugh Dickins82369552008-02-07 00:14:22 -08001318 if (error == -ENOMEM) {
1319 /* allow reclaim from this memory cgroup */
KAMEZAWA Hiroyukic9b0ed52008-07-25 01:47:15 -07001320 error = mem_cgroup_shrink_usage(current->mm,
1321 gfp);
1322 if (error)
Hugh Dickins82369552008-02-07 00:14:22 -08001323 goto failed;
1324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 goto repeat;
1326 }
1327 } else if (sgp == SGP_READ && !filepage) {
1328 shmem_swp_unmap(entry);
1329 filepage = find_get_page(mapping, idx);
1330 if (filepage &&
Nick Piggin529ae9a2008-08-02 12:01:03 +02001331 (!PageUptodate(filepage) || !trylock_page(filepage))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 spin_unlock(&info->lock);
1333 wait_on_page_locked(filepage);
1334 page_cache_release(filepage);
1335 filepage = NULL;
1336 goto repeat;
1337 }
1338 spin_unlock(&info->lock);
1339 } else {
1340 shmem_swp_unmap(entry);
1341 sbinfo = SHMEM_SB(inode->i_sb);
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001342 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 spin_lock(&sbinfo->stat_lock);
1344 if (sbinfo->free_blocks == 0 ||
1345 shmem_acct_block(info->flags)) {
1346 spin_unlock(&sbinfo->stat_lock);
1347 spin_unlock(&info->lock);
1348 error = -ENOSPC;
1349 goto failed;
1350 }
1351 sbinfo->free_blocks--;
1352 inode->i_blocks += BLOCKS_PER_PAGE;
1353 spin_unlock(&sbinfo->stat_lock);
1354 } else if (shmem_acct_block(info->flags)) {
1355 spin_unlock(&info->lock);
1356 error = -ENOSPC;
1357 goto failed;
1358 }
1359
1360 if (!filepage) {
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001361 int ret;
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 spin_unlock(&info->lock);
Hugh Dickins02098fe2008-02-04 22:28:42 -08001364 filepage = shmem_alloc_page(gfp, info, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if (!filepage) {
1366 shmem_unacct_blocks(info->flags, 1);
1367 shmem_free_blocks(inode, 1);
1368 error = -ENOMEM;
1369 goto failed;
1370 }
Rik van Rielb2e18532008-10-18 20:26:30 -07001371 SetPageSwapBacked(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Hugh Dickins82369552008-02-07 00:14:22 -08001373 /* Precharge page while we can wait, compensate after */
1374 error = mem_cgroup_cache_charge(filepage, current->mm,
1375 gfp & ~__GFP_HIGHMEM);
1376 if (error) {
1377 page_cache_release(filepage);
1378 shmem_unacct_blocks(info->flags, 1);
1379 shmem_free_blocks(inode, 1);
1380 filepage = NULL;
1381 goto failed;
1382 }
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 spin_lock(&info->lock);
1385 entry = shmem_swp_alloc(info, idx, sgp);
1386 if (IS_ERR(entry))
1387 error = PTR_ERR(entry);
1388 else {
1389 swap = *entry;
1390 shmem_swp_unmap(entry);
1391 }
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001392 ret = error || swap.val;
1393 if (ret)
1394 mem_cgroup_uncharge_cache_page(filepage);
1395 else
1396 ret = add_to_page_cache_lru(filepage, mapping,
1397 idx, GFP_NOWAIT);
1398 /*
1399 * At add_to_page_cache_lru() failure, uncharge will
1400 * be done automatically.
1401 */
1402 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 spin_unlock(&info->lock);
1404 page_cache_release(filepage);
1405 shmem_unacct_blocks(info->flags, 1);
1406 shmem_free_blocks(inode, 1);
1407 filepage = NULL;
1408 if (error)
1409 goto failed;
1410 goto repeat;
1411 }
1412 info->flags |= SHMEM_PAGEIN;
1413 }
1414
1415 info->alloced++;
1416 spin_unlock(&info->lock);
Hugh Dickinse84e2e12007-11-28 18:55:10 +00001417 clear_highpage(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 flush_dcache_page(filepage);
1419 SetPageUptodate(filepage);
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001420 if (sgp == SGP_DIRTY)
1421 set_page_dirty(filepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
1423done:
Hugh Dickinsd3602442008-02-04 22:28:44 -08001424 *pagep = filepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 return 0;
1426
1427failed:
1428 if (*pagep != filepage) {
1429 unlock_page(filepage);
1430 page_cache_release(filepage);
1431 }
1432 return error;
1433}
1434
Nick Piggind0217ac2007-07-19 01:47:03 -07001435static int shmem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001437 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 int error;
Nick Piggind0217ac2007-07-19 01:47:03 -07001439 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Nick Piggind0217ac2007-07-19 01:47:03 -07001441 if (((loff_t)vmf->pgoff << PAGE_CACHE_SHIFT) >= i_size_read(inode))
1442 return VM_FAULT_SIGBUS;
Nick Piggind00806b2007-07-19 01:46:57 -07001443
Hugh Dickins27d54b32008-02-04 22:28:43 -08001444 error = shmem_getpage(inode, vmf->pgoff, &vmf->page, SGP_CACHE, &ret);
Nick Piggind0217ac2007-07-19 01:47:03 -07001445 if (error)
1446 return ((error == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Nick Piggind0217ac2007-07-19 01:47:03 -07001448 mark_page_accessed(vmf->page);
Nick Piggin83c54072007-07-19 01:47:05 -07001449 return ret | VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452#ifdef CONFIG_NUMA
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07001453static int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001455 struct inode *i = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 return mpol_set_shared_policy(&SHMEM_I(i)->policy, vma, new);
1457}
1458
Adrian Bunkd8dc74f2007-10-16 01:26:26 -07001459static struct mempolicy *shmem_get_policy(struct vm_area_struct *vma,
1460 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001462 struct inode *i = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 unsigned long idx;
1464
1465 idx = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1466 return mpol_shared_policy_lookup(&SHMEM_I(i)->policy, idx);
1467}
1468#endif
1469
1470int shmem_lock(struct file *file, int lock, struct user_struct *user)
1471{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001472 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 struct shmem_inode_info *info = SHMEM_I(inode);
1474 int retval = -ENOMEM;
1475
1476 spin_lock(&info->lock);
1477 if (lock && !(info->flags & VM_LOCKED)) {
1478 if (!user_shm_lock(inode->i_size, user))
1479 goto out_nomem;
1480 info->flags |= VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001481 mapping_set_unevictable(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483 if (!lock && (info->flags & VM_LOCKED) && user) {
1484 user_shm_unlock(inode->i_size, user);
1485 info->flags &= ~VM_LOCKED;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001486 mapping_clear_unevictable(file->f_mapping);
1487 scan_mapping_unevictable_pages(file->f_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489 retval = 0;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491out_nomem:
1492 spin_unlock(&info->lock);
1493 return retval;
1494}
1495
Adrian Bunk9b83a6a2007-02-28 20:11:03 -08001496static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
1498 file_accessed(file);
1499 vma->vm_ops = &shmem_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -07001500 vma->vm_flags |= VM_CAN_NONLINEAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 return 0;
1502}
1503
1504static struct inode *
1505shmem_get_inode(struct super_block *sb, int mode, dev_t dev)
1506{
1507 struct inode *inode;
1508 struct shmem_inode_info *info;
1509 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1510
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001511 if (shmem_reserve_inode(sb))
1512 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 inode = new_inode(sb);
1515 if (inode) {
1516 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +11001517 inode->i_uid = current_fsuid();
1518 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 inode->i_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
1521 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
David M. Grimes91828a42006-10-17 00:09:45 -07001522 inode->i_generation = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 info = SHMEM_I(inode);
1524 memset(info, 0, (char *)inode - (char *)info);
1525 spin_lock_init(&info->lock);
1526 INIT_LIST_HEAD(&info->swaplist);
1527
1528 switch (mode & S_IFMT) {
1529 default:
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001530 inode->i_op = &shmem_special_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 init_special_inode(inode, mode, dev);
1532 break;
1533 case S_IFREG:
Hugh Dickins14fcc232008-07-28 15:46:19 -07001534 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 inode->i_op = &shmem_inode_operations;
1536 inode->i_fop = &shmem_file_operations;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001537 mpol_shared_policy_init(&info->policy,
1538 shmem_get_sbmpol(sbinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 break;
1540 case S_IFDIR:
Dave Hansend8c76e62006-09-30 23:29:04 -07001541 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 /* Some things misbehave if size == 0 on a directory */
1543 inode->i_size = 2 * BOGO_DIRENT_SIZE;
1544 inode->i_op = &shmem_dir_inode_operations;
1545 inode->i_fop = &simple_dir_operations;
1546 break;
1547 case S_IFLNK:
1548 /*
1549 * Must not load anything in the rbtree,
1550 * mpol_free_shared_policy will not be called.
1551 */
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07001552 mpol_shared_policy_init(&info->policy, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 break;
1554 }
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001555 } else
1556 shmem_free_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return inode;
1558}
1559
1560#ifdef CONFIG_TMPFS
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001561static const struct inode_operations shmem_symlink_inode_operations;
1562static const struct inode_operations shmem_symlink_inline_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564/*
Nick Piggin800d15a2007-10-16 01:25:03 -07001565 * Normally tmpfs avoids the use of shmem_readpage and shmem_write_begin;
Hugh Dickinsae9764162007-06-04 10:00:39 +02001566 * but providing them allows a tmpfs file to be used for splice, sendfile, and
1567 * below the loop driver, in the generic fashion that many filesystems support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 */
Hugh Dickinsae9764162007-06-04 10:00:39 +02001569static int shmem_readpage(struct file *file, struct page *page)
1570{
1571 struct inode *inode = page->mapping->host;
1572 int error = shmem_getpage(inode, page->index, &page, SGP_CACHE, NULL);
1573 unlock_page(page);
1574 return error;
1575}
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577static int
Nick Piggin800d15a2007-10-16 01:25:03 -07001578shmem_write_begin(struct file *file, struct address_space *mapping,
1579 loff_t pos, unsigned len, unsigned flags,
1580 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
Nick Piggin800d15a2007-10-16 01:25:03 -07001582 struct inode *inode = mapping->host;
1583 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1584 *pagep = NULL;
1585 return shmem_getpage(inode, index, pagep, SGP_WRITE, NULL);
1586}
1587
1588static int
1589shmem_write_end(struct file *file, struct address_space *mapping,
1590 loff_t pos, unsigned len, unsigned copied,
1591 struct page *page, void *fsdata)
1592{
1593 struct inode *inode = mapping->host;
1594
Hugh Dickinsd3602442008-02-04 22:28:44 -08001595 if (pos + copied > inode->i_size)
1596 i_size_write(inode, pos + copied);
1597
1598 unlock_page(page);
Nick Piggin800d15a2007-10-16 01:25:03 -07001599 set_page_dirty(page);
1600 page_cache_release(page);
1601
Nick Piggin800d15a2007-10-16 01:25:03 -07001602 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
1606{
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001607 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 struct address_space *mapping = inode->i_mapping;
1609 unsigned long index, offset;
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001610 enum sgp_type sgp = SGP_READ;
1611
1612 /*
1613 * Might this read be for a stacking filesystem? Then when reading
1614 * holes of a sparse file, we actually need to allocate those pages,
1615 * and even mark them dirty, so it cannot exceed the max_blocks limit.
1616 */
1617 if (segment_eq(get_fs(), KERNEL_DS))
1618 sgp = SGP_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 index = *ppos >> PAGE_CACHE_SHIFT;
1621 offset = *ppos & ~PAGE_CACHE_MASK;
1622
1623 for (;;) {
1624 struct page *page = NULL;
1625 unsigned long end_index, nr, ret;
1626 loff_t i_size = i_size_read(inode);
1627
1628 end_index = i_size >> PAGE_CACHE_SHIFT;
1629 if (index > end_index)
1630 break;
1631 if (index == end_index) {
1632 nr = i_size & ~PAGE_CACHE_MASK;
1633 if (nr <= offset)
1634 break;
1635 }
1636
Hugh Dickinsa0ee5ec2008-02-04 22:28:51 -08001637 desc->error = shmem_getpage(inode, index, &page, sgp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (desc->error) {
1639 if (desc->error == -EINVAL)
1640 desc->error = 0;
1641 break;
1642 }
Hugh Dickinsd3602442008-02-04 22:28:44 -08001643 if (page)
1644 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 /*
1647 * We must evaluate after, since reads (unlike writes)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001648 * are called without i_mutex protection against truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 */
1650 nr = PAGE_CACHE_SIZE;
1651 i_size = i_size_read(inode);
1652 end_index = i_size >> PAGE_CACHE_SHIFT;
1653 if (index == end_index) {
1654 nr = i_size & ~PAGE_CACHE_MASK;
1655 if (nr <= offset) {
1656 if (page)
1657 page_cache_release(page);
1658 break;
1659 }
1660 }
1661 nr -= offset;
1662
1663 if (page) {
1664 /*
1665 * If users can be writing to this page using arbitrary
1666 * virtual addresses, take care about potential aliasing
1667 * before reading the page on the kernel side.
1668 */
1669 if (mapping_writably_mapped(mapping))
1670 flush_dcache_page(page);
1671 /*
1672 * Mark the page accessed if we read the beginning.
1673 */
1674 if (!offset)
1675 mark_page_accessed(page);
Nick Pigginb5810032005-10-29 18:16:12 -07001676 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 page = ZERO_PAGE(0);
Nick Pigginb5810032005-10-29 18:16:12 -07001678 page_cache_get(page);
1679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 /*
1682 * Ok, we have the page, and it's up-to-date, so
1683 * now we can copy it to user space...
1684 *
1685 * The actor routine returns how many bytes were actually used..
1686 * NOTE! This may not be the same as how much of a user buffer
1687 * we filled up (we may be padding etc), so we can only update
1688 * "pos" here (the actor routine has to update the user buffer
1689 * pointers and the remaining count).
1690 */
1691 ret = actor(desc, page, offset, nr);
1692 offset += ret;
1693 index += offset >> PAGE_CACHE_SHIFT;
1694 offset &= ~PAGE_CACHE_MASK;
1695
1696 page_cache_release(page);
1697 if (ret != nr || !desc->count)
1698 break;
1699
1700 cond_resched();
1701 }
1702
1703 *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
1704 file_accessed(filp);
1705}
1706
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001707static ssize_t shmem_file_aio_read(struct kiocb *iocb,
1708 const struct iovec *iov, unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001710 struct file *filp = iocb->ki_filp;
1711 ssize_t retval;
1712 unsigned long seg;
1713 size_t count;
1714 loff_t *ppos = &iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001716 retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1717 if (retval)
1718 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001720 for (seg = 0; seg < nr_segs; seg++) {
1721 read_descriptor_t desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07001723 desc.written = 0;
1724 desc.arg.buf = iov[seg].iov_base;
1725 desc.count = iov[seg].iov_len;
1726 if (desc.count == 0)
1727 continue;
1728 desc.error = 0;
1729 do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1730 retval += desc.written;
1731 if (desc.error) {
1732 retval = retval ?: desc.error;
1733 break;
1734 }
1735 if (desc.count > 0)
1736 break;
1737 }
1738 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
David Howells726c3342006-06-23 02:02:58 -07001741static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
David Howells726c3342006-06-23 02:02:58 -07001743 struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 buf->f_type = TMPFS_MAGIC;
1746 buf->f_bsize = PAGE_CACHE_SIZE;
1747 buf->f_namelen = NAME_MAX;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001748 spin_lock(&sbinfo->stat_lock);
1749 if (sbinfo->max_blocks) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 buf->f_blocks = sbinfo->max_blocks;
1751 buf->f_bavail = buf->f_bfree = sbinfo->free_blocks;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001752 }
1753 if (sbinfo->max_inodes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 buf->f_files = sbinfo->max_inodes;
1755 buf->f_ffree = sbinfo->free_inodes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
1757 /* else leave those fields 0 like simple_statfs */
Hugh Dickins0edd73b2005-06-21 17:15:04 -07001758 spin_unlock(&sbinfo->stat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 return 0;
1760}
1761
1762/*
1763 * File creation. Allocate an inode, and we're done..
1764 */
1765static int
1766shmem_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1767{
1768 struct inode *inode = shmem_get_inode(dir->i_sb, mode, dev);
1769 int error = -ENOSPC;
1770
1771 if (inode) {
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001772 error = security_inode_init_security(inode, dir, NULL, NULL,
1773 NULL);
1774 if (error) {
1775 if (error != -EOPNOTSUPP) {
1776 iput(inode);
1777 return error;
1778 }
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001779 }
1780 error = shmem_acl_init(inode, dir);
1781 if (error) {
1782 iput(inode);
1783 return error;
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (dir->i_mode & S_ISGID) {
1786 inode->i_gid = dir->i_gid;
1787 if (S_ISDIR(mode))
1788 inode->i_mode |= S_ISGID;
1789 }
1790 dir->i_size += BOGO_DIRENT_SIZE;
1791 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1792 d_instantiate(dentry, inode);
1793 dget(dentry); /* Extra count - pin the dentry in core */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795 return error;
1796}
1797
1798static int shmem_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1799{
1800 int error;
1801
1802 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
1803 return error;
Dave Hansend8c76e62006-09-30 23:29:04 -07001804 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return 0;
1806}
1807
1808static int shmem_create(struct inode *dir, struct dentry *dentry, int mode,
1809 struct nameidata *nd)
1810{
1811 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
1812}
1813
1814/*
1815 * Link a file..
1816 */
1817static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1818{
1819 struct inode *inode = old_dentry->d_inode;
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001820 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 /*
1823 * No ordinary (disk based) filesystem counts links as inodes;
1824 * but each new link needs a new dentry, pinning lowmem, and
1825 * tmpfs dentries cannot be pruned until they are unlinked.
1826 */
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001827 ret = shmem_reserve_inode(inode->i_sb);
1828 if (ret)
1829 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 dir->i_size += BOGO_DIRENT_SIZE;
1832 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansend8c76e62006-09-30 23:29:04 -07001833 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 atomic_inc(&inode->i_count); /* New dentry reference */
1835 dget(dentry); /* Extra pinning count for the created dentry */
1836 d_instantiate(dentry, inode);
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001837out:
1838 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
1841static int shmem_unlink(struct inode *dir, struct dentry *dentry)
1842{
1843 struct inode *inode = dentry->d_inode;
1844
Pavel Emelyanov5b04c682008-02-04 22:28:47 -08001845 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode))
1846 shmem_free_inode(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848 dir->i_size -= BOGO_DIRENT_SIZE;
1849 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001850 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 dput(dentry); /* Undo the count from "create" - this does all the work */
1852 return 0;
1853}
1854
1855static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
1856{
1857 if (!simple_empty(dentry))
1858 return -ENOTEMPTY;
1859
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001860 drop_nlink(dentry->d_inode);
1861 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return shmem_unlink(dir, dentry);
1863}
1864
1865/*
1866 * The VFS layer already does all the dentry stuff for rename,
1867 * we just have to decrement the usage count for the target if
1868 * it exists so that the VFS layer correctly free's it when it
1869 * gets overwritten.
1870 */
1871static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
1872{
1873 struct inode *inode = old_dentry->d_inode;
1874 int they_are_dirs = S_ISDIR(inode->i_mode);
1875
1876 if (!simple_empty(new_dentry))
1877 return -ENOTEMPTY;
1878
1879 if (new_dentry->d_inode) {
1880 (void) shmem_unlink(new_dir, new_dentry);
1881 if (they_are_dirs)
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001882 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07001884 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -07001885 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
1887
1888 old_dir->i_size -= BOGO_DIRENT_SIZE;
1889 new_dir->i_size += BOGO_DIRENT_SIZE;
1890 old_dir->i_ctime = old_dir->i_mtime =
1891 new_dir->i_ctime = new_dir->i_mtime =
1892 inode->i_ctime = CURRENT_TIME;
1893 return 0;
1894}
1895
1896static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1897{
1898 int error;
1899 int len;
1900 struct inode *inode;
1901 struct page *page = NULL;
1902 char *kaddr;
1903 struct shmem_inode_info *info;
1904
1905 len = strlen(symname) + 1;
1906 if (len > PAGE_CACHE_SIZE)
1907 return -ENAMETOOLONG;
1908
1909 inode = shmem_get_inode(dir->i_sb, S_IFLNK|S_IRWXUGO, 0);
1910 if (!inode)
1911 return -ENOSPC;
1912
Stephen Smalley570bc1c2005-09-09 13:01:43 -07001913 error = security_inode_init_security(inode, dir, NULL, NULL,
1914 NULL);
1915 if (error) {
1916 if (error != -EOPNOTSUPP) {
1917 iput(inode);
1918 return error;
1919 }
1920 error = 0;
1921 }
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 info = SHMEM_I(inode);
1924 inode->i_size = len-1;
1925 if (len <= (char *)inode - (char *)info) {
1926 /* do it inline */
1927 memcpy(info, symname, len);
1928 inode->i_op = &shmem_symlink_inline_operations;
1929 } else {
1930 error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
1931 if (error) {
1932 iput(inode);
1933 return error;
1934 }
Hugh Dickinsd3602442008-02-04 22:28:44 -08001935 unlock_page(page);
Hugh Dickins14fcc232008-07-28 15:46:19 -07001936 inode->i_mapping->a_ops = &shmem_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 inode->i_op = &shmem_symlink_inode_operations;
1938 kaddr = kmap_atomic(page, KM_USER0);
1939 memcpy(kaddr, symname, len);
1940 kunmap_atomic(kaddr, KM_USER0);
1941 set_page_dirty(page);
1942 page_cache_release(page);
1943 }
1944 if (dir->i_mode & S_ISGID)
1945 inode->i_gid = dir->i_gid;
1946 dir->i_size += BOGO_DIRENT_SIZE;
1947 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1948 d_instantiate(dentry, inode);
1949 dget(dentry);
1950 return 0;
1951}
1952
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001953static void *shmem_follow_link_inline(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954{
1955 nd_set_link(nd, (char *)SHMEM_I(dentry->d_inode));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001956 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001959static void *shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960{
1961 struct page *page = NULL;
1962 int res = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
1963 nd_set_link(nd, res ? ERR_PTR(res) : kmap(page));
Hugh Dickinsd3602442008-02-04 22:28:44 -08001964 if (page)
1965 unlock_page(page);
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001966 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001969static void shmem_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 if (!IS_ERR(nd_get_link(nd))) {
Linus Torvaldscc314ee2005-08-19 18:02:56 -07001972 struct page *page = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 kunmap(page);
1974 mark_page_accessed(page);
1975 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 }
1977}
1978
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001979static const struct inode_operations shmem_symlink_inline_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 .readlink = generic_readlink,
1981 .follow_link = shmem_follow_link_inline,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982};
1983
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001984static const struct inode_operations shmem_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 .truncate = shmem_truncate,
1986 .readlink = generic_readlink,
1987 .follow_link = shmem_follow_link,
1988 .put_link = shmem_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989};
1990
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001991#ifdef CONFIG_TMPFS_POSIX_ACL
Randy Dunlap46711812008-03-19 17:00:41 -07001992/*
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07001993 * Superblocks without xattr inode operations will get security.* xattr
1994 * support from the VFS "for free". As soon as we have any other xattrs
1995 * like ACLs, we also need to implement the security.* handlers at
1996 * filesystem level, though.
1997 */
1998
1999static size_t shmem_xattr_security_list(struct inode *inode, char *list,
2000 size_t list_len, const char *name,
2001 size_t name_len)
2002{
2003 return security_inode_listsecurity(inode, list, list_len);
2004}
2005
2006static int shmem_xattr_security_get(struct inode *inode, const char *name,
2007 void *buffer, size_t size)
2008{
2009 if (strcmp(name, "") == 0)
2010 return -EINVAL;
David P. Quigley42492592008-02-04 22:29:39 -08002011 return xattr_getsecurity(inode, name, buffer, size);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002012}
2013
2014static int shmem_xattr_security_set(struct inode *inode, const char *name,
2015 const void *value, size_t size, int flags)
2016{
2017 if (strcmp(name, "") == 0)
2018 return -EINVAL;
2019 return security_inode_setsecurity(inode, name, value, size, flags);
2020}
2021
Adrian Bunk1f370a22006-12-06 20:38:21 -08002022static struct xattr_handler shmem_xattr_security_handler = {
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002023 .prefix = XATTR_SECURITY_PREFIX,
2024 .list = shmem_xattr_security_list,
2025 .get = shmem_xattr_security_get,
2026 .set = shmem_xattr_security_set,
2027};
2028
2029static struct xattr_handler *shmem_xattr_handlers[] = {
2030 &shmem_xattr_acl_access_handler,
2031 &shmem_xattr_acl_default_handler,
2032 &shmem_xattr_security_handler,
2033 NULL
2034};
2035#endif
2036
David M. Grimes91828a42006-10-17 00:09:45 -07002037static struct dentry *shmem_get_parent(struct dentry *child)
2038{
2039 return ERR_PTR(-ESTALE);
2040}
2041
2042static int shmem_match(struct inode *ino, void *vfh)
2043{
2044 __u32 *fh = vfh;
2045 __u64 inum = fh[2];
2046 inum = (inum << 32) | fh[1];
2047 return ino->i_ino == inum && fh[0] == ino->i_generation;
2048}
2049
Christoph Hellwig480b1162007-10-21 16:42:13 -07002050static struct dentry *shmem_fh_to_dentry(struct super_block *sb,
2051 struct fid *fid, int fh_len, int fh_type)
David M. Grimes91828a42006-10-17 00:09:45 -07002052{
David M. Grimes91828a42006-10-17 00:09:45 -07002053 struct inode *inode;
Christoph Hellwig480b1162007-10-21 16:42:13 -07002054 struct dentry *dentry = NULL;
2055 u64 inum = fid->raw[2];
2056 inum = (inum << 32) | fid->raw[1];
David M. Grimes91828a42006-10-17 00:09:45 -07002057
Christoph Hellwig480b1162007-10-21 16:42:13 -07002058 if (fh_len < 3)
2059 return NULL;
2060
2061 inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]),
2062 shmem_match, fid->raw);
David M. Grimes91828a42006-10-17 00:09:45 -07002063 if (inode) {
Christoph Hellwig480b1162007-10-21 16:42:13 -07002064 dentry = d_find_alias(inode);
David M. Grimes91828a42006-10-17 00:09:45 -07002065 iput(inode);
2066 }
2067
Christoph Hellwig480b1162007-10-21 16:42:13 -07002068 return dentry;
David M. Grimes91828a42006-10-17 00:09:45 -07002069}
2070
2071static int shmem_encode_fh(struct dentry *dentry, __u32 *fh, int *len,
2072 int connectable)
2073{
2074 struct inode *inode = dentry->d_inode;
2075
2076 if (*len < 3)
2077 return 255;
2078
2079 if (hlist_unhashed(&inode->i_hash)) {
2080 /* Unfortunately insert_inode_hash is not idempotent,
2081 * so as we hash inodes here rather than at creation
2082 * time, we need a lock to ensure we only try
2083 * to do it once
2084 */
2085 static DEFINE_SPINLOCK(lock);
2086 spin_lock(&lock);
2087 if (hlist_unhashed(&inode->i_hash))
2088 __insert_inode_hash(inode,
2089 inode->i_ino + inode->i_generation);
2090 spin_unlock(&lock);
2091 }
2092
2093 fh[0] = inode->i_generation;
2094 fh[1] = inode->i_ino;
2095 fh[2] = ((__u64)inode->i_ino) >> 32;
2096
2097 *len = 3;
2098 return 1;
2099}
2100
Christoph Hellwig39655162007-10-21 16:42:17 -07002101static const struct export_operations shmem_export_ops = {
David M. Grimes91828a42006-10-17 00:09:45 -07002102 .get_parent = shmem_get_parent,
David M. Grimes91828a42006-10-17 00:09:45 -07002103 .encode_fh = shmem_encode_fh,
Christoph Hellwig480b1162007-10-21 16:42:13 -07002104 .fh_to_dentry = shmem_fh_to_dentry,
David M. Grimes91828a42006-10-17 00:09:45 -07002105};
2106
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002107static int shmem_parse_options(char *options, struct shmem_sb_info *sbinfo,
2108 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
2110 char *this_char, *value, *rest;
2111
Hugh Dickinsb00dc3a2006-02-21 23:49:47 +00002112 while (options != NULL) {
2113 this_char = options;
2114 for (;;) {
2115 /*
2116 * NUL-terminate this option: unfortunately,
2117 * mount options form a comma-separated list,
2118 * but mpol's nodelist may also contain commas.
2119 */
2120 options = strchr(options, ',');
2121 if (options == NULL)
2122 break;
2123 options++;
2124 if (!isdigit(*options)) {
2125 options[-1] = '\0';
2126 break;
2127 }
2128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (!*this_char)
2130 continue;
2131 if ((value = strchr(this_char,'=')) != NULL) {
2132 *value++ = 0;
2133 } else {
2134 printk(KERN_ERR
2135 "tmpfs: No value for mount option '%s'\n",
2136 this_char);
2137 return 1;
2138 }
2139
2140 if (!strcmp(this_char,"size")) {
2141 unsigned long long size;
2142 size = memparse(value,&rest);
2143 if (*rest == '%') {
2144 size <<= PAGE_SHIFT;
2145 size *= totalram_pages;
2146 do_div(size, 100);
2147 rest++;
2148 }
2149 if (*rest)
2150 goto bad_val;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002151 sbinfo->max_blocks =
2152 DIV_ROUND_UP(size, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 } else if (!strcmp(this_char,"nr_blocks")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002154 sbinfo->max_blocks = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 if (*rest)
2156 goto bad_val;
2157 } else if (!strcmp(this_char,"nr_inodes")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002158 sbinfo->max_inodes = memparse(value, &rest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (*rest)
2160 goto bad_val;
2161 } else if (!strcmp(this_char,"mode")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002162 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002164 sbinfo->mode = simple_strtoul(value, &rest, 8) & 07777;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 if (*rest)
2166 goto bad_val;
2167 } else if (!strcmp(this_char,"uid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002168 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002170 sbinfo->uid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 if (*rest)
2172 goto bad_val;
2173 } else if (!strcmp(this_char,"gid")) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002174 if (remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 continue;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002176 sbinfo->gid = simple_strtoul(value, &rest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (*rest)
2178 goto bad_val;
Robin Holt7339ff82006-01-14 13:20:48 -08002179 } else if (!strcmp(this_char,"mpol")) {
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002180 if (mpol_parse_str(value, &sbinfo->mpol, 1))
Robin Holt7339ff82006-01-14 13:20:48 -08002181 goto bad_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 } else {
2183 printk(KERN_ERR "tmpfs: Bad mount option %s\n",
2184 this_char);
2185 return 1;
2186 }
2187 }
2188 return 0;
2189
2190bad_val:
2191 printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
2192 value, this_char);
2193 return 1;
2194
2195}
2196
2197static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
2198{
2199 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002200 struct shmem_sb_info config = *sbinfo;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002201 unsigned long blocks;
2202 unsigned long inodes;
2203 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002205 if (shmem_parse_options(data, &config, true))
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002206 return error;
2207
2208 spin_lock(&sbinfo->stat_lock);
2209 blocks = sbinfo->max_blocks - sbinfo->free_blocks;
2210 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002211 if (config.max_blocks < blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002212 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002213 if (config.max_inodes < inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002214 goto out;
2215 /*
2216 * Those tests also disallow limited->unlimited while any are in
2217 * use, so i_blocks will always be zero when max_blocks is zero;
2218 * but we must separately disallow unlimited->limited, because
2219 * in that case we have no record of how much is already in use.
2220 */
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002221 if (config.max_blocks && !sbinfo->max_blocks)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002222 goto out;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002223 if (config.max_inodes && !sbinfo->max_inodes)
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002224 goto out;
2225
2226 error = 0;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002227 sbinfo->max_blocks = config.max_blocks;
2228 sbinfo->free_blocks = config.max_blocks - blocks;
2229 sbinfo->max_inodes = config.max_inodes;
2230 sbinfo->free_inodes = config.max_inodes - inodes;
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002231
2232 mpol_put(sbinfo->mpol);
2233 sbinfo->mpol = config.mpol; /* transfers initial ref */
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002234out:
2235 spin_unlock(&sbinfo->stat_lock);
2236 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002238
2239static int shmem_show_options(struct seq_file *seq, struct vfsmount *vfs)
2240{
2241 struct shmem_sb_info *sbinfo = SHMEM_SB(vfs->mnt_sb);
2242
2243 if (sbinfo->max_blocks != shmem_default_max_blocks())
2244 seq_printf(seq, ",size=%luk",
2245 sbinfo->max_blocks << (PAGE_CACHE_SHIFT - 10));
2246 if (sbinfo->max_inodes != shmem_default_max_inodes())
2247 seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
2248 if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
2249 seq_printf(seq, ",mode=%03o", sbinfo->mode);
2250 if (sbinfo->uid != 0)
2251 seq_printf(seq, ",uid=%u", sbinfo->uid);
2252 if (sbinfo->gid != 0)
2253 seq_printf(seq, ",gid=%u", sbinfo->gid);
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002254 shmem_show_mpol(seq, sbinfo->mpol);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002255 return 0;
2256}
2257#endif /* CONFIG_TMPFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259static void shmem_put_super(struct super_block *sb)
2260{
2261 kfree(sb->s_fs_info);
2262 sb->s_fs_info = NULL;
2263}
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265static int shmem_fill_super(struct super_block *sb,
2266 void *data, int silent)
2267{
2268 struct inode *inode;
2269 struct dentry *root;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002270 struct shmem_sb_info *sbinfo;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002271 int err = -ENOMEM;
2272
2273 /* Round up to L1_CACHE_BYTES to resist false sharing */
2274 sbinfo = kmalloc(max((int)sizeof(struct shmem_sb_info),
2275 L1_CACHE_BYTES), GFP_KERNEL);
2276 if (!sbinfo)
2277 return -ENOMEM;
2278
2279 sbinfo->max_blocks = 0;
2280 sbinfo->max_inodes = 0;
2281 sbinfo->mode = S_IRWXUGO | S_ISVTX;
David Howells76aac0e2008-11-14 10:39:12 +11002282 sbinfo->uid = current_fsuid();
2283 sbinfo->gid = current_fsgid();
Lee Schermerhorn71fe8042008-04-28 02:13:26 -07002284 sbinfo->mpol = NULL;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002285 sb->s_fs_info = sbinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002287#ifdef CONFIG_TMPFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 /*
2289 * Per default we only allow half of the physical ram per
2290 * tmpfs instance, limiting inodes to one per page of lowmem;
2291 * but the internal instance is left unlimited.
2292 */
2293 if (!(sb->s_flags & MS_NOUSER)) {
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002294 sbinfo->max_blocks = shmem_default_max_blocks();
2295 sbinfo->max_inodes = shmem_default_max_inodes();
2296 if (shmem_parse_options(data, sbinfo, false)) {
2297 err = -EINVAL;
2298 goto failed;
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
David M. Grimes91828a42006-10-17 00:09:45 -07002301 sb->s_export_op = &shmem_export_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302#else
2303 sb->s_flags |= MS_NOUSER;
2304#endif
2305
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002306 spin_lock_init(&sbinfo->stat_lock);
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002307 sbinfo->free_blocks = sbinfo->max_blocks;
2308 sbinfo->free_inodes = sbinfo->max_inodes;
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 sb->s_maxbytes = SHMEM_MAX_BYTES;
2311 sb->s_blocksize = PAGE_CACHE_SIZE;
2312 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2313 sb->s_magic = TMPFS_MAGIC;
2314 sb->s_op = &shmem_ops;
Robin H. Johnsoncfd95a92006-06-12 21:50:25 +01002315 sb->s_time_gran = 1;
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002316#ifdef CONFIG_TMPFS_POSIX_ACL
2317 sb->s_xattr = shmem_xattr_handlers;
2318 sb->s_flags |= MS_POSIXACL;
2319#endif
Hugh Dickins0edd73b2005-06-21 17:15:04 -07002320
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002321 inode = shmem_get_inode(sb, S_IFDIR | sbinfo->mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 if (!inode)
2323 goto failed;
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002324 inode->i_uid = sbinfo->uid;
2325 inode->i_gid = sbinfo->gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 root = d_alloc_root(inode);
2327 if (!root)
2328 goto failed_iput;
2329 sb->s_root = root;
2330 return 0;
2331
2332failed_iput:
2333 iput(inode);
2334failed:
2335 shmem_put_super(sb);
2336 return err;
2337}
2338
Pekka Enbergfcc234f2006-03-22 00:08:13 -08002339static struct kmem_cache *shmem_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
2341static struct inode *shmem_alloc_inode(struct super_block *sb)
2342{
2343 struct shmem_inode_info *p;
Christoph Lametere94b1762006-12-06 20:33:17 -08002344 p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 if (!p)
2346 return NULL;
2347 return &p->vfs_inode;
2348}
2349
2350static void shmem_destroy_inode(struct inode *inode)
2351{
2352 if ((inode->i_mode & S_IFMT) == S_IFREG) {
2353 /* only struct inode is valid if it's an inline symlink */
2354 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
2355 }
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002356 shmem_acl_destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
2358}
2359
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002360static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
2362 struct shmem_inode_info *p = (struct shmem_inode_info *) foo;
2363
Christoph Lametera35afb82007-05-16 22:10:57 -07002364 inode_init_once(&p->vfs_inode);
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002365#ifdef CONFIG_TMPFS_POSIX_ACL
Christoph Lametera35afb82007-05-16 22:10:57 -07002366 p->i_acl = NULL;
2367 p->i_default_acl = NULL;
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002368#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369}
2370
2371static int init_inodecache(void)
2372{
2373 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
2374 sizeof(struct shmem_inode_info),
Alexey Dobriyan040b5c62007-10-16 23:26:10 -07002375 0, SLAB_PANIC, init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 return 0;
2377}
2378
2379static void destroy_inodecache(void)
2380{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07002381 kmem_cache_destroy(shmem_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382}
2383
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002384static const struct address_space_operations shmem_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 .writepage = shmem_writepage,
Ken Chen76719322007-02-10 01:43:15 -08002386 .set_page_dirty = __set_page_dirty_no_writeback,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387#ifdef CONFIG_TMPFS
Hugh Dickinsae9764162007-06-04 10:00:39 +02002388 .readpage = shmem_readpage,
Nick Piggin800d15a2007-10-16 01:25:03 -07002389 .write_begin = shmem_write_begin,
2390 .write_end = shmem_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391#endif
Lee Schermerhorn304dbdb2006-04-22 02:35:48 -07002392 .migratepage = migrate_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393};
2394
Helge Deller15ad7cd2006-12-06 20:40:36 -08002395static const struct file_operations shmem_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 .mmap = shmem_mmap,
2397#ifdef CONFIG_TMPFS
2398 .llseek = generic_file_llseek,
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07002399 .read = do_sync_read,
Hugh Dickins5402b972008-02-04 22:28:44 -08002400 .write = do_sync_write,
Hugh Dickinsbcd78e42008-07-23 21:27:35 -07002401 .aio_read = shmem_file_aio_read,
Hugh Dickins5402b972008-02-04 22:28:44 -08002402 .aio_write = generic_file_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 .fsync = simple_sync_file,
Hugh Dickinsae9764162007-06-04 10:00:39 +02002404 .splice_read = generic_file_splice_read,
2405 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406#endif
2407};
2408
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002409static const struct inode_operations shmem_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 .truncate = shmem_truncate,
2411 .setattr = shmem_notify_change,
Badari Pulavartyf6b3ec22006-01-06 00:10:38 -08002412 .truncate_range = shmem_truncate_range,
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002413#ifdef CONFIG_TMPFS_POSIX_ACL
2414 .setxattr = generic_setxattr,
2415 .getxattr = generic_getxattr,
2416 .listxattr = generic_listxattr,
2417 .removexattr = generic_removexattr,
2418 .permission = shmem_permission,
2419#endif
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421};
2422
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002423static const struct inode_operations shmem_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424#ifdef CONFIG_TMPFS
2425 .create = shmem_create,
2426 .lookup = simple_lookup,
2427 .link = shmem_link,
2428 .unlink = shmem_unlink,
2429 .symlink = shmem_symlink,
2430 .mkdir = shmem_mkdir,
2431 .rmdir = shmem_rmdir,
2432 .mknod = shmem_mknod,
2433 .rename = shmem_rename,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434#endif
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002435#ifdef CONFIG_TMPFS_POSIX_ACL
2436 .setattr = shmem_notify_change,
2437 .setxattr = generic_setxattr,
2438 .getxattr = generic_getxattr,
2439 .listxattr = generic_listxattr,
2440 .removexattr = generic_removexattr,
2441 .permission = shmem_permission,
2442#endif
2443};
2444
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002445static const struct inode_operations shmem_special_inode_operations = {
Andreas Gruenbacher39f02472006-09-29 02:01:35 -07002446#ifdef CONFIG_TMPFS_POSIX_ACL
2447 .setattr = shmem_notify_change,
2448 .setxattr = generic_setxattr,
2449 .getxattr = generic_getxattr,
2450 .listxattr = generic_listxattr,
2451 .removexattr = generic_removexattr,
2452 .permission = shmem_permission,
2453#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454};
2455
Hugh Dickins759b9772007-03-05 00:30:28 -08002456static const struct super_operations shmem_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 .alloc_inode = shmem_alloc_inode,
2458 .destroy_inode = shmem_destroy_inode,
2459#ifdef CONFIG_TMPFS
2460 .statfs = shmem_statfs,
2461 .remount_fs = shmem_remount_fs,
akpm@linux-foundation.org680d7942008-02-08 04:21:48 -08002462 .show_options = shmem_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463#endif
2464 .delete_inode = shmem_delete_inode,
2465 .drop_inode = generic_delete_inode,
2466 .put_super = shmem_put_super,
2467};
2468
2469static struct vm_operations_struct shmem_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07002470 .fault = shmem_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471#ifdef CONFIG_NUMA
2472 .set_policy = shmem_set_policy,
2473 .get_policy = shmem_get_policy,
2474#endif
2475};
2476
2477
David Howells454e2392006-06-23 02:02:57 -07002478static int shmem_get_sb(struct file_system_type *fs_type,
2479 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
David Howells454e2392006-06-23 02:02:57 -07002481 return get_sb_nodev(fs_type, flags, data, shmem_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482}
2483
2484static struct file_system_type tmpfs_fs_type = {
2485 .owner = THIS_MODULE,
2486 .name = "tmpfs",
2487 .get_sb = shmem_get_sb,
2488 .kill_sb = kill_litter_super,
2489};
2490static struct vfsmount *shm_mnt;
2491
2492static int __init init_tmpfs(void)
2493{
2494 int error;
2495
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07002496 error = bdi_init(&shmem_backing_dev_info);
2497 if (error)
2498 goto out4;
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 error = init_inodecache();
2501 if (error)
2502 goto out3;
2503
2504 error = register_filesystem(&tmpfs_fs_type);
2505 if (error) {
2506 printk(KERN_ERR "Could not register tmpfs\n");
2507 goto out2;
2508 }
Greg Kroah-Hartman95dc1122005-06-20 21:15:16 -07002509
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -04002510 shm_mnt = vfs_kern_mount(&tmpfs_fs_type, MS_NOUSER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 tmpfs_fs_type.name, NULL);
2512 if (IS_ERR(shm_mnt)) {
2513 error = PTR_ERR(shm_mnt);
2514 printk(KERN_ERR "Could not kern_mount tmpfs\n");
2515 goto out1;
2516 }
2517 return 0;
2518
2519out1:
2520 unregister_filesystem(&tmpfs_fs_type);
2521out2:
2522 destroy_inodecache();
2523out3:
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07002524 bdi_destroy(&shmem_backing_dev_info);
2525out4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 shm_mnt = ERR_PTR(error);
2527 return error;
2528}
2529module_init(init_tmpfs)
2530
Randy Dunlap46711812008-03-19 17:00:41 -07002531/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 * shmem_file_setup - get an unlinked file living in tmpfs
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 * @name: name for dentry (to be seen in /proc/<pid>/maps
2534 * @size: size to be set for the file
Randy Dunlap46711812008-03-19 17:00:41 -07002535 * @flags: vm_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 */
2537struct file *shmem_file_setup(char *name, loff_t size, unsigned long flags)
2538{
2539 int error;
2540 struct file *file;
2541 struct inode *inode;
2542 struct dentry *dentry, *root;
2543 struct qstr this;
2544
2545 if (IS_ERR(shm_mnt))
2546 return (void *)shm_mnt;
2547
2548 if (size < 0 || size > SHMEM_MAX_BYTES)
2549 return ERR_PTR(-EINVAL);
2550
2551 if (shmem_acct_size(flags, size))
2552 return ERR_PTR(-ENOMEM);
2553
2554 error = -ENOMEM;
2555 this.name = name;
2556 this.len = strlen(name);
2557 this.hash = 0; /* will go */
2558 root = shm_mnt->mnt_root;
2559 dentry = d_alloc(root, &this);
2560 if (!dentry)
2561 goto put_memory;
2562
2563 error = -ENFILE;
2564 file = get_empty_filp();
2565 if (!file)
2566 goto put_dentry;
2567
2568 error = -ENOSPC;
2569 inode = shmem_get_inode(root->d_sb, S_IFREG | S_IRWXUGO, 0);
2570 if (!inode)
2571 goto close_file;
2572
2573 SHMEM_I(inode)->flags = flags & VM_ACCOUNT;
2574 d_instantiate(dentry, inode);
2575 inode->i_size = size;
2576 inode->i_nlink = 0; /* It is unlinked */
Dave Hansence8d2cd2007-10-16 23:31:13 -07002577 init_file(file, shm_mnt, dentry, FMODE_WRITE | FMODE_READ,
2578 &shmem_file_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return file;
2580
2581close_file:
2582 put_filp(file);
2583put_dentry:
2584 dput(dentry);
2585put_memory:
2586 shmem_unacct_size(flags, size);
2587 return ERR_PTR(error);
2588}
Keith Packard395e0dd2008-06-20 00:08:06 -07002589EXPORT_SYMBOL_GPL(shmem_file_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Randy Dunlap46711812008-03-19 17:00:41 -07002591/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 * shmem_zero_setup - setup a shared anonymous mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
2594 */
2595int shmem_zero_setup(struct vm_area_struct *vma)
2596{
2597 struct file *file;
2598 loff_t size = vma->vm_end - vma->vm_start;
2599
2600 file = shmem_file_setup("dev/zero", size, vma->vm_flags);
2601 if (IS_ERR(file))
2602 return PTR_ERR(file);
2603
Mimi Zohar1df9f0a2009-02-04 09:07:02 -05002604 ima_shm_check(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (vma->vm_file)
2606 fput(vma->vm_file);
2607 vma->vm_file = file;
2608 vma->vm_ops = &shmem_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 return 0;
2610}