Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * tiny-shmem.c: simple shmemfs and tmpfs using ramfs code |
| 3 | * |
| 4 | * Matt Mackall <mpm@selenic.com> January, 2004 |
| 5 | * derived from mm/shmem.c and fs/ramfs/inode.c |
| 6 | * |
| 7 | * This is intended for small system where the benefits of the full |
| 8 | * shmem code (swap-backed and resource-limited) are outweighed by |
| 9 | * their complexity. On systems without swap this code should be |
| 10 | * effectively equivalent, but much lighter weight. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/fs.h> |
| 14 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/vfs.h> |
| 16 | #include <linux/mount.h> |
| 17 | #include <linux/file.h> |
| 18 | #include <linux/mm.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/swap.h> |
| 21 | #include <linux/ramfs.h> |
| 22 | |
| 23 | static struct file_system_type tmpfs_fs_type = { |
| 24 | .name = "tmpfs", |
| 25 | .get_sb = ramfs_get_sb, |
| 26 | .kill_sb = kill_litter_super, |
| 27 | }; |
| 28 | |
| 29 | static struct vfsmount *shm_mnt; |
| 30 | |
| 31 | static int __init init_tmpfs(void) |
| 32 | { |
Matt Mackall | 5d57bd3 | 2005-10-30 15:03:18 -0800 | [diff] [blame] | 33 | BUG_ON(register_filesystem(&tmpfs_fs_type) != 0); |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | shm_mnt = kern_mount(&tmpfs_fs_type); |
Matt Mackall | 5d57bd3 | 2005-10-30 15:03:18 -0800 | [diff] [blame] | 36 | BUG_ON(IS_ERR(shm_mnt)); |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | return 0; |
| 39 | } |
| 40 | module_init(init_tmpfs) |
| 41 | |
Randy Dunlap | 4671181 | 2008-03-19 17:00:41 -0700 | [diff] [blame] | 42 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | * shmem_file_setup - get an unlinked file living in tmpfs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | * @name: name for dentry (to be seen in /proc/<pid>/maps |
| 45 | * @size: size to be set for the file |
Randy Dunlap | 4671181 | 2008-03-19 17:00:41 -0700 | [diff] [blame] | 46 | * @flags: vm_flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | */ |
| 48 | struct file *shmem_file_setup(char *name, loff_t size, unsigned long flags) |
| 49 | { |
| 50 | int error; |
| 51 | struct file *file; |
| 52 | struct inode *inode; |
| 53 | struct dentry *dentry, *root; |
| 54 | struct qstr this; |
| 55 | |
| 56 | if (IS_ERR(shm_mnt)) |
| 57 | return (void *)shm_mnt; |
| 58 | |
| 59 | error = -ENOMEM; |
| 60 | this.name = name; |
| 61 | this.len = strlen(name); |
| 62 | this.hash = 0; /* will go */ |
| 63 | root = shm_mnt->mnt_root; |
| 64 | dentry = d_alloc(root, &this); |
| 65 | if (!dentry) |
| 66 | goto put_memory; |
| 67 | |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 68 | error = -ENFILE; |
Nick Piggin | db203d5 | 2008-09-22 13:57:50 -0700 | [diff] [blame] | 69 | file = get_empty_filp(); |
Dave Hansen | ce8d2cd | 2007-10-16 23:31:13 -0700 | [diff] [blame] | 70 | if (!file) |
| 71 | goto put_dentry; |
David Howells | b0e1519 | 2006-01-06 00:11:42 -0800 | [diff] [blame] | 72 | |
Nick Piggin | db203d5 | 2008-09-22 13:57:50 -0700 | [diff] [blame] | 73 | error = -ENOSPC; |
| 74 | inode = ramfs_get_inode(root->d_sb, S_IFREG | S_IRWXUGO, 0); |
| 75 | if (!inode) |
David Howells | b0e1519 | 2006-01-06 00:11:42 -0800 | [diff] [blame] | 76 | goto close_file; |
| 77 | |
Nick Piggin | db203d5 | 2008-09-22 13:57:50 -0700 | [diff] [blame] | 78 | d_instantiate(dentry, inode); |
| 79 | inode->i_size = size; |
| 80 | inode->i_nlink = 0; /* It is unlinked */ |
| 81 | init_file(file, shm_mnt, dentry, FMODE_WRITE | FMODE_READ, |
| 82 | &ramfs_file_operations); |
Nick Piggin | 4b19de6 | 2008-10-02 14:50:16 -0700 | [diff] [blame] | 83 | |
| 84 | #ifndef CONFIG_MMU |
| 85 | error = ramfs_nommu_expand_for_mapping(inode, size); |
| 86 | if (error) |
| 87 | goto close_file; |
| 88 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | return file; |
| 90 | |
| 91 | close_file: |
| 92 | put_filp(file); |
| 93 | put_dentry: |
| 94 | dput(dentry); |
| 95 | put_memory: |
| 96 | return ERR_PTR(error); |
| 97 | } |
| 98 | |
Randy Dunlap | 4671181 | 2008-03-19 17:00:41 -0700 | [diff] [blame] | 99 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | * shmem_zero_setup - setup a shared anonymous mapping |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | * @vma: the vma to be mmapped is prepared by do_mmap_pgoff |
| 102 | */ |
| 103 | int shmem_zero_setup(struct vm_area_struct *vma) |
| 104 | { |
| 105 | struct file *file; |
| 106 | loff_t size = vma->vm_end - vma->vm_start; |
| 107 | |
| 108 | file = shmem_file_setup("dev/zero", size, vma->vm_flags); |
| 109 | if (IS_ERR(file)) |
| 110 | return PTR_ERR(file); |
| 111 | |
| 112 | if (vma->vm_file) |
| 113 | fput(vma->vm_file); |
| 114 | vma->vm_file = file; |
| 115 | vma->vm_ops = &generic_file_vm_ops; |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | int shmem_unuse(swp_entry_t entry, struct page *page) |
| 120 | { |
| 121 | return 0; |
| 122 | } |
David Howells | b0e1519 | 2006-01-06 00:11:42 -0800 | [diff] [blame] | 123 | |
David Howells | b0e1519 | 2006-01-06 00:11:42 -0800 | [diff] [blame] | 124 | #ifndef CONFIG_MMU |
| 125 | unsigned long shmem_get_unmapped_area(struct file *file, |
| 126 | unsigned long addr, |
| 127 | unsigned long len, |
| 128 | unsigned long pgoff, |
| 129 | unsigned long flags) |
| 130 | { |
| 131 | return ramfs_nommu_get_unmapped_area(file, addr, len, pgoff, flags); |
| 132 | } |
| 133 | #endif |