]> bbs.cooldavid.org Git - net-next-2.6.git/blame - mm/shmem.c
[PATCH] mm: uml kill unused
[net-next-2.6.git] / mm / shmem.c
CommitLineData
1da177e4
LT
1/*
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.
0edd73b3
HD
9 * Copyright (C) 2002-2005 Hugh Dickins.
10 * Copyright (C) 2002-2005 VERITAS Software Corporation.
1da177e4
LT
11 * 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
26#include <linux/config.h>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/devfs_fs_kernel.h>
30#include <linux/fs.h>
31#include <linux/mm.h>
32#include <linux/mman.h>
33#include <linux/file.h>
34#include <linux/swap.h>
35#include <linux/pagemap.h>
36#include <linux/string.h>
37#include <linux/slab.h>
38#include <linux/backing-dev.h>
39#include <linux/shmem_fs.h>
40#include <linux/mount.h>
41#include <linux/writeback.h>
42#include <linux/vfs.h>
43#include <linux/blkdev.h>
44#include <linux/security.h>
45#include <linux/swapops.h>
46#include <linux/mempolicy.h>
47#include <linux/namei.h>
1da177e4
LT
48#include <asm/uaccess.h>
49#include <asm/div64.h>
50#include <asm/pgtable.h>
51
52/* This magic number is used in glibc for posix shared memory */
53#define TMPFS_MAGIC 0x01021994
54
55#define ENTRIES_PER_PAGE (PAGE_CACHE_SIZE/sizeof(unsigned long))
56#define ENTRIES_PER_PAGEPAGE (ENTRIES_PER_PAGE*ENTRIES_PER_PAGE)
57#define BLOCKS_PER_PAGE (PAGE_CACHE_SIZE/512)
58
59#define SHMEM_MAX_INDEX (SHMEM_NR_DIRECT + (ENTRIES_PER_PAGEPAGE/2) * (ENTRIES_PER_PAGE+1))
60#define SHMEM_MAX_BYTES ((unsigned long long)SHMEM_MAX_INDEX << PAGE_CACHE_SHIFT)
61
62#define VM_ACCT(size) (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
63
64/* info->flags needs VM_flags to handle pagein/truncate races efficiently */
65#define SHMEM_PAGEIN VM_READ
66#define SHMEM_TRUNCATE VM_WRITE
67
68/* Definition to limit shmem_truncate's steps between cond_rescheds */
69#define LATENCY_LIMIT 64
70
71/* Pretend that each entry is of this size in directory's i_size */
72#define BOGO_DIRENT_SIZE 20
73
74/* Keep swapped page count in private field of indirect struct page */
75#define nr_swapped private
76
77/* Flag allocation requirements to shmem_getpage and shmem_swp_alloc */
78enum sgp_type {
79 SGP_QUICK, /* don't try more than file page cache lookup */
80 SGP_READ, /* don't exceed i_size, don't allocate page */
81 SGP_CACHE, /* don't exceed i_size, may allocate page */
82 SGP_WRITE, /* may exceed i_size, may allocate page */
83};
84
85static int shmem_getpage(struct inode *inode, unsigned long idx,
86 struct page **pagep, enum sgp_type sgp, int *type);
87
6daa0e28 88static inline struct page *shmem_dir_alloc(gfp_t gfp_mask)
1da177e4
LT
89{
90 /*
91 * The above definition of ENTRIES_PER_PAGE, and the use of
92 * BLOCKS_PER_PAGE on indirect pages, assume PAGE_CACHE_SIZE:
93 * might be reconsidered if it ever diverges from PAGE_SIZE.
94 */
95 return alloc_pages(gfp_mask, PAGE_CACHE_SHIFT-PAGE_SHIFT);
96}
97
98static inline void shmem_dir_free(struct page *page)
99{
100 __free_pages(page, PAGE_CACHE_SHIFT-PAGE_SHIFT);
101}
102
103static struct page **shmem_dir_map(struct page *page)
104{
105 return (struct page **)kmap_atomic(page, KM_USER0);
106}
107
108static inline void shmem_dir_unmap(struct page **dir)
109{
110 kunmap_atomic(dir, KM_USER0);
111}
112
113static swp_entry_t *shmem_swp_map(struct page *page)
114{
115 return (swp_entry_t *)kmap_atomic(page, KM_USER1);
116}
117
118static inline void shmem_swp_balance_unmap(void)
119{
120 /*
121 * When passing a pointer to an i_direct entry, to code which
122 * also handles indirect entries and so will shmem_swp_unmap,
123 * we must arrange for the preempt count to remain in balance.
124 * What kmap_atomic of a lowmem page does depends on config
125 * and architecture, so pretend to kmap_atomic some lowmem page.
126 */
127 (void) kmap_atomic(ZERO_PAGE(0), KM_USER1);
128}
129
130static inline void shmem_swp_unmap(swp_entry_t *entry)
131{
132 kunmap_atomic(entry, KM_USER1);
133}
134
135static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
136{
137 return sb->s_fs_info;
138}
139
140/*
141 * shmem_file_setup pre-accounts the whole fixed size of a VM object,
142 * for shared memory and for shared anonymous (/dev/zero) mappings
143 * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
144 * consistent with the pre-accounting of private mappings ...
145 */
146static inline int shmem_acct_size(unsigned long flags, loff_t size)
147{
148 return (flags & VM_ACCOUNT)?
149 security_vm_enough_memory(VM_ACCT(size)): 0;
150}
151
152static inline void shmem_unacct_size(unsigned long flags, loff_t size)
153{
154 if (flags & VM_ACCOUNT)
155 vm_unacct_memory(VM_ACCT(size));
156}
157
158/*
159 * ... whereas tmpfs objects are accounted incrementally as
160 * pages are allocated, in order to allow huge sparse files.
161 * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
162 * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
163 */
164static inline int shmem_acct_block(unsigned long flags)
165{
166 return (flags & VM_ACCOUNT)?
167 0: security_vm_enough_memory(VM_ACCT(PAGE_CACHE_SIZE));
168}
169
170static inline void shmem_unacct_blocks(unsigned long flags, long pages)
171{
172 if (!(flags & VM_ACCOUNT))
173 vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
174}
175
176static struct super_operations shmem_ops;
177static struct address_space_operations shmem_aops;
178static struct file_operations shmem_file_operations;
179static struct inode_operations shmem_inode_operations;
180static struct inode_operations shmem_dir_inode_operations;
1da177e4
LT
181static struct vm_operations_struct shmem_vm_ops;
182
6c231b7b 183static struct backing_dev_info shmem_backing_dev_info __read_mostly = {
1da177e4
LT
184 .ra_pages = 0, /* No readahead */
185 .capabilities = BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_WRITEBACK,
186 .unplug_io_fn = default_unplug_io_fn,
187};
188
189static LIST_HEAD(shmem_swaplist);
190static DEFINE_SPINLOCK(shmem_swaplist_lock);
191
192static void shmem_free_blocks(struct inode *inode, long pages)
193{
194 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
0edd73b3 195 if (sbinfo->max_blocks) {
1da177e4
LT
196 spin_lock(&sbinfo->stat_lock);
197 sbinfo->free_blocks += pages;
198 inode->i_blocks -= pages*BLOCKS_PER_PAGE;
199 spin_unlock(&sbinfo->stat_lock);
200 }
201}
202
203/*
204 * shmem_recalc_inode - recalculate the size of an inode
205 *
206 * @inode: inode to recalc
207 *
208 * We have to calculate the free blocks since the mm can drop
209 * undirtied hole pages behind our back.
210 *
211 * But normally info->alloced == inode->i_mapping->nrpages + info->swapped
212 * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
213 *
214 * It has to be called with the spinlock held.
215 */
216static void shmem_recalc_inode(struct inode *inode)
217{
218 struct shmem_inode_info *info = SHMEM_I(inode);
219 long freed;
220
221 freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
222 if (freed > 0) {
223 info->alloced -= freed;
224 shmem_unacct_blocks(info->flags, freed);
225 shmem_free_blocks(inode, freed);
226 }
227}
228
229/*
230 * shmem_swp_entry - find the swap vector position in the info structure
231 *
232 * @info: info structure for the inode
233 * @index: index of the page to find
234 * @page: optional page to add to the structure. Has to be preset to
235 * all zeros
236 *
237 * If there is no space allocated yet it will return NULL when
238 * page is NULL, else it will use the page for the needed block,
239 * setting it to NULL on return to indicate that it has been used.
240 *
241 * The swap vector is organized the following way:
242 *
243 * There are SHMEM_NR_DIRECT entries directly stored in the
244 * shmem_inode_info structure. So small files do not need an addional
245 * allocation.
246 *
247 * For pages with index > SHMEM_NR_DIRECT there is the pointer
248 * i_indirect which points to a page which holds in the first half
249 * doubly indirect blocks, in the second half triple indirect blocks:
250 *
251 * For an artificial ENTRIES_PER_PAGE = 4 this would lead to the
252 * following layout (for SHMEM_NR_DIRECT == 16):
253 *
254 * i_indirect -> dir --> 16-19
255 * | +-> 20-23
256 * |
257 * +-->dir2 --> 24-27
258 * | +-> 28-31
259 * | +-> 32-35
260 * | +-> 36-39
261 * |
262 * +-->dir3 --> 40-43
263 * +-> 44-47
264 * +-> 48-51
265 * +-> 52-55
266 */
267static swp_entry_t *shmem_swp_entry(struct shmem_inode_info *info, unsigned long index, struct page **page)
268{
269 unsigned long offset;
270 struct page **dir;
271 struct page *subdir;
272
273 if (index < SHMEM_NR_DIRECT) {
274 shmem_swp_balance_unmap();
275 return info->i_direct+index;
276 }
277 if (!info->i_indirect) {
278 if (page) {
279 info->i_indirect = *page;
280 *page = NULL;
281 }
282 return NULL; /* need another page */
283 }
284
285 index -= SHMEM_NR_DIRECT;
286 offset = index % ENTRIES_PER_PAGE;
287 index /= ENTRIES_PER_PAGE;
288 dir = shmem_dir_map(info->i_indirect);
289
290 if (index >= ENTRIES_PER_PAGE/2) {
291 index -= ENTRIES_PER_PAGE/2;
292 dir += ENTRIES_PER_PAGE/2 + index/ENTRIES_PER_PAGE;
293 index %= ENTRIES_PER_PAGE;
294 subdir = *dir;
295 if (!subdir) {
296 if (page) {
297 *dir = *page;
298 *page = NULL;
299 }
300 shmem_dir_unmap(dir);
301 return NULL; /* need another page */
302 }
303 shmem_dir_unmap(dir);
304 dir = shmem_dir_map(subdir);
305 }
306
307 dir += index;
308 subdir = *dir;
309 if (!subdir) {
310 if (!page || !(subdir = *page)) {
311 shmem_dir_unmap(dir);
312 return NULL; /* need a page */
313 }
314 *dir = subdir;
315 *page = NULL;
316 }
317 shmem_dir_unmap(dir);
318 return shmem_swp_map(subdir) + offset;
319}
320
321static void shmem_swp_set(struct shmem_inode_info *info, swp_entry_t *entry, unsigned long value)
322{
323 long incdec = value? 1: -1;
324
325 entry->val = value;
326 info->swapped += incdec;
327 if ((unsigned long)(entry - info->i_direct) >= SHMEM_NR_DIRECT)
328 kmap_atomic_to_page(entry)->nr_swapped += incdec;
329}
330
331/*
332 * shmem_swp_alloc - get the position of the swap entry for the page.
333 * If it does not exist allocate the entry.
334 *
335 * @info: info structure for the inode
336 * @index: index of the page to find
337 * @sgp: check and recheck i_size? skip allocation?
338 */
339static swp_entry_t *shmem_swp_alloc(struct shmem_inode_info *info, unsigned long index, enum sgp_type sgp)
340{
341 struct inode *inode = &info->vfs_inode;
342 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
343 struct page *page = NULL;
344 swp_entry_t *entry;
345
346 if (sgp != SGP_WRITE &&
347 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode))
348 return ERR_PTR(-EINVAL);
349
350 while (!(entry = shmem_swp_entry(info, index, &page))) {
351 if (sgp == SGP_READ)
352 return shmem_swp_map(ZERO_PAGE(0));
353 /*
354 * Test free_blocks against 1 not 0, since we have 1 data
355 * page (and perhaps indirect index pages) yet to allocate:
356 * a waste to allocate index if we cannot allocate data.
357 */
0edd73b3 358 if (sbinfo->max_blocks) {
1da177e4
LT
359 spin_lock(&sbinfo->stat_lock);
360 if (sbinfo->free_blocks <= 1) {
361 spin_unlock(&sbinfo->stat_lock);
362 return ERR_PTR(-ENOSPC);
363 }
364 sbinfo->free_blocks--;
365 inode->i_blocks += BLOCKS_PER_PAGE;
366 spin_unlock(&sbinfo->stat_lock);
367 }
368
369 spin_unlock(&info->lock);
370 page = shmem_dir_alloc(mapping_gfp_mask(inode->i_mapping) | __GFP_ZERO);
371 if (page) {
372 page->nr_swapped = 0;
373 }
374 spin_lock(&info->lock);
375
376 if (!page) {
377 shmem_free_blocks(inode, 1);
378 return ERR_PTR(-ENOMEM);
379 }
380 if (sgp != SGP_WRITE &&
381 ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
382 entry = ERR_PTR(-EINVAL);
383 break;
384 }
385 if (info->next_index <= index)
386 info->next_index = index + 1;
387 }
388 if (page) {
389 /* another task gave its page, or truncated the file */
390 shmem_free_blocks(inode, 1);
391 shmem_dir_free(page);
392 }
393 if (info->next_index <= index && !IS_ERR(entry))
394 info->next_index = index + 1;
395 return entry;
396}
397
398/*
399 * shmem_free_swp - free some swap entries in a directory
400 *
401 * @dir: pointer to the directory
402 * @edir: pointer after last entry of the directory
403 */
404static int shmem_free_swp(swp_entry_t *dir, swp_entry_t *edir)
405{
406 swp_entry_t *ptr;
407 int freed = 0;
408
409 for (ptr = dir; ptr < edir; ptr++) {
410 if (ptr->val) {
411 free_swap_and_cache(*ptr);
412 *ptr = (swp_entry_t){0};
413 freed++;
414 }
415 }
416 return freed;
417}
418
419static int shmem_map_and_free_swp(struct page *subdir,
420 int offset, int limit, struct page ***dir)
421{
422 swp_entry_t *ptr;
423 int freed = 0;
424
425 ptr = shmem_swp_map(subdir);
426 for (; offset < limit; offset += LATENCY_LIMIT) {
427 int size = limit - offset;
428 if (size > LATENCY_LIMIT)
429 size = LATENCY_LIMIT;
430 freed += shmem_free_swp(ptr+offset, ptr+offset+size);
431 if (need_resched()) {
432 shmem_swp_unmap(ptr);
433 if (*dir) {
434 shmem_dir_unmap(*dir);
435 *dir = NULL;
436 }
437 cond_resched();
438 ptr = shmem_swp_map(subdir);
439 }
440 }
441 shmem_swp_unmap(ptr);
442 return freed;
443}
444
445static void shmem_free_pages(struct list_head *next)
446{
447 struct page *page;
448 int freed = 0;
449
450 do {
451 page = container_of(next, struct page, lru);
452 next = next->next;
453 shmem_dir_free(page);
454 freed++;
455 if (freed >= LATENCY_LIMIT) {
456 cond_resched();
457 freed = 0;
458 }
459 } while (next);
460}
461
462static void shmem_truncate(struct inode *inode)
463{
464 struct shmem_inode_info *info = SHMEM_I(inode);
465 unsigned long idx;
466 unsigned long size;
467 unsigned long limit;
468 unsigned long stage;
469 unsigned long diroff;
470 struct page **dir;
471 struct page *topdir;
472 struct page *middir;
473 struct page *subdir;
474 swp_entry_t *ptr;
475 LIST_HEAD(pages_to_free);
476 long nr_pages_to_free = 0;
477 long nr_swaps_freed = 0;
478 int offset;
479 int freed;
480
481 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
482 idx = (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
483 if (idx >= info->next_index)
484 return;
485
486 spin_lock(&info->lock);
487 info->flags |= SHMEM_TRUNCATE;
488 limit = info->next_index;
489 info->next_index = idx;
490 topdir = info->i_indirect;
491 if (topdir && idx <= SHMEM_NR_DIRECT) {
492 info->i_indirect = NULL;
493 nr_pages_to_free++;
494 list_add(&topdir->lru, &pages_to_free);
495 }
496 spin_unlock(&info->lock);
497
498 if (info->swapped && idx < SHMEM_NR_DIRECT) {
499 ptr = info->i_direct;
500 size = limit;
501 if (size > SHMEM_NR_DIRECT)
502 size = SHMEM_NR_DIRECT;
503 nr_swaps_freed = shmem_free_swp(ptr+idx, ptr+size);
504 }
505 if (!topdir)
506 goto done2;
507
508 BUG_ON(limit <= SHMEM_NR_DIRECT);
509 limit -= SHMEM_NR_DIRECT;
510 idx = (idx > SHMEM_NR_DIRECT)? (idx - SHMEM_NR_DIRECT): 0;
511 offset = idx % ENTRIES_PER_PAGE;
512 idx -= offset;
513
514 dir = shmem_dir_map(topdir);
515 stage = ENTRIES_PER_PAGEPAGE/2;
516 if (idx < ENTRIES_PER_PAGEPAGE/2) {
517 middir = topdir;
518 diroff = idx/ENTRIES_PER_PAGE;
519 } else {
520 dir += ENTRIES_PER_PAGE/2;
521 dir += (idx - ENTRIES_PER_PAGEPAGE/2)/ENTRIES_PER_PAGEPAGE;
522 while (stage <= idx)
523 stage += ENTRIES_PER_PAGEPAGE;
524 middir = *dir;
525 if (*dir) {
526 diroff = ((idx - ENTRIES_PER_PAGEPAGE/2) %
527 ENTRIES_PER_PAGEPAGE) / ENTRIES_PER_PAGE;
528 if (!diroff && !offset) {
529 *dir = NULL;
530 nr_pages_to_free++;
531 list_add(&middir->lru, &pages_to_free);
532 }
533 shmem_dir_unmap(dir);
534 dir = shmem_dir_map(middir);
535 } else {
536 diroff = 0;
537 offset = 0;
538 idx = stage;
539 }
540 }
541
542 for (; idx < limit; idx += ENTRIES_PER_PAGE, diroff++) {
543 if (unlikely(idx == stage)) {
544 shmem_dir_unmap(dir);
545 dir = shmem_dir_map(topdir) +
546 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
547 while (!*dir) {
548 dir++;
549 idx += ENTRIES_PER_PAGEPAGE;
550 if (idx >= limit)
551 goto done1;
552 }
553 stage = idx + ENTRIES_PER_PAGEPAGE;
554 middir = *dir;
555 *dir = NULL;
556 nr_pages_to_free++;
557 list_add(&middir->lru, &pages_to_free);
558 shmem_dir_unmap(dir);
559 cond_resched();
560 dir = shmem_dir_map(middir);
561 diroff = 0;
562 }
563 subdir = dir[diroff];
564 if (subdir && subdir->nr_swapped) {
565 size = limit - idx;
566 if (size > ENTRIES_PER_PAGE)
567 size = ENTRIES_PER_PAGE;
568 freed = shmem_map_and_free_swp(subdir,
569 offset, size, &dir);
570 if (!dir)
571 dir = shmem_dir_map(middir);
572 nr_swaps_freed += freed;
573 if (offset)
574 spin_lock(&info->lock);
575 subdir->nr_swapped -= freed;
576 if (offset)
577 spin_unlock(&info->lock);
578 BUG_ON(subdir->nr_swapped > offset);
579 }
580 if (offset)
581 offset = 0;
582 else if (subdir) {
583 dir[diroff] = NULL;
584 nr_pages_to_free++;
585 list_add(&subdir->lru, &pages_to_free);
586 }
587 }
588done1:
589 shmem_dir_unmap(dir);
590done2:
591 if (inode->i_mapping->nrpages && (info->flags & SHMEM_PAGEIN)) {
592 /*
593 * Call truncate_inode_pages again: racing shmem_unuse_inode
594 * may have swizzled a page in from swap since vmtruncate or
595 * generic_delete_inode did it, before we lowered next_index.
596 * Also, though shmem_getpage checks i_size before adding to
597 * cache, no recheck after: so fix the narrow window there too.
598 */
599 truncate_inode_pages(inode->i_mapping, inode->i_size);
600 }
601
602 spin_lock(&info->lock);
603 info->flags &= ~SHMEM_TRUNCATE;
604 info->swapped -= nr_swaps_freed;
605 if (nr_pages_to_free)
606 shmem_free_blocks(inode, nr_pages_to_free);
607 shmem_recalc_inode(inode);
608 spin_unlock(&info->lock);
609
610 /*
611 * Empty swap vector directory pages to be freed?
612 */
613 if (!list_empty(&pages_to_free)) {
614 pages_to_free.prev->next = NULL;
615 shmem_free_pages(pages_to_free.next);
616 }
617}
618
619static int shmem_notify_change(struct dentry *dentry, struct iattr *attr)
620{
621 struct inode *inode = dentry->d_inode;
622 struct page *page = NULL;
623 int error;
624
625 if (attr->ia_valid & ATTR_SIZE) {
626 if (attr->ia_size < inode->i_size) {
627 /*
628 * If truncating down to a partial page, then
629 * if that page is already allocated, hold it
630 * in memory until the truncation is over, so
631 * truncate_partial_page cannnot miss it were
632 * it assigned to swap.
633 */
634 if (attr->ia_size & (PAGE_CACHE_SIZE-1)) {
635 (void) shmem_getpage(inode,
636 attr->ia_size>>PAGE_CACHE_SHIFT,
637 &page, SGP_READ, NULL);
638 }
639 /*
640 * Reset SHMEM_PAGEIN flag so that shmem_truncate can
641 * detect if any pages might have been added to cache
642 * after truncate_inode_pages. But we needn't bother
643 * if it's being fully truncated to zero-length: the
644 * nrpages check is efficient enough in that case.
645 */
646 if (attr->ia_size) {
647 struct shmem_inode_info *info = SHMEM_I(inode);
648 spin_lock(&info->lock);
649 info->flags &= ~SHMEM_PAGEIN;
650 spin_unlock(&info->lock);
651 }
652 }
653 }
654
655 error = inode_change_ok(inode, attr);
656 if (!error)
657 error = inode_setattr(inode, attr);
658 if (page)
659 page_cache_release(page);
660 return error;
661}
662
663static void shmem_delete_inode(struct inode *inode)
664{
665 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
666 struct shmem_inode_info *info = SHMEM_I(inode);
667
668 if (inode->i_op->truncate == shmem_truncate) {
fef26658 669 truncate_inode_pages(inode->i_mapping, 0);
1da177e4
LT
670 shmem_unacct_size(info->flags, inode->i_size);
671 inode->i_size = 0;
672 shmem_truncate(inode);
673 if (!list_empty(&info->swaplist)) {
674 spin_lock(&shmem_swaplist_lock);
675 list_del_init(&info->swaplist);
676 spin_unlock(&shmem_swaplist_lock);
677 }
678 }
0edd73b3
HD
679 BUG_ON(inode->i_blocks);
680 if (sbinfo->max_inodes) {
1da177e4
LT
681 spin_lock(&sbinfo->stat_lock);
682 sbinfo->free_inodes++;
683 spin_unlock(&sbinfo->stat_lock);
684 }
685 clear_inode(inode);
686}
687
688static inline int shmem_find_swp(swp_entry_t entry, swp_entry_t *dir, swp_entry_t *edir)
689{
690 swp_entry_t *ptr;
691
692 for (ptr = dir; ptr < edir; ptr++) {
693 if (ptr->val == entry.val)
694 return ptr - dir;
695 }
696 return -1;
697}
698
699static int shmem_unuse_inode(struct shmem_inode_info *info, swp_entry_t entry, struct page *page)
700{
701 struct inode *inode;
702 unsigned long idx;
703 unsigned long size;
704 unsigned long limit;
705 unsigned long stage;
706 struct page **dir;
707 struct page *subdir;
708 swp_entry_t *ptr;
709 int offset;
710
711 idx = 0;
712 ptr = info->i_direct;
713 spin_lock(&info->lock);
714 limit = info->next_index;
715 size = limit;
716 if (size > SHMEM_NR_DIRECT)
717 size = SHMEM_NR_DIRECT;
718 offset = shmem_find_swp(entry, ptr, ptr+size);
719 if (offset >= 0) {
720 shmem_swp_balance_unmap();
721 goto found;
722 }
723 if (!info->i_indirect)
724 goto lost2;
725
726 dir = shmem_dir_map(info->i_indirect);
727 stage = SHMEM_NR_DIRECT + ENTRIES_PER_PAGEPAGE/2;
728
729 for (idx = SHMEM_NR_DIRECT; idx < limit; idx += ENTRIES_PER_PAGE, dir++) {
730 if (unlikely(idx == stage)) {
731 shmem_dir_unmap(dir-1);
732 dir = shmem_dir_map(info->i_indirect) +
733 ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
734 while (!*dir) {
735 dir++;
736 idx += ENTRIES_PER_PAGEPAGE;
737 if (idx >= limit)
738 goto lost1;
739 }
740 stage = idx + ENTRIES_PER_PAGEPAGE;
741 subdir = *dir;
742 shmem_dir_unmap(dir);
743 dir = shmem_dir_map(subdir);
744 }
745 subdir = *dir;
746 if (subdir && subdir->nr_swapped) {
747 ptr = shmem_swp_map(subdir);
748 size = limit - idx;
749 if (size > ENTRIES_PER_PAGE)
750 size = ENTRIES_PER_PAGE;
751 offset = shmem_find_swp(entry, ptr, ptr+size);
752 if (offset >= 0) {
753 shmem_dir_unmap(dir);
754 goto found;
755 }
756 shmem_swp_unmap(ptr);
757 }
758 }
759lost1:
760 shmem_dir_unmap(dir-1);
761lost2:
762 spin_unlock(&info->lock);
763 return 0;
764found:
765 idx += offset;
766 inode = &info->vfs_inode;
767 if (move_from_swap_cache(page, idx, inode->i_mapping) == 0) {
768 info->flags |= SHMEM_PAGEIN;
769 shmem_swp_set(info, ptr + offset, 0);
770 }
771 shmem_swp_unmap(ptr);
772 spin_unlock(&info->lock);
773 /*
774 * Decrement swap count even when the entry is left behind:
775 * try_to_unuse will skip over mms, then reincrement count.
776 */
777 swap_free(entry);
778 return 1;
779}
780
781/*
782 * shmem_unuse() search for an eventually swapped out shmem page.
783 */
784int shmem_unuse(swp_entry_t entry, struct page *page)
785{
786 struct list_head *p, *next;
787 struct shmem_inode_info *info;
788 int found = 0;
789
790 spin_lock(&shmem_swaplist_lock);
791 list_for_each_safe(p, next, &shmem_swaplist) {
792 info = list_entry(p, struct shmem_inode_info, swaplist);
793 if (!info->swapped)
794 list_del_init(&info->swaplist);
795 else if (shmem_unuse_inode(info, entry, page)) {
796 /* move head to start search for next from here */
797 list_move_tail(&shmem_swaplist, &info->swaplist);
798 found = 1;
799 break;
800 }
801 }
802 spin_unlock(&shmem_swaplist_lock);
803 return found;
804}
805
806/*
807 * Move the page from the page cache to the swap cache.
808 */
809static int shmem_writepage(struct page *page, struct writeback_control *wbc)
810{
811 struct shmem_inode_info *info;
812 swp_entry_t *entry, swap;
813 struct address_space *mapping;
814 unsigned long index;
815 struct inode *inode;
816
817 BUG_ON(!PageLocked(page));
818 BUG_ON(page_mapped(page));
819
820 mapping = page->mapping;
821 index = page->index;
822 inode = mapping->host;
823 info = SHMEM_I(inode);
824 if (info->flags & VM_LOCKED)
825 goto redirty;
826 swap = get_swap_page();
827 if (!swap.val)
828 goto redirty;
829
830 spin_lock(&info->lock);
831 shmem_recalc_inode(inode);
832 if (index >= info->next_index) {
833 BUG_ON(!(info->flags & SHMEM_TRUNCATE));
834 goto unlock;
835 }
836 entry = shmem_swp_entry(info, index, NULL);
837 BUG_ON(!entry);
838 BUG_ON(entry->val);
839
840 if (move_to_swap_cache(page, swap) == 0) {
841 shmem_swp_set(info, entry, swap.val);
842 shmem_swp_unmap(entry);
843 spin_unlock(&info->lock);
844 if (list_empty(&info->swaplist)) {
845 spin_lock(&shmem_swaplist_lock);
846 /* move instead of add in case we're racing */
847 list_move_tail(&info->swaplist, &shmem_swaplist);
848 spin_unlock(&shmem_swaplist_lock);
849 }
850 unlock_page(page);
851 return 0;
852 }
853
854 shmem_swp_unmap(entry);
855unlock:
856 spin_unlock(&info->lock);
857 swap_free(swap);
858redirty:
859 set_page_dirty(page);
860 return WRITEPAGE_ACTIVATE; /* Return with the page locked */
861}
862
863#ifdef CONFIG_NUMA
864static struct page *shmem_swapin_async(struct shared_policy *p,
865 swp_entry_t entry, unsigned long idx)
866{
867 struct page *page;
868 struct vm_area_struct pvma;
869
870 /* Create a pseudo vma that just contains the policy */
871 memset(&pvma, 0, sizeof(struct vm_area_struct));
872 pvma.vm_end = PAGE_SIZE;
873 pvma.vm_pgoff = idx;
874 pvma.vm_policy = mpol_shared_policy_lookup(p, idx);
875 page = read_swap_cache_async(entry, &pvma, 0);
876 mpol_free(pvma.vm_policy);
877 return page;
878}
879
880struct page *shmem_swapin(struct shmem_inode_info *info, swp_entry_t entry,
881 unsigned long idx)
882{
883 struct shared_policy *p = &info->policy;
884 int i, num;
885 struct page *page;
886 unsigned long offset;
887
888 num = valid_swaphandles(entry, &offset);
889 for (i = 0; i < num; offset++, i++) {
890 page = shmem_swapin_async(p,
891 swp_entry(swp_type(entry), offset), idx);
892 if (!page)
893 break;
894 page_cache_release(page);
895 }
896 lru_add_drain(); /* Push any new pages onto the LRU now */
897 return shmem_swapin_async(p, entry, idx);
898}
899
900static struct page *
6daa0e28 901shmem_alloc_page(gfp_t gfp, struct shmem_inode_info *info,
1da177e4
LT
902 unsigned long idx)
903{
904 struct vm_area_struct pvma;
905 struct page *page;
906
907 memset(&pvma, 0, sizeof(struct vm_area_struct));
908 pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, idx);
909 pvma.vm_pgoff = idx;
910 pvma.vm_end = PAGE_SIZE;
911 page = alloc_page_vma(gfp | __GFP_ZERO, &pvma, 0);
912 mpol_free(pvma.vm_policy);
913 return page;
914}
915#else
916static inline struct page *
917shmem_swapin(struct shmem_inode_info *info,swp_entry_t entry,unsigned long idx)
918{
919 swapin_readahead(entry, 0, NULL);
920 return read_swap_cache_async(entry, NULL, 0);
921}
922
923static inline struct page *
dd0fc66f 924shmem_alloc_page(gfp_t gfp,struct shmem_inode_info *info, unsigned long idx)
1da177e4
LT
925{
926 return alloc_page(gfp | __GFP_ZERO);
927}
928#endif
929
930/*
931 * shmem_getpage - either get the page from swap or allocate a new one
932 *
933 * If we allocate a new one we do not mark it dirty. That's up to the
934 * vm. If we swap it in we mark it dirty since we also free the swap
935 * entry since a page cannot live in both the swap and page cache
936 */
937static int shmem_getpage(struct inode *inode, unsigned long idx,
938 struct page **pagep, enum sgp_type sgp, int *type)
939{
940 struct address_space *mapping = inode->i_mapping;
941 struct shmem_inode_info *info = SHMEM_I(inode);
942 struct shmem_sb_info *sbinfo;
943 struct page *filepage = *pagep;
944 struct page *swappage;
945 swp_entry_t *entry;
946 swp_entry_t swap;
947 int error;
948
949 if (idx >= SHMEM_MAX_INDEX)
950 return -EFBIG;
951 /*
952 * Normally, filepage is NULL on entry, and either found
953 * uptodate immediately, or allocated and zeroed, or read
954 * in under swappage, which is then assigned to filepage.
955 * But shmem_prepare_write passes in a locked filepage,
956 * which may be found not uptodate by other callers too,
957 * and may need to be copied from the swappage read in.
958 */
959repeat:
960 if (!filepage)
961 filepage = find_lock_page(mapping, idx);
962 if (filepage && PageUptodate(filepage))
963 goto done;
964 error = 0;
965 if (sgp == SGP_QUICK)
966 goto failed;
967
968 spin_lock(&info->lock);
969 shmem_recalc_inode(inode);
970 entry = shmem_swp_alloc(info, idx, sgp);
971 if (IS_ERR(entry)) {
972 spin_unlock(&info->lock);
973 error = PTR_ERR(entry);
974 goto failed;
975 }
976 swap = *entry;
977
978 if (swap.val) {
979 /* Look it up and read it in.. */
980 swappage = lookup_swap_cache(swap);
981 if (!swappage) {
982 shmem_swp_unmap(entry);
983 spin_unlock(&info->lock);
984 /* here we actually do the io */
985 if (type && *type == VM_FAULT_MINOR) {
986 inc_page_state(pgmajfault);
987 *type = VM_FAULT_MAJOR;
988 }
989 swappage = shmem_swapin(info, swap, idx);
990 if (!swappage) {
991 spin_lock(&info->lock);
992 entry = shmem_swp_alloc(info, idx, sgp);
993 if (IS_ERR(entry))
994 error = PTR_ERR(entry);
995 else {
996 if (entry->val == swap.val)
997 error = -ENOMEM;
998 shmem_swp_unmap(entry);
999 }
1000 spin_unlock(&info->lock);
1001 if (error)
1002 goto failed;
1003 goto repeat;
1004 }
1005 wait_on_page_locked(swappage);
1006 page_cache_release(swappage);
1007 goto repeat;
1008 }
1009
1010 /* We have to do this with page locked to prevent races */
1011 if (TestSetPageLocked(swappage)) {
1012 shmem_swp_unmap(entry);
1013 spin_unlock(&info->lock);
1014 wait_on_page_locked(swappage);
1015 page_cache_release(swappage);
1016 goto repeat;
1017 }
1018 if (PageWriteback(swappage)) {
1019 shmem_swp_unmap(entry);
1020 spin_unlock(&info->lock);
1021 wait_on_page_writeback(swappage);
1022 unlock_page(swappage);
1023 page_cache_release(swappage);
1024 goto repeat;
1025 }
1026 if (!PageUptodate(swappage)) {
1027 shmem_swp_unmap(entry);
1028 spin_unlock(&info->lock);
1029 unlock_page(swappage);
1030 page_cache_release(swappage);
1031 error = -EIO;
1032 goto failed;
1033 }
1034
1035 if (filepage) {
1036 shmem_swp_set(info, entry, 0);
1037 shmem_swp_unmap(entry);
1038 delete_from_swap_cache(swappage);
1039 spin_unlock(&info->lock);
1040 copy_highpage(filepage, swappage);
1041 unlock_page(swappage);
1042 page_cache_release(swappage);
1043 flush_dcache_page(filepage);
1044 SetPageUptodate(filepage);
1045 set_page_dirty(filepage);
1046 swap_free(swap);
1047 } else if (!(error = move_from_swap_cache(
1048 swappage, idx, mapping))) {
1049 info->flags |= SHMEM_PAGEIN;
1050 shmem_swp_set(info, entry, 0);
1051 shmem_swp_unmap(entry);
1052 spin_unlock(&info->lock);
1053 filepage = swappage;
1054 swap_free(swap);
1055 } else {
1056 shmem_swp_unmap(entry);
1057 spin_unlock(&info->lock);
1058 unlock_page(swappage);
1059 page_cache_release(swappage);
1060 if (error == -ENOMEM) {
1061 /* let kswapd refresh zone for GFP_ATOMICs */
1062 blk_congestion_wait(WRITE, HZ/50);
1063 }
1064 goto repeat;
1065 }
1066 } else if (sgp == SGP_READ && !filepage) {
1067 shmem_swp_unmap(entry);
1068 filepage = find_get_page(mapping, idx);
1069 if (filepage &&
1070 (!PageUptodate(filepage) || TestSetPageLocked(filepage))) {
1071 spin_unlock(&info->lock);
1072 wait_on_page_locked(filepage);
1073 page_cache_release(filepage);
1074 filepage = NULL;
1075 goto repeat;
1076 }
1077 spin_unlock(&info->lock);
1078 } else {
1079 shmem_swp_unmap(entry);
1080 sbinfo = SHMEM_SB(inode->i_sb);
0edd73b3 1081 if (sbinfo->max_blocks) {
1da177e4
LT
1082 spin_lock(&sbinfo->stat_lock);
1083 if (sbinfo->free_blocks == 0 ||
1084 shmem_acct_block(info->flags)) {
1085 spin_unlock(&sbinfo->stat_lock);
1086 spin_unlock(&info->lock);
1087 error = -ENOSPC;
1088 goto failed;
1089 }
1090 sbinfo->free_blocks--;
1091 inode->i_blocks += BLOCKS_PER_PAGE;
1092 spin_unlock(&sbinfo->stat_lock);
1093 } else if (shmem_acct_block(info->flags)) {
1094 spin_unlock(&info->lock);
1095 error = -ENOSPC;
1096 goto failed;
1097 }
1098
1099 if (!filepage) {
1100 spin_unlock(&info->lock);
1101 filepage = shmem_alloc_page(mapping_gfp_mask(mapping),
1102 info,
1103 idx);
1104 if (!filepage) {
1105 shmem_unacct_blocks(info->flags, 1);
1106 shmem_free_blocks(inode, 1);
1107 error = -ENOMEM;
1108 goto failed;
1109 }
1110
1111 spin_lock(&info->lock);
1112 entry = shmem_swp_alloc(info, idx, sgp);
1113 if (IS_ERR(entry))
1114 error = PTR_ERR(entry);
1115 else {
1116 swap = *entry;
1117 shmem_swp_unmap(entry);
1118 }
1119 if (error || swap.val || 0 != add_to_page_cache_lru(
1120 filepage, mapping, idx, GFP_ATOMIC)) {
1121 spin_unlock(&info->lock);
1122 page_cache_release(filepage);
1123 shmem_unacct_blocks(info->flags, 1);
1124 shmem_free_blocks(inode, 1);
1125 filepage = NULL;
1126 if (error)
1127 goto failed;
1128 goto repeat;
1129 }
1130 info->flags |= SHMEM_PAGEIN;
1131 }
1132
1133 info->alloced++;
1134 spin_unlock(&info->lock);
1135 flush_dcache_page(filepage);
1136 SetPageUptodate(filepage);
1137 }
1138done:
1139 if (*pagep != filepage) {
1140 unlock_page(filepage);
1141 *pagep = filepage;
1142 }
1143 return 0;
1144
1145failed:
1146 if (*pagep != filepage) {
1147 unlock_page(filepage);
1148 page_cache_release(filepage);
1149 }
1150 return error;
1151}
1152
1153struct page *shmem_nopage(struct vm_area_struct *vma, unsigned long address, int *type)
1154{
1155 struct inode *inode = vma->vm_file->f_dentry->d_inode;
1156 struct page *page = NULL;
1157 unsigned long idx;
1158 int error;
1159
1160 idx = (address - vma->vm_start) >> PAGE_SHIFT;
1161 idx += vma->vm_pgoff;
1162 idx >>= PAGE_CACHE_SHIFT - PAGE_SHIFT;
1163 if (((loff_t) idx << PAGE_CACHE_SHIFT) >= i_size_read(inode))
1164 return NOPAGE_SIGBUS;
1165
1166 error = shmem_getpage(inode, idx, &page, SGP_CACHE, type);
1167 if (error)
1168 return (error == -ENOMEM)? NOPAGE_OOM: NOPAGE_SIGBUS;
1169
1170 mark_page_accessed(page);
1171 return page;
1172}
1173
1174static int shmem_populate(struct vm_area_struct *vma,
1175 unsigned long addr, unsigned long len,
1176 pgprot_t prot, unsigned long pgoff, int nonblock)
1177{
1178 struct inode *inode = vma->vm_file->f_dentry->d_inode;
1179 struct mm_struct *mm = vma->vm_mm;
1180 enum sgp_type sgp = nonblock? SGP_QUICK: SGP_CACHE;
1181 unsigned long size;
1182
1183 size = (i_size_read(inode) + PAGE_SIZE - 1) >> PAGE_SHIFT;
1184 if (pgoff >= size || pgoff + (len >> PAGE_SHIFT) > size)
1185 return -EINVAL;
1186
1187 while ((long) len > 0) {
1188 struct page *page = NULL;
1189 int err;
1190 /*
1191 * Will need changing if PAGE_CACHE_SIZE != PAGE_SIZE
1192 */
1193 err = shmem_getpage(inode, pgoff, &page, sgp, NULL);
1194 if (err)
1195 return err;
d44ed4f8 1196 /* Page may still be null, but only if nonblock was set. */
1da177e4
LT
1197 if (page) {
1198 mark_page_accessed(page);
1199 err = install_page(mm, vma, addr, page, prot);
1200 if (err) {
1201 page_cache_release(page);
1202 return err;
1203 }
65500d23 1204 } else if (vma->vm_flags & VM_NONLINEAR) {
d44ed4f8
PBG
1205 /* No page was found just because we can't read it in
1206 * now (being here implies nonblock != 0), but the page
1207 * may exist, so set the PTE to fault it in later. */
1da177e4
LT
1208 err = install_file_pte(mm, vma, addr, pgoff, prot);
1209 if (err)
1210 return err;
1211 }
1212
1213 len -= PAGE_SIZE;
1214 addr += PAGE_SIZE;
1215 pgoff++;
1216 }
1217 return 0;
1218}
1219
1220#ifdef CONFIG_NUMA
1221int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
1222{
1223 struct inode *i = vma->vm_file->f_dentry->d_inode;
1224 return mpol_set_shared_policy(&SHMEM_I(i)->policy, vma, new);
1225}
1226
1227struct mempolicy *
1228shmem_get_policy(struct vm_area_struct *vma, unsigned long addr)
1229{
1230 struct inode *i = vma->vm_file->f_dentry->d_inode;
1231 unsigned long idx;
1232
1233 idx = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1234 return mpol_shared_policy_lookup(&SHMEM_I(i)->policy, idx);
1235}
1236#endif
1237
1238int shmem_lock(struct file *file, int lock, struct user_struct *user)
1239{
1240 struct inode *inode = file->f_dentry->d_inode;
1241 struct shmem_inode_info *info = SHMEM_I(inode);
1242 int retval = -ENOMEM;
1243
1244 spin_lock(&info->lock);
1245 if (lock && !(info->flags & VM_LOCKED)) {
1246 if (!user_shm_lock(inode->i_size, user))
1247 goto out_nomem;
1248 info->flags |= VM_LOCKED;
1249 }
1250 if (!lock && (info->flags & VM_LOCKED) && user) {
1251 user_shm_unlock(inode->i_size, user);
1252 info->flags &= ~VM_LOCKED;
1253 }
1254 retval = 0;
1255out_nomem:
1256 spin_unlock(&info->lock);
1257 return retval;
1258}
1259
1260static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
1261{
1262 file_accessed(file);
1263 vma->vm_ops = &shmem_vm_ops;
1264 return 0;
1265}
1266
1267static struct inode *
1268shmem_get_inode(struct super_block *sb, int mode, dev_t dev)
1269{
1270 struct inode *inode;
1271 struct shmem_inode_info *info;
1272 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1273
0edd73b3 1274 if (sbinfo->max_inodes) {
1da177e4
LT
1275 spin_lock(&sbinfo->stat_lock);
1276 if (!sbinfo->free_inodes) {
1277 spin_unlock(&sbinfo->stat_lock);
1278 return NULL;
1279 }
1280 sbinfo->free_inodes--;
1281 spin_unlock(&sbinfo->stat_lock);
1282 }
1283
1284 inode = new_inode(sb);
1285 if (inode) {
1286 inode->i_mode = mode;
1287 inode->i_uid = current->fsuid;
1288 inode->i_gid = current->fsgid;
1289 inode->i_blksize = PAGE_CACHE_SIZE;
1290 inode->i_blocks = 0;
1291 inode->i_mapping->a_ops = &shmem_aops;
1292 inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
1293 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1294 info = SHMEM_I(inode);
1295 memset(info, 0, (char *)inode - (char *)info);
1296 spin_lock_init(&info->lock);
1297 INIT_LIST_HEAD(&info->swaplist);
1298
1299 switch (mode & S_IFMT) {
1300 default:
1da177e4
LT
1301 init_special_inode(inode, mode, dev);
1302 break;
1303 case S_IFREG:
1304 inode->i_op = &shmem_inode_operations;
1305 inode->i_fop = &shmem_file_operations;
1306 mpol_shared_policy_init(&info->policy);
1307 break;
1308 case S_IFDIR:
1309 inode->i_nlink++;
1310 /* Some things misbehave if size == 0 on a directory */
1311 inode->i_size = 2 * BOGO_DIRENT_SIZE;
1312 inode->i_op = &shmem_dir_inode_operations;
1313 inode->i_fop = &simple_dir_operations;
1314 break;
1315 case S_IFLNK:
1316 /*
1317 * Must not load anything in the rbtree,
1318 * mpol_free_shared_policy will not be called.
1319 */
1320 mpol_shared_policy_init(&info->policy);
1321 break;
1322 }
0edd73b3 1323 } else if (sbinfo->max_inodes) {
1da177e4
LT
1324 spin_lock(&sbinfo->stat_lock);
1325 sbinfo->free_inodes++;
1326 spin_unlock(&sbinfo->stat_lock);
1327 }
1328 return inode;
1329}
1330
1331#ifdef CONFIG_TMPFS
1da177e4
LT
1332static struct inode_operations shmem_symlink_inode_operations;
1333static struct inode_operations shmem_symlink_inline_operations;
1334
1335/*
1336 * Normally tmpfs makes no use of shmem_prepare_write, but it
1337 * lets a tmpfs file be used read-write below the loop driver.
1338 */
1339static int
1340shmem_prepare_write(struct file *file, struct page *page, unsigned offset, unsigned to)
1341{
1342 struct inode *inode = page->mapping->host;
1343 return shmem_getpage(inode, page->index, &page, SGP_WRITE, NULL);
1344}
1345
1346static ssize_t
1347shmem_file_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
1348{
1349 struct inode *inode = file->f_dentry->d_inode;
1350 loff_t pos;
1351 unsigned long written;
1352 ssize_t err;
1353
1354 if ((ssize_t) count < 0)
1355 return -EINVAL;
1356
1357 if (!access_ok(VERIFY_READ, buf, count))
1358 return -EFAULT;
1359
1360 down(&inode->i_sem);
1361
1362 pos = *ppos;
1363 written = 0;
1364
1365 err = generic_write_checks(file, &pos, &count, 0);
1366 if (err || !count)
1367 goto out;
1368
1369 err = remove_suid(file->f_dentry);
1370 if (err)
1371 goto out;
1372
1373 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1374
1375 do {
1376 struct page *page = NULL;
1377 unsigned long bytes, index, offset;
1378 char *kaddr;
1379 int left;
1380
1381 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
1382 index = pos >> PAGE_CACHE_SHIFT;
1383 bytes = PAGE_CACHE_SIZE - offset;
1384 if (bytes > count)
1385 bytes = count;
1386
1387 /*
1388 * We don't hold page lock across copy from user -
1389 * what would it guard against? - so no deadlock here.
1390 * But it still may be a good idea to prefault below.
1391 */
1392
1393 err = shmem_getpage(inode, index, &page, SGP_WRITE, NULL);
1394 if (err)
1395 break;
1396
1397 left = bytes;
1398 if (PageHighMem(page)) {
1399 volatile unsigned char dummy;
1400 __get_user(dummy, buf);
1401 __get_user(dummy, buf + bytes - 1);
1402
1403 kaddr = kmap_atomic(page, KM_USER0);
1404 left = __copy_from_user_inatomic(kaddr + offset,
1405 buf, bytes);
1406 kunmap_atomic(kaddr, KM_USER0);
1407 }
1408 if (left) {
1409 kaddr = kmap(page);
1410 left = __copy_from_user(kaddr + offset, buf, bytes);
1411 kunmap(page);
1412 }
1413
1414 written += bytes;
1415 count -= bytes;
1416 pos += bytes;
1417 buf += bytes;
1418 if (pos > inode->i_size)
1419 i_size_write(inode, pos);
1420
1421 flush_dcache_page(page);
1422 set_page_dirty(page);
1423 mark_page_accessed(page);
1424 page_cache_release(page);
1425
1426 if (left) {
1427 pos -= left;
1428 written -= left;
1429 err = -EFAULT;
1430 break;
1431 }
1432
1433 /*
1434 * Our dirty pages are not counted in nr_dirty,
1435 * and we do not attempt to balance dirty pages.
1436 */
1437
1438 cond_resched();
1439 } while (count);
1440
1441 *ppos = pos;
1442 if (written)
1443 err = written;
1444out:
1445 up(&inode->i_sem);
1446 return err;
1447}
1448
1449static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
1450{
1451 struct inode *inode = filp->f_dentry->d_inode;
1452 struct address_space *mapping = inode->i_mapping;
1453 unsigned long index, offset;
1454
1455 index = *ppos >> PAGE_CACHE_SHIFT;
1456 offset = *ppos & ~PAGE_CACHE_MASK;
1457
1458 for (;;) {
1459 struct page *page = NULL;
1460 unsigned long end_index, nr, ret;
1461 loff_t i_size = i_size_read(inode);
1462
1463 end_index = i_size >> PAGE_CACHE_SHIFT;
1464 if (index > end_index)
1465 break;
1466 if (index == end_index) {
1467 nr = i_size & ~PAGE_CACHE_MASK;
1468 if (nr <= offset)
1469 break;
1470 }
1471
1472 desc->error = shmem_getpage(inode, index, &page, SGP_READ, NULL);
1473 if (desc->error) {
1474 if (desc->error == -EINVAL)
1475 desc->error = 0;
1476 break;
1477 }
1478
1479 /*
1480 * We must evaluate after, since reads (unlike writes)
1481 * are called without i_sem protection against truncate
1482 */
1483 nr = PAGE_CACHE_SIZE;
1484 i_size = i_size_read(inode);
1485 end_index = i_size >> PAGE_CACHE_SHIFT;
1486 if (index == end_index) {
1487 nr = i_size & ~PAGE_CACHE_MASK;
1488 if (nr <= offset) {
1489 if (page)
1490 page_cache_release(page);
1491 break;
1492 }
1493 }
1494 nr -= offset;
1495
1496 if (page) {
1497 /*
1498 * If users can be writing to this page using arbitrary
1499 * virtual addresses, take care about potential aliasing
1500 * before reading the page on the kernel side.
1501 */
1502 if (mapping_writably_mapped(mapping))
1503 flush_dcache_page(page);
1504 /*
1505 * Mark the page accessed if we read the beginning.
1506 */
1507 if (!offset)
1508 mark_page_accessed(page);
b5810039 1509 } else {
1da177e4 1510 page = ZERO_PAGE(0);
b5810039
NP
1511 page_cache_get(page);
1512 }
1da177e4
LT
1513
1514 /*
1515 * Ok, we have the page, and it's up-to-date, so
1516 * now we can copy it to user space...
1517 *
1518 * The actor routine returns how many bytes were actually used..
1519 * NOTE! This may not be the same as how much of a user buffer
1520 * we filled up (we may be padding etc), so we can only update
1521 * "pos" here (the actor routine has to update the user buffer
1522 * pointers and the remaining count).
1523 */
1524 ret = actor(desc, page, offset, nr);
1525 offset += ret;
1526 index += offset >> PAGE_CACHE_SHIFT;
1527 offset &= ~PAGE_CACHE_MASK;
1528
1529 page_cache_release(page);
1530 if (ret != nr || !desc->count)
1531 break;
1532
1533 cond_resched();
1534 }
1535
1536 *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
1537 file_accessed(filp);
1538}
1539
1540static ssize_t shmem_file_read(struct file *filp, char __user *buf, size_t count, loff_t *ppos)
1541{
1542 read_descriptor_t desc;
1543
1544 if ((ssize_t) count < 0)
1545 return -EINVAL;
1546 if (!access_ok(VERIFY_WRITE, buf, count))
1547 return -EFAULT;
1548 if (!count)
1549 return 0;
1550
1551 desc.written = 0;
1552 desc.count = count;
1553 desc.arg.buf = buf;
1554 desc.error = 0;
1555
1556 do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1557 if (desc.written)
1558 return desc.written;
1559 return desc.error;
1560}
1561
1562static ssize_t shmem_file_sendfile(struct file *in_file, loff_t *ppos,
1563 size_t count, read_actor_t actor, void *target)
1564{
1565 read_descriptor_t desc;
1566
1567 if (!count)
1568 return 0;
1569
1570 desc.written = 0;
1571 desc.count = count;
1572 desc.arg.data = target;
1573 desc.error = 0;
1574
1575 do_shmem_file_read(in_file, ppos, &desc, actor);
1576 if (desc.written)
1577 return desc.written;
1578 return desc.error;
1579}
1580
1581static int shmem_statfs(struct super_block *sb, struct kstatfs *buf)
1582{
1583 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1584
1585 buf->f_type = TMPFS_MAGIC;
1586 buf->f_bsize = PAGE_CACHE_SIZE;
1587 buf->f_namelen = NAME_MAX;
0edd73b3
HD
1588 spin_lock(&sbinfo->stat_lock);
1589 if (sbinfo->max_blocks) {
1da177e4
LT
1590 buf->f_blocks = sbinfo->max_blocks;
1591 buf->f_bavail = buf->f_bfree = sbinfo->free_blocks;
0edd73b3
HD
1592 }
1593 if (sbinfo->max_inodes) {
1da177e4
LT
1594 buf->f_files = sbinfo->max_inodes;
1595 buf->f_ffree = sbinfo->free_inodes;
1da177e4
LT
1596 }
1597 /* else leave those fields 0 like simple_statfs */
0edd73b3 1598 spin_unlock(&sbinfo->stat_lock);
1da177e4
LT
1599 return 0;
1600}
1601
1602/*
1603 * File creation. Allocate an inode, and we're done..
1604 */
1605static int
1606shmem_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1607{
1608 struct inode *inode = shmem_get_inode(dir->i_sb, mode, dev);
1609 int error = -ENOSPC;
1610
1611 if (inode) {
570bc1c2
SS
1612 error = security_inode_init_security(inode, dir, NULL, NULL,
1613 NULL);
1614 if (error) {
1615 if (error != -EOPNOTSUPP) {
1616 iput(inode);
1617 return error;
1618 }
1619 error = 0;
1620 }
1da177e4
LT
1621 if (dir->i_mode & S_ISGID) {
1622 inode->i_gid = dir->i_gid;
1623 if (S_ISDIR(mode))
1624 inode->i_mode |= S_ISGID;
1625 }
1626 dir->i_size += BOGO_DIRENT_SIZE;
1627 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1628 d_instantiate(dentry, inode);
1629 dget(dentry); /* Extra count - pin the dentry in core */
1da177e4
LT
1630 }
1631 return error;
1632}
1633
1634static int shmem_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1635{
1636 int error;
1637
1638 if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
1639 return error;
1640 dir->i_nlink++;
1641 return 0;
1642}
1643
1644static int shmem_create(struct inode *dir, struct dentry *dentry, int mode,
1645 struct nameidata *nd)
1646{
1647 return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
1648}
1649
1650/*
1651 * Link a file..
1652 */
1653static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1654{
1655 struct inode *inode = old_dentry->d_inode;
1656 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
1657
1658 /*
1659 * No ordinary (disk based) filesystem counts links as inodes;
1660 * but each new link needs a new dentry, pinning lowmem, and
1661 * tmpfs dentries cannot be pruned until they are unlinked.
1662 */
0edd73b3 1663 if (sbinfo->max_inodes) {
1da177e4
LT
1664 spin_lock(&sbinfo->stat_lock);
1665 if (!sbinfo->free_inodes) {
1666 spin_unlock(&sbinfo->stat_lock);
1667 return -ENOSPC;
1668 }
1669 sbinfo->free_inodes--;
1670 spin_unlock(&sbinfo->stat_lock);
1671 }
1672
1673 dir->i_size += BOGO_DIRENT_SIZE;
1674 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1675 inode->i_nlink++;
1676 atomic_inc(&inode->i_count); /* New dentry reference */
1677 dget(dentry); /* Extra pinning count for the created dentry */
1678 d_instantiate(dentry, inode);
1679 return 0;
1680}
1681
1682static int shmem_unlink(struct inode *dir, struct dentry *dentry)
1683{
1684 struct inode *inode = dentry->d_inode;
1685
1686 if (inode->i_nlink > 1 && !S_ISDIR(inode->i_mode)) {
1687 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
0edd73b3 1688 if (sbinfo->max_inodes) {
1da177e4
LT
1689 spin_lock(&sbinfo->stat_lock);
1690 sbinfo->free_inodes++;
1691 spin_unlock(&sbinfo->stat_lock);
1692 }
1693 }
1694
1695 dir->i_size -= BOGO_DIRENT_SIZE;
1696 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1697 inode->i_nlink--;
1698 dput(dentry); /* Undo the count from "create" - this does all the work */
1699 return 0;
1700}
1701
1702static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
1703{
1704 if (!simple_empty(dentry))
1705 return -ENOTEMPTY;
1706
1707 dir->i_nlink--;
1708 return shmem_unlink(dir, dentry);
1709}
1710
1711/*
1712 * The VFS layer already does all the dentry stuff for rename,
1713 * we just have to decrement the usage count for the target if
1714 * it exists so that the VFS layer correctly free's it when it
1715 * gets overwritten.
1716 */
1717static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
1718{
1719 struct inode *inode = old_dentry->d_inode;
1720 int they_are_dirs = S_ISDIR(inode->i_mode);
1721
1722 if (!simple_empty(new_dentry))
1723 return -ENOTEMPTY;
1724
1725 if (new_dentry->d_inode) {
1726 (void) shmem_unlink(new_dir, new_dentry);
1727 if (they_are_dirs)
1728 old_dir->i_nlink--;
1729 } else if (they_are_dirs) {
1730 old_dir->i_nlink--;
1731 new_dir->i_nlink++;
1732 }
1733
1734 old_dir->i_size -= BOGO_DIRENT_SIZE;
1735 new_dir->i_size += BOGO_DIRENT_SIZE;
1736 old_dir->i_ctime = old_dir->i_mtime =
1737 new_dir->i_ctime = new_dir->i_mtime =
1738 inode->i_ctime = CURRENT_TIME;
1739 return 0;
1740}
1741
1742static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1743{
1744 int error;
1745 int len;
1746 struct inode *inode;
1747 struct page *page = NULL;
1748 char *kaddr;
1749 struct shmem_inode_info *info;
1750
1751 len = strlen(symname) + 1;
1752 if (len > PAGE_CACHE_SIZE)
1753 return -ENAMETOOLONG;
1754
1755 inode = shmem_get_inode(dir->i_sb, S_IFLNK|S_IRWXUGO, 0);
1756 if (!inode)
1757 return -ENOSPC;
1758
570bc1c2
SS
1759 error = security_inode_init_security(inode, dir, NULL, NULL,
1760 NULL);
1761 if (error) {
1762 if (error != -EOPNOTSUPP) {
1763 iput(inode);
1764 return error;
1765 }
1766 error = 0;
1767 }
1768
1da177e4
LT
1769 info = SHMEM_I(inode);
1770 inode->i_size = len-1;
1771 if (len <= (char *)inode - (char *)info) {
1772 /* do it inline */
1773 memcpy(info, symname, len);
1774 inode->i_op = &shmem_symlink_inline_operations;
1775 } else {
1776 error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
1777 if (error) {
1778 iput(inode);
1779 return error;
1780 }
1781 inode->i_op = &shmem_symlink_inode_operations;
1782 kaddr = kmap_atomic(page, KM_USER0);
1783 memcpy(kaddr, symname, len);
1784 kunmap_atomic(kaddr, KM_USER0);
1785 set_page_dirty(page);
1786 page_cache_release(page);
1787 }
1788 if (dir->i_mode & S_ISGID)
1789 inode->i_gid = dir->i_gid;
1790 dir->i_size += BOGO_DIRENT_SIZE;
1791 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1792 d_instantiate(dentry, inode);
1793 dget(dentry);
1794 return 0;
1795}
1796
cc314eef 1797static void *shmem_follow_link_inline(struct dentry *dentry, struct nameidata *nd)
1da177e4
LT
1798{
1799 nd_set_link(nd, (char *)SHMEM_I(dentry->d_inode));
cc314eef 1800 return NULL;
1da177e4
LT
1801}
1802
cc314eef 1803static void *shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
1da177e4
LT
1804{
1805 struct page *page = NULL;
1806 int res = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
1807 nd_set_link(nd, res ? ERR_PTR(res) : kmap(page));
cc314eef 1808 return page;
1da177e4
LT
1809}
1810
cc314eef 1811static void shmem_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
1da177e4
LT
1812{
1813 if (!IS_ERR(nd_get_link(nd))) {
cc314eef 1814 struct page *page = cookie;
1da177e4
LT
1815 kunmap(page);
1816 mark_page_accessed(page);
1817 page_cache_release(page);
1da177e4
LT
1818 }
1819}
1820
1821static struct inode_operations shmem_symlink_inline_operations = {
1822 .readlink = generic_readlink,
1823 .follow_link = shmem_follow_link_inline,
1da177e4
LT
1824};
1825
1826static struct inode_operations shmem_symlink_inode_operations = {
1827 .truncate = shmem_truncate,
1828 .readlink = generic_readlink,
1829 .follow_link = shmem_follow_link,
1830 .put_link = shmem_put_link,
1da177e4
LT
1831};
1832
1833static int shmem_parse_options(char *options, int *mode, uid_t *uid, gid_t *gid, unsigned long *blocks, unsigned long *inodes)
1834{
1835 char *this_char, *value, *rest;
1836
1837 while ((this_char = strsep(&options, ",")) != NULL) {
1838 if (!*this_char)
1839 continue;
1840 if ((value = strchr(this_char,'=')) != NULL) {
1841 *value++ = 0;
1842 } else {
1843 printk(KERN_ERR
1844 "tmpfs: No value for mount option '%s'\n",
1845 this_char);
1846 return 1;
1847 }
1848
1849 if (!strcmp(this_char,"size")) {
1850 unsigned long long size;
1851 size = memparse(value,&rest);
1852 if (*rest == '%') {
1853 size <<= PAGE_SHIFT;
1854 size *= totalram_pages;
1855 do_div(size, 100);
1856 rest++;
1857 }
1858 if (*rest)
1859 goto bad_val;
1860 *blocks = size >> PAGE_CACHE_SHIFT;
1861 } else if (!strcmp(this_char,"nr_blocks")) {
1862 *blocks = memparse(value,&rest);
1863 if (*rest)
1864 goto bad_val;
1865 } else if (!strcmp(this_char,"nr_inodes")) {
1866 *inodes = memparse(value,&rest);
1867 if (*rest)
1868 goto bad_val;
1869 } else if (!strcmp(this_char,"mode")) {
1870 if (!mode)
1871 continue;
1872 *mode = simple_strtoul(value,&rest,8);
1873 if (*rest)
1874 goto bad_val;
1875 } else if (!strcmp(this_char,"uid")) {
1876 if (!uid)
1877 continue;
1878 *uid = simple_strtoul(value,&rest,0);
1879 if (*rest)
1880 goto bad_val;
1881 } else if (!strcmp(this_char,"gid")) {
1882 if (!gid)
1883 continue;
1884 *gid = simple_strtoul(value,&rest,0);
1885 if (*rest)
1886 goto bad_val;
1887 } else {
1888 printk(KERN_ERR "tmpfs: Bad mount option %s\n",
1889 this_char);
1890 return 1;
1891 }
1892 }
1893 return 0;
1894
1895bad_val:
1896 printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
1897 value, this_char);
1898 return 1;
1899
1900}
1901
1902static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
1903{
1904 struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
0edd73b3
HD
1905 unsigned long max_blocks = sbinfo->max_blocks;
1906 unsigned long max_inodes = sbinfo->max_inodes;
1907 unsigned long blocks;
1908 unsigned long inodes;
1909 int error = -EINVAL;
1910
1911 if (shmem_parse_options(data, NULL, NULL, NULL,
1912 &max_blocks, &max_inodes))
1913 return error;
1da177e4 1914
0edd73b3
HD
1915 spin_lock(&sbinfo->stat_lock);
1916 blocks = sbinfo->max_blocks - sbinfo->free_blocks;
1917 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
1918 if (max_blocks < blocks)
1919 goto out;
1920 if (max_inodes < inodes)
1921 goto out;
1922 /*
1923 * Those tests also disallow limited->unlimited while any are in
1924 * use, so i_blocks will always be zero when max_blocks is zero;
1925 * but we must separately disallow unlimited->limited, because
1926 * in that case we have no record of how much is already in use.
1927 */
1928 if (max_blocks && !sbinfo->max_blocks)
1929 goto out;
1930 if (max_inodes && !sbinfo->max_inodes)
1931 goto out;
1932
1933 error = 0;
1934 sbinfo->max_blocks = max_blocks;
1935 sbinfo->free_blocks = max_blocks - blocks;
1936 sbinfo->max_inodes = max_inodes;
1937 sbinfo->free_inodes = max_inodes - inodes;
1938out:
1939 spin_unlock(&sbinfo->stat_lock);
1940 return error;
1da177e4
LT
1941}
1942#endif
1943
1944static void shmem_put_super(struct super_block *sb)
1945{
1946 kfree(sb->s_fs_info);
1947 sb->s_fs_info = NULL;
1948}
1949
1da177e4
LT
1950static int shmem_fill_super(struct super_block *sb,
1951 void *data, int silent)
1952{
1953 struct inode *inode;
1954 struct dentry *root;
1955 int mode = S_IRWXUGO | S_ISVTX;
1956 uid_t uid = current->fsuid;
1957 gid_t gid = current->fsgid;
1958 int err = -ENOMEM;
0edd73b3 1959 struct shmem_sb_info *sbinfo;
1da177e4
LT
1960 unsigned long blocks = 0;
1961 unsigned long inodes = 0;
1962
0edd73b3 1963#ifdef CONFIG_TMPFS
1da177e4
LT
1964 /*
1965 * Per default we only allow half of the physical ram per
1966 * tmpfs instance, limiting inodes to one per page of lowmem;
1967 * but the internal instance is left unlimited.
1968 */
1969 if (!(sb->s_flags & MS_NOUSER)) {
1970 blocks = totalram_pages / 2;
1971 inodes = totalram_pages - totalhigh_pages;
1972 if (inodes > blocks)
1973 inodes = blocks;
0edd73b3
HD
1974 if (shmem_parse_options(data, &mode, &uid, &gid,
1975 &blocks, &inodes))
1da177e4
LT
1976 return -EINVAL;
1977 }
1da177e4
LT
1978#else
1979 sb->s_flags |= MS_NOUSER;
1980#endif
1981
0edd73b3
HD
1982 /* Round up to L1_CACHE_BYTES to resist false sharing */
1983 sbinfo = kmalloc(max((int)sizeof(struct shmem_sb_info),
1984 L1_CACHE_BYTES), GFP_KERNEL);
1985 if (!sbinfo)
1986 return -ENOMEM;
1987
1988 spin_lock_init(&sbinfo->stat_lock);
1989 sbinfo->max_blocks = blocks;
1990 sbinfo->free_blocks = blocks;
1991 sbinfo->max_inodes = inodes;
1992 sbinfo->free_inodes = inodes;
1993
1994 sb->s_fs_info = sbinfo;
1da177e4
LT
1995 sb->s_maxbytes = SHMEM_MAX_BYTES;
1996 sb->s_blocksize = PAGE_CACHE_SIZE;
1997 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1998 sb->s_magic = TMPFS_MAGIC;
1999 sb->s_op = &shmem_ops;
0edd73b3 2000
1da177e4
LT
2001 inode = shmem_get_inode(sb, S_IFDIR | mode, 0);
2002 if (!inode)
2003 goto failed;
2004 inode->i_uid = uid;
2005 inode->i_gid = gid;
2006 root = d_alloc_root(inode);
2007 if (!root)
2008 goto failed_iput;
2009 sb->s_root = root;
2010 return 0;
2011
2012failed_iput:
2013 iput(inode);
2014failed:
2015 shmem_put_super(sb);
2016 return err;
2017}
2018
2019static kmem_cache_t *shmem_inode_cachep;
2020
2021static struct inode *shmem_alloc_inode(struct super_block *sb)
2022{
2023 struct shmem_inode_info *p;
2024 p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, SLAB_KERNEL);
2025 if (!p)
2026 return NULL;
2027 return &p->vfs_inode;
2028}
2029
2030static void shmem_destroy_inode(struct inode *inode)
2031{
2032 if ((inode->i_mode & S_IFMT) == S_IFREG) {
2033 /* only struct inode is valid if it's an inline symlink */
2034 mpol_free_shared_policy(&SHMEM_I(inode)->policy);
2035 }
2036 kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
2037}
2038
2039static void init_once(void *foo, kmem_cache_t *cachep, unsigned long flags)
2040{
2041 struct shmem_inode_info *p = (struct shmem_inode_info *) foo;
2042
2043 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
2044 SLAB_CTOR_CONSTRUCTOR) {
2045 inode_init_once(&p->vfs_inode);
2046 }
2047}
2048
2049static int init_inodecache(void)
2050{
2051 shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
2052 sizeof(struct shmem_inode_info),
2053 0, 0, init_once, NULL);
2054 if (shmem_inode_cachep == NULL)
2055 return -ENOMEM;
2056 return 0;
2057}
2058
2059static void destroy_inodecache(void)
2060{
2061 if (kmem_cache_destroy(shmem_inode_cachep))
2062 printk(KERN_INFO "shmem_inode_cache: not all structures were freed\n");
2063}
2064
2065static struct address_space_operations shmem_aops = {
2066 .writepage = shmem_writepage,
2067 .set_page_dirty = __set_page_dirty_nobuffers,
2068#ifdef CONFIG_TMPFS
2069 .prepare_write = shmem_prepare_write,
2070 .commit_write = simple_commit_write,
2071#endif
2072};
2073
2074static struct file_operations shmem_file_operations = {
2075 .mmap = shmem_mmap,
2076#ifdef CONFIG_TMPFS
2077 .llseek = generic_file_llseek,
2078 .read = shmem_file_read,
2079 .write = shmem_file_write,
2080 .fsync = simple_sync_file,
2081 .sendfile = shmem_file_sendfile,
2082#endif
2083};
2084
2085static struct inode_operations shmem_inode_operations = {
2086 .truncate = shmem_truncate,
2087 .setattr = shmem_notify_change,
1da177e4
LT
2088};
2089
2090static struct inode_operations shmem_dir_inode_operations = {
2091#ifdef CONFIG_TMPFS
2092 .create = shmem_create,
2093 .lookup = simple_lookup,
2094 .link = shmem_link,
2095 .unlink = shmem_unlink,
2096 .symlink = shmem_symlink,
2097 .mkdir = shmem_mkdir,
2098 .rmdir = shmem_rmdir,
2099 .mknod = shmem_mknod,
2100 .rename = shmem_rename,
1da177e4
LT
2101#endif
2102};
2103
2104static struct super_operations shmem_ops = {
2105 .alloc_inode = shmem_alloc_inode,
2106 .destroy_inode = shmem_destroy_inode,
2107#ifdef CONFIG_TMPFS
2108 .statfs = shmem_statfs,
2109 .remount_fs = shmem_remount_fs,
2110#endif
2111 .delete_inode = shmem_delete_inode,
2112 .drop_inode = generic_delete_inode,
2113 .put_super = shmem_put_super,
2114};
2115
2116static struct vm_operations_struct shmem_vm_ops = {
2117 .nopage = shmem_nopage,
2118 .populate = shmem_populate,
2119#ifdef CONFIG_NUMA
2120 .set_policy = shmem_set_policy,
2121 .get_policy = shmem_get_policy,
2122#endif
2123};
2124
2125
1da177e4
LT
2126static struct super_block *shmem_get_sb(struct file_system_type *fs_type,
2127 int flags, const char *dev_name, void *data)
2128{
2129 return get_sb_nodev(fs_type, flags, data, shmem_fill_super);
2130}
2131
2132static struct file_system_type tmpfs_fs_type = {
2133 .owner = THIS_MODULE,
2134 .name = "tmpfs",
2135 .get_sb = shmem_get_sb,
2136 .kill_sb = kill_litter_super,
2137};
2138static struct vfsmount *shm_mnt;
2139
2140static int __init init_tmpfs(void)
2141{
2142 int error;
2143
2144 error = init_inodecache();
2145 if (error)
2146 goto out3;
2147
2148 error = register_filesystem(&tmpfs_fs_type);
2149 if (error) {
2150 printk(KERN_ERR "Could not register tmpfs\n");
2151 goto out2;
2152 }
2153#ifdef CONFIG_TMPFS
2154 devfs_mk_dir("shm");
2155#endif
2156 shm_mnt = do_kern_mount(tmpfs_fs_type.name, MS_NOUSER,
2157 tmpfs_fs_type.name, NULL);
2158 if (IS_ERR(shm_mnt)) {
2159 error = PTR_ERR(shm_mnt);
2160 printk(KERN_ERR "Could not kern_mount tmpfs\n");
2161 goto out1;
2162 }
2163 return 0;
2164
2165out1:
2166 unregister_filesystem(&tmpfs_fs_type);
2167out2:
2168 destroy_inodecache();
2169out3:
2170 shm_mnt = ERR_PTR(error);
2171 return error;
2172}
2173module_init(init_tmpfs)
2174
2175/*
2176 * shmem_file_setup - get an unlinked file living in tmpfs
2177 *
2178 * @name: name for dentry (to be seen in /proc/<pid>/maps
2179 * @size: size to be set for the file
2180 *
2181 */
2182struct file *shmem_file_setup(char *name, loff_t size, unsigned long flags)
2183{
2184 int error;
2185 struct file *file;
2186 struct inode *inode;
2187 struct dentry *dentry, *root;
2188 struct qstr this;
2189
2190 if (IS_ERR(shm_mnt))
2191 return (void *)shm_mnt;
2192
2193 if (size < 0 || size > SHMEM_MAX_BYTES)
2194 return ERR_PTR(-EINVAL);
2195
2196 if (shmem_acct_size(flags, size))
2197 return ERR_PTR(-ENOMEM);
2198
2199 error = -ENOMEM;
2200 this.name = name;
2201 this.len = strlen(name);
2202 this.hash = 0; /* will go */
2203 root = shm_mnt->mnt_root;
2204 dentry = d_alloc(root, &this);
2205 if (!dentry)
2206 goto put_memory;
2207
2208 error = -ENFILE;
2209 file = get_empty_filp();
2210 if (!file)
2211 goto put_dentry;
2212
2213 error = -ENOSPC;
2214 inode = shmem_get_inode(root->d_sb, S_IFREG | S_IRWXUGO, 0);
2215 if (!inode)
2216 goto close_file;
2217
2218 SHMEM_I(inode)->flags = flags & VM_ACCOUNT;
2219 d_instantiate(dentry, inode);
2220 inode->i_size = size;
2221 inode->i_nlink = 0; /* It is unlinked */
2222 file->f_vfsmnt = mntget(shm_mnt);
2223 file->f_dentry = dentry;
2224 file->f_mapping = inode->i_mapping;
2225 file->f_op = &shmem_file_operations;
2226 file->f_mode = FMODE_WRITE | FMODE_READ;
2227 return file;
2228
2229close_file:
2230 put_filp(file);
2231put_dentry:
2232 dput(dentry);
2233put_memory:
2234 shmem_unacct_size(flags, size);
2235 return ERR_PTR(error);
2236}
2237
2238/*
2239 * shmem_zero_setup - setup a shared anonymous mapping
2240 *
2241 * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
2242 */
2243int shmem_zero_setup(struct vm_area_struct *vma)
2244{
2245 struct file *file;
2246 loff_t size = vma->vm_end - vma->vm_start;
2247
2248 file = shmem_file_setup("dev/zero", size, vma->vm_flags);
2249 if (IS_ERR(file))
2250 return PTR_ERR(file);
2251
2252 if (vma->vm_file)
2253 fput(vma->vm_file);
2254 vma->vm_file = file;
2255 vma->vm_ops = &shmem_vm_ops;
2256 return 0;
2257}