2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* 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>
|
2006-02-24 22:04:23 +01:00
|
|
|
#include <linux/time.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/backing-dev.h>
|
|
|
|
#include <linux/ramfs.h>
|
Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
they don't need sched.h
b) sched.h stops being dependency for significant number of files:
on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
after patch it's only 3744 (-8.3%).
Cross-compile tested on
all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
alpha alpha-up
arm
i386 i386-up i386-defconfig i386-allnoconfig
ia64 ia64-up
m68k
mips
parisc parisc-up
powerpc powerpc-up
s390 s390-up
sparc sparc-up
sparc64 sparc64-up
um-x86_64
x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-20 23:22:52 +02:00
|
|
|
#include <linux/sched.h>
|
2009-04-01 00:24:34 +02:00
|
|
|
#include <linux/parser.h>
|
2009-09-23 01:45:53 +02:00
|
|
|
#include <linux/magic.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 09:04:11 +01:00
|
|
|
#include <linux/slab.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/uaccess.h>
|
[PATCH] NOMMU: Provide shared-writable mmap support on ramfs
The attached patch makes ramfs support shared-writable mmaps by:
(1) Attempting to perform a contiguous block allocation to the requested size
when truncate attempts to increase the file from zero size, such as
happens when:
fd = shm_open("/file/on/ramfs", ...):
ftruncate(fd, size_requested);
addr = mmap(NULL, subsize, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_SHARED,
fd, offset);
(2) Permitting any shared-writable mapping over any contiguous set of extant
pages. get_unmapped_area() will return the address into the actual ramfs
pages. The mapping may start anywhere and be of any size, but may not go
over the end of file. Multiple mappings may overlap in any way.
(3) Not permitting a file to be shrunk if it would truncate any shared
mappings (private mappings are copied).
Thus this patch provides support for POSIX shared memory on NOMMU kernels,
with certain limitations such as there being a large enough block of pages
available to support the allocation and it only working on directly mappable
filesystems.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-01-06 09:11:41 +01:00
|
|
|
#include "internal.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-04-01 00:24:34 +02:00
|
|
|
#define RAMFS_DEFAULT_MODE 0755
|
|
|
|
|
2007-02-12 09:55:41 +01:00
|
|
|
static const struct super_operations ramfs_ops;
|
2007-02-12 09:55:40 +01:00
|
|
|
static const struct inode_operations ramfs_dir_inode_operations;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
static struct backing_dev_info ramfs_backing_dev_info = {
|
2009-06-12 14:45:52 +02:00
|
|
|
.name = "ramfs",
|
2005-04-17 00:20:36 +02:00
|
|
|
.ra_pages = 0, /* No readahead */
|
2008-04-30 09:54:37 +02:00
|
|
|
.capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK |
|
2005-04-17 00:20:36 +02:00
|
|
|
BDI_CAP_MAP_DIRECT | BDI_CAP_MAP_COPY |
|
|
|
|
BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP | BDI_CAP_EXEC_MAP,
|
|
|
|
};
|
|
|
|
|
2010-03-04 15:32:18 +01:00
|
|
|
struct inode *ramfs_get_inode(struct super_block *sb,
|
|
|
|
const struct inode *dir, int mode, dev_t dev)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct inode * inode = new_inode(sb);
|
|
|
|
|
|
|
|
if (inode) {
|
2010-10-23 17:19:54 +02:00
|
|
|
inode->i_ino = get_next_ino();
|
2010-03-04 15:32:18 +01:00
|
|
|
inode_init_owner(inode, dir, mode);
|
2005-04-17 00:20:36 +02:00
|
|
|
inode->i_mapping->a_ops = &ramfs_aops;
|
|
|
|
inode->i_mapping->backing_dev_info = &ramfs_backing_dev_info;
|
2007-07-17 13:03:05 +02:00
|
|
|
mapping_set_gfp_mask(inode->i_mapping, GFP_HIGHUSER);
|
2008-10-19 05:26:42 +02:00
|
|
|
mapping_set_unevictable(inode->i_mapping);
|
2005-04-17 00:20:36 +02:00
|
|
|
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) */
|
2006-10-01 08:29:04 +02:00
|
|
|
inc_nlink(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
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)
|
|
|
|
{
|
2010-03-04 15:32:18 +01:00
|
|
|
struct inode * inode = ramfs_get_inode(dir->i_sb, dir, mode, dev);
|
2005-04-17 00:20:36 +02:00
|
|
|
int error = -ENOSPC;
|
|
|
|
|
|
|
|
if (inode) {
|
|
|
|
d_instantiate(dentry, inode);
|
|
|
|
dget(dentry); /* Extra count - pin the dentry in core */
|
|
|
|
error = 0;
|
2006-02-24 22:04:23 +01:00
|
|
|
dir->i_mtime = dir->i_ctime = CURRENT_TIME;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
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)
|
2006-10-01 08:29:04 +02:00
|
|
|
inc_nlink(dir);
|
2005-04-17 00:20:36 +02:00
|
|
|
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;
|
|
|
|
|
2010-03-04 15:32:18 +01:00
|
|
|
inode = ramfs_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (inode) {
|
|
|
|
int l = strlen(symname)+1;
|
|
|
|
error = page_symlink(inode, symname, l);
|
|
|
|
if (!error) {
|
|
|
|
d_instantiate(dentry, inode);
|
|
|
|
dget(dentry);
|
2006-03-07 00:42:56 +01:00
|
|
|
dir->i_mtime = dir->i_ctime = CURRENT_TIME;
|
2005-04-17 00:20:36 +02:00
|
|
|
} else
|
|
|
|
iput(inode);
|
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2007-02-12 09:55:40 +01:00
|
|
|
static const struct inode_operations ramfs_dir_inode_operations = {
|
2005-04-17 00:20:36 +02:00
|
|
|
.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,
|
|
|
|
};
|
|
|
|
|
2007-02-12 09:55:41 +01:00
|
|
|
static const struct super_operations ramfs_ops = {
|
2005-04-17 00:20:36 +02:00
|
|
|
.statfs = simple_statfs,
|
|
|
|
.drop_inode = generic_delete_inode,
|
2009-04-01 00:24:34 +02:00
|
|
|
.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;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2009-04-01 00:24:34 +02:00
|
|
|
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;
|
2009-06-14 23:56:48 +02:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2009-04-01 00:24:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-16 21:55:21 +01:00
|
|
|
int ramfs_fill_super(struct super_block *sb, void *data, int silent)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2009-04-01 00:24:34 +02:00
|
|
|
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);
|
2009-04-07 08:16:50 +02:00
|
|
|
sb->s_fs_info = fsi;
|
2009-04-01 00:24:34 +02:00
|
|
|
if (!fsi) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = ramfs_parse_options(data, &fsi->mount_opts);
|
|
|
|
if (err)
|
|
|
|
goto fail;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-04-07 08:16:50 +02:00
|
|
|
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;
|
|
|
|
|
2010-03-04 15:32:18 +01:00
|
|
|
inode = ramfs_get_inode(sb, NULL, S_IFDIR | fsi->mount_opts.mode, 0);
|
2009-04-01 00:24:34 +02:00
|
|
|
if (!inode) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
root = d_alloc_root(inode);
|
2009-04-07 08:16:50 +02:00
|
|
|
sb->s_root = root;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!root) {
|
2009-04-01 00:24:34 +02:00
|
|
|
err = -ENOMEM;
|
|
|
|
goto fail;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2009-04-07 08:16:50 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
2009-04-01 00:24:34 +02:00
|
|
|
fail:
|
|
|
|
kfree(fsi);
|
2009-04-07 08:16:50 +02:00
|
|
|
sb->s_fs_info = NULL;
|
2009-04-01 00:24:34 +02:00
|
|
|
iput(inode);
|
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2010-07-25 09:46:36 +02:00
|
|
|
struct dentry *ramfs_mount(struct file_system_type *fs_type,
|
|
|
|
int flags, const char *dev_name, void *data)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2010-07-25 09:46:36 +02:00
|
|
|
return mount_nodev(fs_type, flags, data, ramfs_fill_super);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2010-07-25 09:46:36 +02:00
|
|
|
static struct dentry *rootfs_mount(struct file_system_type *fs_type,
|
|
|
|
int flags, const char *dev_name, void *data)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2010-07-25 09:46:36 +02:00
|
|
|
return mount_nodev(fs_type, flags|MS_NOUSER, data, ramfs_fill_super);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2009-04-01 00:24:34 +02:00
|
|
|
static void ramfs_kill_sb(struct super_block *sb)
|
|
|
|
{
|
|
|
|
kfree(sb->s_fs_info);
|
|
|
|
kill_litter_super(sb);
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
static struct file_system_type ramfs_fs_type = {
|
|
|
|
.name = "ramfs",
|
2010-07-25 09:46:36 +02:00
|
|
|
.mount = ramfs_mount,
|
2009-04-01 00:24:34 +02:00
|
|
|
.kill_sb = ramfs_kill_sb,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
static struct file_system_type rootfs_fs_type = {
|
|
|
|
.name = "rootfs",
|
2010-07-25 09:46:36 +02:00
|
|
|
.mount = rootfs_mount,
|
2005-04-17 00:20:36 +02:00
|
|
|
.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)
|
|
|
|
{
|
2007-10-17 08:25:46 +02:00
|
|
|
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;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|