inode.c 6.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * Resizable simple ram filesystem for Linux.
 *
 * Copyright (C) 2000 Linus Torvalds.
 *               2000 Transmeta Corp.
 *
 * Usage limits added by David Gibson, Linuxcare Australia.
 * This file is released under the GPL.
 */

/*
 * NOTE! This filesystem is probably most useful
 * not as a real filesystem, but as an example of
 * how virtual filesystems can be written.
 *
 * It doesn't get much simpler than this. Consider
 * that this file implements the full semantics of
 * a POSIX-compliant read-write filesystem.
 *
 * Note in particular how the filesystem does not
 * need to implement any data structures of its own
 * to keep track of the virtual data: using the VFS
 * caches is sufficient.
 */

#include <linux/fs.h>
#include <linux/pagemap.h>
#include <linux/highmem.h>
29
#include <linux/time.h>
L
Linus Torvalds 已提交
30 31 32 33
#include <linux/init.h>
#include <linux/string.h>
#include <linux/backing-dev.h>
#include <linux/ramfs.h>
A
Alexey Dobriyan 已提交
34
#include <linux/sched.h>
35
#include <linux/parser.h>
36
#include <linux/magic.h>
37
#include <linux/slab.h>
L
Linus Torvalds 已提交
38
#include <asm/uaccess.h>
39
#include "internal.h"
L
Linus Torvalds 已提交
40

41 42
#define RAMFS_DEFAULT_MODE	0755

43
static const struct super_operations ramfs_ops;
44
static const struct inode_operations ramfs_dir_inode_operations;
L
Linus Torvalds 已提交
45

A
Axel Lin 已提交
46 47 48 49 50 51 52
static const struct address_space_operations ramfs_aops = {
	.readpage	= simple_readpage,
	.write_begin	= simple_write_begin,
	.write_end	= simple_write_end,
	.set_page_dirty	= __set_page_dirty_no_writeback,
};

53
struct inode *ramfs_get_inode(struct super_block *sb,
A
Al Viro 已提交
54
				const struct inode *dir, umode_t mode, dev_t dev)
L
Linus Torvalds 已提交
55 56 57 58
{
	struct inode * inode = new_inode(sb);

	if (inode) {
59
		inode->i_ino = get_next_ino();
60
		inode_init_owner(inode, dir, mode);
L
Linus Torvalds 已提交
61
		inode->i_mapping->a_ops = &ramfs_aops;
62
		inode->i_mapping->backing_dev_info = &noop_backing_dev_info;
63
		mapping_set_gfp_mask(inode->i_mapping, GFP_HIGHUSER);
64
		mapping_set_unevictable(inode->i_mapping);
L
Linus Torvalds 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78
		inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
		switch (mode & S_IFMT) {
		default:
			init_special_inode(inode, mode, dev);
			break;
		case S_IFREG:
			inode->i_op = &ramfs_file_inode_operations;
			inode->i_fop = &ramfs_file_operations;
			break;
		case S_IFDIR:
			inode->i_op = &ramfs_dir_inode_operations;
			inode->i_fop = &simple_dir_operations;

			/* directory inodes start off with i_nlink == 2 (for "." entry) */
79
			inc_nlink(inode);
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93
			break;
		case S_IFLNK:
			inode->i_op = &page_symlink_inode_operations;
			break;
		}
	}
	return inode;
}

/*
 * File creation. Allocate an inode, and we're done..
 */
/* SMP-safe */
static int
A
Al Viro 已提交
94
ramfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
L
Linus Torvalds 已提交
95
{
96
	struct inode * inode = ramfs_get_inode(dir->i_sb, dir, mode, dev);
L
Linus Torvalds 已提交
97 98 99 100 101 102
	int error = -ENOSPC;

	if (inode) {
		d_instantiate(dentry, inode);
		dget(dentry);	/* Extra count - pin the dentry in core */
		error = 0;
103
		dir->i_mtime = dir->i_ctime = CURRENT_TIME;
L
Linus Torvalds 已提交
104 105 106 107
	}
	return error;
}

108
static int ramfs_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
L
Linus Torvalds 已提交
109 110 111
{
	int retval = ramfs_mknod(dir, dentry, mode | S_IFDIR, 0);
	if (!retval)
112
		inc_nlink(dir);
L
Linus Torvalds 已提交
113 114 115
	return retval;
}

A
Al Viro 已提交
116
static int ramfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, bool excl)
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124 125
{
	return ramfs_mknod(dir, dentry, mode | S_IFREG, 0);
}

static int ramfs_symlink(struct inode * dir, struct dentry *dentry, const char * symname)
{
	struct inode *inode;
	int error = -ENOSPC;

126
	inode = ramfs_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0);
