blob: bc66d0173e3300b29da04ae6a51519097caf0c75 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Resizable simple ram filesystem for Linux.
3 *
4 * Copyright (C) 2000 Linus Torvalds.
5 * 2000 Transmeta Corp.
6 *
7 * Usage limits added by David Gibson, Linuxcare Australia.
8 * This file is released under the GPL.
9 */
10
11/*
12 * NOTE! This filesystem is probably most useful
13 * not as a real filesystem, but as an example of
14 * how virtual filesystems can be written.
15 *
16 * It doesn't get much simpler than this. Consider
17 * that this file implements the full semantics of
18 * a POSIX-compliant read-write filesystem.
19 *
20 * Note in particular how the filesystem does not
21 * need to implement any data structures of its own
22 * to keep track of the virtual data: using the VFS
23 * caches is sufficient.
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/fs.h>
27#include <linux/pagemap.h>
28#include <linux/highmem.h>
Andrew Morton8dde0502006-02-24 13:04:23 -080029#include <linux/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/init.h>
31#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/backing-dev.h>
33#include <linux/ramfs.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040034#include <linux/sched.h>
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -070035#include <linux/parser.h>
maximilian attemsa7e31082009-09-22 16:45:53 -070036#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080038#include <linux/uaccess.h>
David Howellsf3235622019-03-25 16:38:31 +000039#include <linux/fs_context.h>
40#include <linux/fs_parser.h>
Christoph Hellwige41d12f2021-09-20 14:33:13 +020041#include <linux/seq_file.h>
David Howells642fb4d2006-01-06 00:11:41 -080042#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
David Howells604ecf42017-07-05 16:24:42 +010044struct ramfs_mount_opts {
45 umode_t mode;
46};
47
48struct ramfs_fs_info {
49 struct ramfs_mount_opts mount_opts;
50};
51
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -070052#define RAMFS_DEFAULT_MODE 0755
53
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080054static const struct super_operations ramfs_ops;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -080055static const struct inode_operations ramfs_dir_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Dmitry Monakhov454abaf2010-03-04 17:32:18 +030057struct inode *ramfs_get_inode(struct super_block *sb,
Al Viro632861f2011-07-26 03:16:55 -040058 const struct inode *dir, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 struct inode * inode = new_inode(sb);
61
62 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -040063 inode->i_ino = get_next_ino();
Christian Brauner21cb47b2021-01-21 14:19:25 +010064 inode_init_owner(&init_user_ns, inode, dir, mode);
Christoph Hellwigc1e3dbe2021-06-28 19:36:09 -070065 inode->i_mapping->a_ops = &ram_aops;
Mel Gorman769848c2007-07-17 04:03:05 -070066 mapping_set_gfp_mask(inode->i_mapping, GFP_HIGHUSER);
Lee Schermerhornba9ddf42008-10-18 20:26:42 -070067 mapping_set_unevictable(inode->i_mapping);
Deepa Dinamani078cd822016-09-14 07:48:04 -070068 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 switch (mode & S_IFMT) {
70 default:
71 init_special_inode(inode, mode, dev);
72 break;
73 case S_IFREG:
74 inode->i_op = &ramfs_file_inode_operations;
75 inode->i_fop = &ramfs_file_operations;
76 break;
77 case S_IFDIR:
78 inode->i_op = &ramfs_dir_inode_operations;
79 inode->i_fop = &simple_dir_operations;
80
81 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -070082 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 break;
84 case S_IFLNK:
85 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -050086 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 break;
88 }
89 }
90 return inode;
91}
92
93/*
94 * File creation. Allocate an inode, and we're done..
95 */
96/* SMP-safe */
97static int
Christian Brauner549c7292021-01-21 14:19:43 +010098ramfs_mknod(struct user_namespace *mnt_userns, struct inode *dir,
99 struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Dmitry Monakhov454abaf2010-03-04 17:32:18 +0300101 struct inode * inode = ramfs_get_inode(dir->i_sb, dir, mode, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int error = -ENOSPC;
103
104 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 d_instantiate(dentry, inode);
106 dget(dentry); /* Extra count - pin the dentry in core */
107 error = 0;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700108 dir->i_mtime = dir->i_ctime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110 return error;
111}
112
Christian Brauner549c7292021-01-21 14:19:43 +0100113static int ramfs_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
114 struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Christian Brauner549c7292021-01-21 14:19:43 +0100116 int retval = ramfs_mknod(&init_user_ns, dir, dentry, mode | S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (!retval)
Dave Hansend8c76e62006-09-30 23:29:04 -0700118 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return retval;
120}
121
Christian Brauner549c7292021-01-21 14:19:43 +0100122static int ramfs_create(struct user_namespace *mnt_userns, struct inode *dir,
123 struct dentry *dentry, umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Christian Brauner549c7292021-01-21 14:19:43 +0100125 return ramfs_mknod(&init_user_ns, dir, dentry, mode | S_IFREG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Christian Brauner549c7292021-01-21 14:19:43 +0100128static int ramfs_symlink(struct user_namespace *mnt_userns, struct inode *dir,
129 struct dentry *dentry, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 struct inode *inode;
132 int error = -ENOSPC;
133
Dmitry Monakhov454abaf2010-03-04 17:32:18 +0300134 inode = ramfs_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (inode) {
136 int l = strlen(symname)+1;
137 error = page_symlink(inode, symname, l);
138 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 d_instantiate(dentry, inode);
140 dget(dentry);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700141 dir->i_mtime = dir->i_ctime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 } else
143 iput(inode);
144 }
145 return error;
146}
147
Alexey Dobriyan93da4002021-02-24 12:00:51 -0800148static int ramfs_tmpfile(struct user_namespace *mnt_userns,
149 struct inode *dir, struct dentry *dentry, umode_t mode)
150{
151 struct inode *inode;
152
153 inode = ramfs_get_inode(dir->i_sb, dir, mode, 0);
154 if (!inode)
155 return -ENOSPC;
156 d_tmpfile(dentry, inode);
157 return 0;
158}
159
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800160static const struct inode_operations ramfs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 .create = ramfs_create,
162 .lookup = simple_lookup,
163 .link = simple_link,
164 .unlink = simple_unlink,
165 .symlink = ramfs_symlink,
166 .mkdir = ramfs_mkdir,
167 .rmdir = simple_rmdir,
168 .mknod = ramfs_mknod,
169 .rename = simple_rename,
Alexey Dobriyan93da4002021-02-24 12:00:51 -0800170 .tmpfile = ramfs_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
David Howells604ecf42017-07-05 16:24:42 +0100173/*
174 * Display the mount options in /proc/mounts.
175 */
176static int ramfs_show_options(struct seq_file *m, struct dentry *root)
177{
178 struct ramfs_fs_info *fsi = root->d_sb->s_fs_info;
179
180 if (fsi->mount_opts.mode != RAMFS_DEFAULT_MODE)
181 seq_printf(m, ",mode=%o", fsi->mount_opts.mode);
182 return 0;
183}
184
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800185static const struct super_operations ramfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 .statfs = simple_statfs,
187 .drop_inode = generic_delete_inode,
David Howells604ecf42017-07-05 16:24:42 +0100188 .show_options = ramfs_show_options,
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -0700189};
190
David Howellsf3235622019-03-25 16:38:31 +0000191enum ramfs_param {
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -0700192 Opt_mode,
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -0700193};
194
Al Virod7167b12019-09-07 07:23:15 -0400195const struct fs_parameter_spec ramfs_fs_parameters[] = {
David Howellsf3235622019-03-25 16:38:31 +0000196 fsparam_u32oct("mode", Opt_mode),
197 {}
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -0700198};
199
David Howellsf3235622019-03-25 16:38:31 +0000200static int ramfs_parse_param(struct fs_context *fc, struct fs_parameter *param)
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -0700201{
David Howellsf3235622019-03-25 16:38:31 +0000202 struct fs_parse_result result;
203 struct ramfs_fs_info *fsi = fc->s_fs_info;
204 int opt;
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -0700205
Al Virod7167b12019-09-07 07:23:15 -0400206 opt = fs_parse(fc, ramfs_fs_parameters, param, &result);
yangerkun0858d7d2021-11-08 18:34:24 -0800207 if (opt == -ENOPARAM) {
208 opt = vfs_parse_fs_param_source(fc, param);
209 if (opt != -ENOPARAM)
210 return opt;
Mike Frysinger0a8eba92009-06-14 22:56:48 +0100211 /*
212 * We might like to report bad mount options here;
213 * but traditionally ramfs has ignored all mount options,
214 * and as it is used as a !CONFIG_SHMEM simple substitute
215 * for tmpfs, better continue to ignore other mount options.
216 */
yangerkun0858d7d2021-11-08 18:34:24 -0800217 return 0;
David Howellsf3235622019-03-25 16:38:31 +0000218 }
yangerkun0858d7d2021-11-08 18:34:24 -0800219 if (opt < 0)
220 return opt;
David Howellsf3235622019-03-25 16:38:31 +0000221
222 switch (opt) {
223 case Opt_mode:
224 fsi->mount_opts.mode = result.uint_32 & S_IALLUGO;
225 break;
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -0700226 }
227
228 return 0;
229}
230
David Howellsf3235622019-03-25 16:38:31 +0000231static int ramfs_fill_super(struct super_block *sb, struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
David Howellsf3235622019-03-25 16:38:31 +0000233 struct ramfs_fs_info *fsi = sb->s_fs_info;
Al Viro318ceed2012-02-12 22:08:01 -0500234 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Ingo Molnarf8201ab2009-04-07 14:16:50 +0800236 sb->s_maxbytes = MAX_LFS_FILESIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300237 sb->s_blocksize = PAGE_SIZE;
238 sb->s_blocksize_bits = PAGE_SHIFT;
Ingo Molnarf8201ab2009-04-07 14:16:50 +0800239 sb->s_magic = RAMFS_MAGIC;
240 sb->s_op = &ramfs_ops;
241 sb->s_time_gran = 1;
242
Dmitry Monakhov454abaf2010-03-04 17:32:18 +0300243 inode = ramfs_get_inode(sb, NULL, S_IFDIR | fsi->mount_opts.mode, 0);
Al Viro48fde702012-01-08 22:15:13 -0500244 sb->s_root = d_make_root(inode);
Al Viro318ceed2012-02-12 22:08:01 -0500245 if (!sb->s_root)
246 return -ENOMEM;
Ingo Molnarf8201ab2009-04-07 14:16:50 +0800247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return 0;
249}
250
David Howellsf3235622019-03-25 16:38:31 +0000251static int ramfs_get_tree(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
David Howellsf3235622019-03-25 16:38:31 +0000253 return get_tree_nodev(fc, ramfs_fill_super);
254}
255
256static void ramfs_free_fc(struct fs_context *fc)
257{
258 kfree(fc->s_fs_info);
259}
260
261static const struct fs_context_operations ramfs_context_ops = {
262 .free = ramfs_free_fc,
263 .parse_param = ramfs_parse_param,
264 .get_tree = ramfs_get_tree,
265};
266
267int ramfs_init_fs_context(struct fs_context *fc)
268{
269 struct ramfs_fs_info *fsi;
270
271 fsi = kzalloc(sizeof(*fsi), GFP_KERNEL);
272 if (!fsi)
273 return -ENOMEM;
274
275 fsi->mount_opts.mode = RAMFS_DEFAULT_MODE;
276 fc->s_fs_info = fsi;
277 fc->ops = &ramfs_context_ops;
278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -0700281static void ramfs_kill_sb(struct super_block *sb)
282{
283 kfree(sb->s_fs_info);
284 kill_litter_super(sb);
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287static struct file_system_type ramfs_fs_type = {
288 .name = "ramfs",
David Howellsf3235622019-03-25 16:38:31 +0000289 .init_fs_context = ramfs_init_fs_context,
Al Virod7167b12019-09-07 07:23:15 -0400290 .parameters = ramfs_fs_parameters,
Wu Fengguangc3b1b1c2009-03-31 15:24:34 -0700291 .kill_sb = ramfs_kill_sb,
Eric W. Biedermanb3c67612013-01-25 16:37:44 -0800292 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Al Viro14a253c2019-05-30 15:59:57 -0400295static int __init init_ramfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100297 return register_filesystem(&ramfs_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
Paul Gortmakeraf52b042014-01-21 15:48:46 -0800299fs_initcall(init_ramfs_fs);