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

42 43
#define RAMFS_DEFAULT_MODE	0755

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

static struct backing_dev_info ramfs_backing_dev_info = {
48
	.name		= "ramfs",
L
Linus Torvalds 已提交
49
	.ra_pages	= 0,	/* No readahead */
50
	.capabilities	= BDI_CAP_NO_ACCT_AND_WRITEBACK |
L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59 60
			  BDI_CAP_MAP_DIRECT | BDI_CAP_MAP_COPY |
			  BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP | BDI_CAP_EXEC_MAP,
};

struct inode *ramfs_get_inode(struct super_block *sb, int mode, dev_t dev)
{
	struct inode * inode = new_inode(sb);

	if (inode) {
		inode->i_mode = mode;
61 62
		inode->i_uid = current_fsuid();
		inode->i_gid = current_fsgid();
L
Linus Torvalds 已提交
63 64
		inode->i_mapping->a_ops = &ramfs_aops;
		inode->i_mapping->backing_dev_info = &ramfs_backing_dev_info;
65
		mapping_set_gfp_mask(inode->i_mapping, GFP_HIGHUSER);
66
		mapping_set_unevictable(inode->i_mapping);
L
Linus Torvalds 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80
		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) */
81
			inc_nlink(inode);
L
Linus Torvalds 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
			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
ramfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
{
	struct inode * inode = ramfs_get_inode(dir->i_sb, mode, dev);
	int error = -ENOSPC;

	if (inode) {
		if (dir->i_mode & S_ISGID) {
			inode->i_gid = dir->i_gid;
			if (S_ISDIR(mode))
				inode->i_mode |= S_ISGID;
		}
		d_instantiate(dentry, inode);
		dget(dentry);	/* Extra count - pin the dentry in core */
		error = 0;
110
		dir->i_mtime = dir->i_ctime = CURRENT_TIME;
L
Linus Torvalds 已提交
111 112 113 114 115 116 117 118
	}
	return error;
}

static int ramfs_mkdir(struct inode * dir, struct dentry * dentry, int mode)
{
	int retval = ramfs_mknod(dir, dentry, mode | S_IFDIR, 0);
	if (!retval)
119
		inc_nlink(dir);
L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
	return retval;
}

static int ramfs_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd)
{
	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;

	inode = ramfs_get_inode(dir->i_sb, S_IFLNK|S_IRWXUGO, 0);
	if (inode) {
		int l = strlen(symname)+1;
		error = page_symlink(inode, symname, l);
		if (!error) {
			if (dir->i_mode & S_ISGID)
				inode->i_gid = dir->i_gid;
			d_instantiate(dentry, inode);
			dget(dentry);
142
			dir->i_mtime = dir->i_ctime = CURRENT_TIME;
L
Linus Torvalds 已提交
143 144 145 146 147 148
		} else
			iput(inode);
	}
	return error;
}

149
static const struct inode_operations ramfs_dir_inode_operations = {
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157 158 159 160
	.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,
};

161
static const struct super_operations ramfs_ops = {
L
Linus Torvalds 已提交
162 163
	.statfs		= simple_statfs,
	.drop_inode	= generic_delete_inode,
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
	.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 已提交
183 184
};

185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
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;
205 206 207 208 209 210
		/*
		 * 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.
		 */
211 212 213 214 215 216
		}
	}

	return 0;
}

217
int ramfs_fill_super(struct super_block *sb, void *data, int silent)
L
Linus Torvalds 已提交
218
{
219 220 221 222 223 224 225 226
	struct ramfs_fs_info *fsi;
	struct inode *inode = NULL;
	struct dentry *root;
	int err;

	save_mount_options(sb, data);

	fsi = kzalloc(sizeof(struct ramfs_fs_info), GFP_KERNEL);
227
	sb->s_fs_info = fsi;
228 229 230 231 232 233 234 235
	if (!fsi) {
		err = -ENOMEM;
		goto fail;
	}

	err = ramfs_parse_options(data, &fsi->mount_opts);
	if (err)
		goto fail;
L
Linus Torvalds 已提交
236

237 238 239 240 241 242 243
	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;

244 245 246 247 248
	inode = ramfs_get_inode(sb, S_IFDIR | fsi->mount_opts.mode, 0);
	if (!inode) {
		err = -ENOMEM;
		goto fail;
	}
L
Linus Torvalds 已提交
249 250

	root = d_alloc_root(inode);
251
	sb->s_root = root;
L
Linus Torvalds 已提交
252
	if (!root) {
253 254
		err = -ENOMEM;
		goto fail;
L
Linus Torvalds 已提交
255
	}
256

L
Linus Torvalds 已提交
257
	return 0;
258 259
fail:
	kfree(fsi);
260
	sb->s_fs_info = NULL;
261 262
	iput(inode);
	return err;
L
Linus Torvalds 已提交
263 264
}

265 266
int ramfs_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *data, struct vfsmount *mnt)
L
Linus Torvalds 已提交
267
{
268
	return get_sb_nodev(fs_type, flags, data, ramfs_fill_super, mnt);
L
Linus Torvalds 已提交
269 270
}

271 272
static int rootfs_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *data, struct vfsmount *mnt)
L
Linus Torvalds 已提交
273
{
274 275
	return get_sb_nodev(fs_type, flags|MS_NOUSER, data, ramfs_fill_super,
			    mnt);
L
Linus Torvalds 已提交
276 277
}

278 279 280 281 282 283
static void ramfs_kill_sb(struct super_block *sb)
{
	kfree(sb->s_fs_info);
	kill_litter_super(sb);
}

L
Linus Torvalds 已提交
284 285 286
static struct file_system_type ramfs_fs_type = {
	.name		= "ramfs",
	.get_sb		= ramfs_get_sb,
287
	.kill_sb	= ramfs_kill_sb,
L
Linus Torvalds 已提交
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
};
static struct file_system_type rootfs_fs_type = {
	.name		= "rootfs",
	.get_sb		= rootfs_get_sb,
	.kill_sb	= kill_litter_super,
};

static int __init init_ramfs_fs(void)
{
	return register_filesystem(&ramfs_fs_type);
}

static void __exit exit_ramfs_fs(void)
{
	unregister_filesystem(&ramfs_fs_type);
}

module_init(init_ramfs_fs)
module_exit(exit_ramfs_fs)

int __init init_rootfs(void)
{
P
Peter Zijlstra 已提交
310 311 312 313 314 315 316 317 318 319 320
	int err;

	err = bdi_init(&ramfs_backing_dev_info);
	if (err)
		return err;

	err = register_filesystem(&rootfs_fs_type);
	if (err)
		bdi_destroy(&ramfs_backing_dev_info);

	return err;
L
Linus Torvalds 已提交
321 322 323
}

MODULE_LICENSE("GPL");