L
Linus Torvalds 已提交
127 128 129 130 131 132
	if (inode) {
		int l = strlen(symname)+1;
		error = page_symlink(inode, symname, l);
		if (!error) {
			d_instantiate(dentry, inode);
			dget(dentry);
133
			dir->i_mtime = dir->i_ctime = CURRENT_TIME;
L
Linus Torvalds 已提交
134 135 136 137 138 139
		} else
			iput(inode);
	}
	return error;
}

140
static const struct inode_operations ramfs_dir_inode_operations = {
L
Linus Torvalds 已提交
141 142 143 144 145 146 147 148 149 150 151
	.create		= ramfs_create,
	.lookup		= simple_lookup,
	.link		= simple_link,
	.unlink		= simple_unlink,
	.symlink	= ramfs_symlink,
	.mkdir		= ramfs_mkdir,
	.rmdir		= simple_rmdir,
	.mknod		= ramfs_mknod,
	.rename		= simple_rename,
};

152
static const struct super_operations ramfs_ops = {
L
Linus Torvalds 已提交
153 154
	.statfs		= simple_statfs,
	.drop_inode	= generic_delete_inode,
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	.show_options	= generic_show_options,
};

struct ramfs_mount_opts {
	umode_t mode;
};

enum {
	Opt_mode,
	Opt_err
};

static const match_table_t tokens = {
	{Opt_mode, "mode=%o"},
	{Opt_err, NULL}
};

struct ramfs_fs_info {
	struct ramfs_mount_opts mount_opts;
L
Linus Torvalds 已提交
174 175
};

176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
static int ramfs_parse_options(char *data, struct ramfs_mount_opts *opts)
{
	substring_t args[MAX_OPT_ARGS];
	int option;
	int token;
	char *p;

	opts->mode = RAMFS_DEFAULT_MODE;

	while ((p = strsep(&data, ",")) != NULL) {
		if (!*p)
			continue;

		token = match_token(p, tokens, args);
		switch (token) {
		case Opt_mode:
			if (match_octal(&args[0], &option))
				return -EINVAL;
			opts->mode = option & S_IALLUGO;
			break;
196 197 198 199 200 201
		/*
		 * We might like to report bad mount options here;
		 * but traditionally ramfs has ignored all mount options,
		 * and as it is used as a !CONFIG_SHMEM simple substitute
		 * for tmpfs, better continue to ignore other mount options.
		 */
202 203 204 205 206 207
		}
	}

	return 0;
}

208
int ramfs_fill_super(struct super_block *sb, void *data, int silent)
L
Linus Torvalds 已提交
209
{
210
	struct ramfs_fs_info *fsi;
A
Al Viro 已提交
211
	struct inode *inode;
212 213 214 215 216
	int err;

	save_mount_options(sb, data);

	fsi = kzalloc(sizeof(struct ramfs_fs_info), GFP_KERNEL);
217
	sb->s_fs_info = fsi;
A
Al Viro 已提交
218 219
	if (!fsi)
		return -ENOMEM;
220 221 222

	err = ramfs_parse_options(data, &fsi->mount_opts);
	if (err)
A
Al Viro 已提交
223
		return err;
L
Linus Torvalds 已提交
224

225 226 227 228 229 230 231
	sb->s_maxbytes		= MAX_LFS_FILESIZE;
	sb->s_blocksize		= PAGE_CACHE_SIZE;
	sb->s_blocksize_bits	= PAGE_CACHE_SHIFT;
	sb->s_magic		= RAMFS_MAGIC;
	sb->s_op		= &ramfs_ops;
	sb->s_time_gran		= 1;

232
	inode = ramfs_get_inode(sb, NULL, S_IFDIR | fsi->mount_opts.mode, 0);
233
	sb->s_root = d_make_root(inode);
A
Al Viro 已提交
234 235
	if (!sb->s_root)
		return -ENOMEM;
236

L
Linus Torvalds 已提交
237 238 239
	return 0;
}

A
Al Viro 已提交
240 241
struct dentry *ramfs_mount(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *data)
L
Linus Torvalds 已提交
242
{
A
Al Viro 已提交
243
	return mount_nodev(fs_type, flags, data, ramfs_fill_super);
L
Linus Torvalds 已提交
244 245
}

246 247 248 249 250 251
static void ramfs_kill_sb(struct super_block *sb)
{
	kfree(sb->s_fs_info);
	kill_litter_super(sb);
}

L
Linus Torvalds 已提交
252 253
static struct file_system_type ramfs_fs_type = {
	.name		= "ramfs",
A
Al Viro 已提交
254
	.mount		= ramfs_mount,
255
	.kill_sb	= ramfs_kill_sb,
256
	.fs_flags	= FS_USERNS_MOUNT,
L
Linus Torvalds 已提交
257 258
};

259
int __init init_ramfs_fs(void)
L
Linus Torvalds 已提交
260
{
261 262 263 264
	static unsigned long once;

	if (test_and_set_bit(0, &once))
		return 0;
265
	return register_filesystem(&ramfs_fs_type);
L
Linus Torvalds 已提交
266
}
267
fs_initcall(init_ramfs_fs);