blob: 5de06947ba5ebf2e98caa8177085f7c191df4602 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/libfs.c
3 * Library for filesystems writers.
4 */
5
Paul Gortmaker630d9c42011-11-16 23:57:37 -05006#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mount.h>
10#include <linux/vfs.h>
npiggin@suse.de7bb46a62010-05-27 01:05:33 +100011#include <linux/quotaops.h>
Ingo Molnar7cf34c72006-03-23 03:00:36 -080012#include <linux/mutex.h>
Al Viro87dc8002013-09-16 10:30:04 -040013#include <linux/namei.h>
Christoph Hellwig25961102007-10-21 16:42:05 -070014#include <linux/exportfs.h>
Al Virod5aacad2009-06-07 14:56:44 -040015#include <linux/writeback.h>
Al Viroff01bb482011-09-16 02:31:11 -040016#include <linux/buffer_head.h> /* sync_mapping_buffers */
Ingo Molnar7cf34c72006-03-23 03:00:36 -080017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/uaccess.h>
19
Al Viroa4464db2011-07-07 15:03:58 -040020#include "internal.h"
21
Nick Pigginda502952011-01-07 17:49:33 +110022static inline int simple_positive(struct dentry *dentry)
23{
24 return dentry->d_inode && !d_unhashed(dentry);
25}
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027int simple_getattr(struct vfsmount *mnt, struct dentry *dentry,
28 struct kstat *stat)
29{
30 struct inode *inode = dentry->d_inode;
31 generic_fillattr(inode, stat);
32 stat->blocks = inode->i_mapping->nrpages << (PAGE_CACHE_SHIFT - 9);
33 return 0;
34}
Al Viro12f38872013-09-15 21:20:49 -040035EXPORT_SYMBOL(simple_getattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
David Howells726c3342006-06-23 02:02:58 -070037int simple_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
David Howells726c3342006-06-23 02:02:58 -070039 buf->f_type = dentry->d_sb->s_magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 buf->f_bsize = PAGE_CACHE_SIZE;
41 buf->f_namelen = NAME_MAX;
42 return 0;
43}
Al Viro12f38872013-09-15 21:20:49 -040044EXPORT_SYMBOL(simple_statfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * Retaining negative dentries for an in-memory filesystem just wastes
48 * memory and lookup time: arrange for them to be deleted immediately.
49 */
Nick Pigginfe15ce42011-01-07 17:49:23 +110050static int simple_delete_dentry(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 return 1;
53}
54
55/*
56 * Lookup the data. This is trivial - if the dentry didn't already
57 * exist, we know it is negative. Set d_op to delete negative dentries.
58 */
Al Viro00cd8dd2012-06-10 17:13:09 -040059struct dentry *simple_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Al Viro3ba13d12009-02-20 06:02:22 +000061 static const struct dentry_operations simple_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 .d_delete = simple_delete_dentry,
63 };
64
65 if (dentry->d_name.len > NAME_MAX)
66 return ERR_PTR(-ENAMETOOLONG);
Al Viro74931da2013-07-14 17:43:25 +040067 if (!dentry->d_sb->s_d_op)
68 d_set_d_op(dentry, &simple_dentry_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 d_add(dentry, NULL);
70 return NULL;
71}
Al Viro12f38872013-09-15 21:20:49 -040072EXPORT_SYMBOL(simple_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074int dcache_dir_open(struct inode *inode, struct file *file)
75{
Linus Torvalds26fe5752012-05-10 13:14:12 -070076 static struct qstr cursor_name = QSTR_INIT(".", 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -080078 file->private_data = d_alloc(file->f_path.dentry, &cursor_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 return file->private_data ? 0 : -ENOMEM;
81}
Al Viro12f38872013-09-15 21:20:49 -040082EXPORT_SYMBOL(dcache_dir_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84int dcache_dir_close(struct inode *inode, struct file *file)
85{
86 dput(file->private_data);
87 return 0;
88}
Al Viro12f38872013-09-15 21:20:49 -040089EXPORT_SYMBOL(dcache_dir_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Andrew Morton965c8e52012-12-17 15:59:39 -080091loff_t dcache_dir_lseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +110093 struct dentry *dentry = file->f_path.dentry;
94 mutex_lock(&dentry->d_inode->i_mutex);
Andrew Morton965c8e52012-12-17 15:59:39 -080095 switch (whence) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 case 1:
97 offset += file->f_pos;
98 case 0:
99 if (offset >= 0)
100 break;
101 default:
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100102 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return -EINVAL;
104 }
105 if (offset != file->f_pos) {
106 file->f_pos = offset;
107 if (file->f_pos >= 2) {
108 struct list_head *p;
109 struct dentry *cursor = file->private_data;
110 loff_t n = file->f_pos - 2;
111
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100112 spin_lock(&dentry->d_lock);
113 /* d_lock not required for cursor */
Eric Dumazet5160ee62006-01-08 01:03:32 -0800114 list_del(&cursor->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100115 p = dentry->d_subdirs.next;
116 while (n && p != &dentry->d_subdirs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 struct dentry *next;
Eric Dumazet5160ee62006-01-08 01:03:32 -0800118 next = list_entry(p, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100119 spin_lock_nested(&next->d_lock, DENTRY_D_LOCK_NESTED);
Nick Pigginda502952011-01-07 17:49:33 +1100120 if (simple_positive(next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 n--;
Nick Pigginda502952011-01-07 17:49:33 +1100122 spin_unlock(&next->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 p = p->next;
124 }
Eric Dumazet5160ee62006-01-08 01:03:32 -0800125 list_add_tail(&cursor->d_u.d_child, p);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100126 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
128 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100129 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return offset;
131}
Al Viro12f38872013-09-15 21:20:49 -0400132EXPORT_SYMBOL(dcache_dir_lseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134/* Relationship between i_mode and the DT_xxx types */
135static inline unsigned char dt_type(struct inode *inode)
136{
137 return (inode->i_mode >> 12) & 15;
138}
139
140/*
141 * Directory is locked and all positive dentries in it are safe, since
142 * for ramfs-type trees they can't go away without unlink() or rmdir(),
143 * both impossible due to the lock on directory.
144 */
145
Al Viro5f99f4e2013-05-15 20:23:06 -0400146int dcache_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Al Viro5f99f4e2013-05-15 20:23:06 -0400148 struct dentry *dentry = file->f_path.dentry;
149 struct dentry *cursor = file->private_data;
Eric Dumazet5160ee62006-01-08 01:03:32 -0800150 struct list_head *p, *q = &cursor->d_u.d_child;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Al Viro5f99f4e2013-05-15 20:23:06 -0400152 if (!dir_emit_dots(file, ctx))
153 return 0;
154 spin_lock(&dentry->d_lock);
155 if (ctx->pos == 2)
156 list_move(q, &dentry->d_subdirs);
Akinobu Mita1bfba4e2006-06-26 00:24:40 -0700157
Al Viro5f99f4e2013-05-15 20:23:06 -0400158 for (p = q->next; p != &dentry->d_subdirs; p = p->next) {
159 struct dentry *next = list_entry(p, struct dentry, d_u.d_child);
160 spin_lock_nested(&next->d_lock, DENTRY_D_LOCK_NESTED);
161 if (!simple_positive(next)) {
162 spin_unlock(&next->d_lock);
163 continue;
164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Al Viro5f99f4e2013-05-15 20:23:06 -0400166 spin_unlock(&next->d_lock);
167 spin_unlock(&dentry->d_lock);
168 if (!dir_emit(ctx, next->d_name.name, next->d_name.len,
169 next->d_inode->i_ino, dt_type(next->d_inode)))
170 return 0;
171 spin_lock(&dentry->d_lock);
172 spin_lock_nested(&next->d_lock, DENTRY_D_LOCK_NESTED);
173 /* next is still alive */
174 list_move(q, p);
175 spin_unlock(&next->d_lock);
176 p = q;
177 ctx->pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
Al Viro5f99f4e2013-05-15 20:23:06 -0400179 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return 0;
181}
Al Viro12f38872013-09-15 21:20:49 -0400182EXPORT_SYMBOL(dcache_readdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184ssize_t generic_read_dir(struct file *filp, char __user *buf, size_t siz, loff_t *ppos)
185{
186 return -EISDIR;
187}
Al Viro12f38872013-09-15 21:20:49 -0400188EXPORT_SYMBOL(generic_read_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800190const struct file_operations simple_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 .open = dcache_dir_open,
192 .release = dcache_dir_close,
193 .llseek = dcache_dir_lseek,
194 .read = generic_read_dir,
Al Viro5f99f4e2013-05-15 20:23:06 -0400195 .iterate = dcache_readdir,
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200196 .fsync = noop_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197};
Al Viro12f38872013-09-15 21:20:49 -0400198EXPORT_SYMBOL(simple_dir_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800200const struct inode_operations simple_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .lookup = simple_lookup,
202};
Al Viro12f38872013-09-15 21:20:49 -0400203EXPORT_SYMBOL(simple_dir_inode_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Hugh Dickins759b9772007-03-05 00:30:28 -0800205static const struct super_operations simple_super_operations = {
206 .statfs = simple_statfs,
207};
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/*
210 * Common helper for pseudo-filesystems (sockfs, pipefs, bdev - stuff that
211 * will never be mountable)
212 */
Al Viro51139ad2010-07-25 23:47:46 +0400213struct dentry *mount_pseudo(struct file_system_type *fs_type, char *name,
Al Viroc74a1cb2011-01-12 16:59:34 -0500214 const struct super_operations *ops,
215 const struct dentry_operations *dops, unsigned long magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
David Howells9249e172012-06-25 12:55:37 +0100217 struct super_block *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 struct dentry *dentry;
219 struct inode *root;
Linus Torvalds26fe5752012-05-10 13:14:12 -0700220 struct qstr d_name = QSTR_INIT(name, strlen(name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
David Howells9249e172012-06-25 12:55:37 +0100222 s = sget(fs_type, NULL, set_anon_super, MS_NOUSER, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (IS_ERR(s))
Al Viro51139ad2010-07-25 23:47:46 +0400224 return ERR_CAST(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Jeff Layton89a4eb42009-08-18 14:11:08 -0700226 s->s_maxbytes = MAX_LFS_FILESIZE;
Alex Nixon3971e1a2008-07-29 22:33:03 -0700227 s->s_blocksize = PAGE_SIZE;
228 s->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 s->s_magic = magic;
Hugh Dickins759b9772007-03-05 00:30:28 -0800230 s->s_op = ops ? ops : &simple_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 s->s_time_gran = 1;
232 root = new_inode(s);
233 if (!root)
234 goto Enomem;
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700235 /*
236 * since this is the first inode, make it number 1. New inodes created
237 * after this must take care not to collide with it (by passing
238 * max_reserved of 1 to iunique).
239 */
240 root->i_ino = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 root->i_mode = S_IFDIR | S_IRUSR | S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 root->i_atime = root->i_mtime = root->i_ctime = CURRENT_TIME;
Al Viroa4464db2011-07-07 15:03:58 -0400243 dentry = __d_alloc(s, &d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (!dentry) {
245 iput(root);
246 goto Enomem;
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 d_instantiate(dentry, root);
249 s->s_root = dentry;
Al Viroc74a1cb2011-01-12 16:59:34 -0500250 s->s_d_op = dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 s->s_flags |= MS_ACTIVE;
Al Viro51139ad2010-07-25 23:47:46 +0400252 return dget(s->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254Enomem:
Al Viro6f5bbff2009-05-06 01:34:22 -0400255 deactivate_locked_super(s);
Al Viro51139ad2010-07-25 23:47:46 +0400256 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
Al Viro12f38872013-09-15 21:20:49 -0400258EXPORT_SYMBOL(mount_pseudo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Stephen Boyd20955e82012-04-05 14:25:09 -0700260int simple_open(struct inode *inode, struct file *file)
261{
262 if (inode->i_private)
263 file->private_data = inode->i_private;
264 return 0;
265}
Al Viro12f38872013-09-15 21:20:49 -0400266EXPORT_SYMBOL(simple_open);
Stephen Boyd20955e82012-04-05 14:25:09 -0700267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268int simple_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
269{
270 struct inode *inode = old_dentry->d_inode;
271
272 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansend8c76e62006-09-30 23:29:04 -0700273 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400274 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 dget(dentry);
276 d_instantiate(dentry, inode);
277 return 0;
278}
Al Viro12f38872013-09-15 21:20:49 -0400279EXPORT_SYMBOL(simple_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281int simple_empty(struct dentry *dentry)
282{
283 struct dentry *child;
284 int ret = 0;
285
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100286 spin_lock(&dentry->d_lock);
Nick Pigginda502952011-01-07 17:49:33 +1100287 list_for_each_entry(child, &dentry->d_subdirs, d_u.d_child) {
288 spin_lock_nested(&child->d_lock, DENTRY_D_LOCK_NESTED);
289 if (simple_positive(child)) {
290 spin_unlock(&child->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 goto out;
Nick Pigginda502952011-01-07 17:49:33 +1100292 }
293 spin_unlock(&child->d_lock);
294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 ret = 1;
296out:
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100297 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return ret;
299}
Al Viro12f38872013-09-15 21:20:49 -0400300EXPORT_SYMBOL(simple_empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302int simple_unlink(struct inode *dir, struct dentry *dentry)
303{
304 struct inode *inode = dentry->d_inode;
305
306 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700307 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 dput(dentry);
309 return 0;
310}
Al Viro12f38872013-09-15 21:20:49 -0400311EXPORT_SYMBOL(simple_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313int simple_rmdir(struct inode *dir, struct dentry *dentry)
314{
315 if (!simple_empty(dentry))
316 return -ENOTEMPTY;
317
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700318 drop_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 simple_unlink(dir, dentry);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700320 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return 0;
322}
Al Viro12f38872013-09-15 21:20:49 -0400323EXPORT_SYMBOL(simple_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325int simple_rename(struct inode *old_dir, struct dentry *old_dentry,
326 struct inode *new_dir, struct dentry *new_dentry)
327{
328 struct inode *inode = old_dentry->d_inode;
329 int they_are_dirs = S_ISDIR(old_dentry->d_inode->i_mode);
330
331 if (!simple_empty(new_dentry))
332 return -ENOTEMPTY;
333
334 if (new_dentry->d_inode) {
335 simple_unlink(new_dir, new_dentry);
Al Viro841590c2011-07-21 15:49:09 -0400336 if (they_are_dirs) {
337 drop_nlink(new_dentry->d_inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700338 drop_nlink(old_dir);
Al Viro841590c2011-07-21 15:49:09 -0400339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700341 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -0700342 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
345 old_dir->i_ctime = old_dir->i_mtime = new_dir->i_ctime =
346 new_dir->i_mtime = inode->i_ctime = CURRENT_TIME;
347
348 return 0;
349}
Al Viro12f38872013-09-15 21:20:49 -0400350EXPORT_SYMBOL(simple_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000352/**
Christoph Hellwigeef23802010-06-04 11:30:01 +0200353 * simple_setattr - setattr for simple filesystem
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000354 * @dentry: dentry
355 * @iattr: iattr structure
356 *
357 * Returns 0 on success, -error on failure.
358 *
Christoph Hellwigeef23802010-06-04 11:30:01 +0200359 * simple_setattr is a simple ->setattr implementation without a proper
360 * implementation of size changes.
361 *
362 * It can either be used for in-memory filesystems or special files
363 * on simple regular filesystems. Anything that needs to change on-disk
364 * or wire state on size changes needs its own setattr method.
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000365 */
366int simple_setattr(struct dentry *dentry, struct iattr *iattr)
367{
368 struct inode *inode = dentry->d_inode;
369 int error;
370
371 error = inode_change_ok(inode, iattr);
372 if (error)
373 return error;
374
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200375 if (iattr->ia_valid & ATTR_SIZE)
376 truncate_setsize(inode, iattr->ia_size);
Christoph Hellwig6a1a90a2010-06-04 11:30:00 +0200377 setattr_copy(inode, iattr);
Christoph Hellwigeef23802010-06-04 11:30:01 +0200378 mark_inode_dirty(inode);
379 return 0;
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000380}
381EXPORT_SYMBOL(simple_setattr);
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383int simple_readpage(struct file *file, struct page *page)
384{
Pekka J Enbergc0d92cb2006-09-29 01:59:09 -0700385 clear_highpage(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 flush_dcache_page(page);
387 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 unlock_page(page);
389 return 0;
390}
Al Viro12f38872013-09-15 21:20:49 -0400391EXPORT_SYMBOL(simple_readpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Nick Pigginafddba42007-10-16 01:25:01 -0700393int simple_write_begin(struct file *file, struct address_space *mapping,
394 loff_t pos, unsigned len, unsigned flags,
395 struct page **pagep, void **fsdata)
396{
397 struct page *page;
398 pgoff_t index;
Nick Pigginafddba42007-10-16 01:25:01 -0700399
400 index = pos >> PAGE_CACHE_SHIFT;
Nick Pigginafddba42007-10-16 01:25:01 -0700401
Nick Piggin54566b22009-01-04 12:00:53 -0800402 page = grab_cache_page_write_begin(mapping, index, flags);
Nick Pigginafddba42007-10-16 01:25:01 -0700403 if (!page)
404 return -ENOMEM;
405
406 *pagep = page;
407
Boaz Harrosh193cf4b2010-01-12 16:18:08 +0200408 if (!PageUptodate(page) && (len != PAGE_CACHE_SIZE)) {
409 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
410
411 zero_user_segments(page, 0, from, from + len, PAGE_CACHE_SIZE);
412 }
413 return 0;
Nick Pigginafddba42007-10-16 01:25:01 -0700414}
Al Viro12f38872013-09-15 21:20:49 -0400415EXPORT_SYMBOL(simple_write_begin);
Nick Pigginafddba42007-10-16 01:25:01 -0700416
Boaz Harroshad2a722f2010-01-12 15:13:47 +0200417/**
418 * simple_write_end - .write_end helper for non-block-device FSes
419 * @available: See .write_end of address_space_operations
420 * @file: "
421 * @mapping: "
422 * @pos: "
423 * @len: "
424 * @copied: "
425 * @page: "
426 * @fsdata: "
427 *
428 * simple_write_end does the minimum needed for updating a page after writing is
429 * done. It has the same API signature as the .write_end of
430 * address_space_operations vector. So it can just be set onto .write_end for
431 * FSes that don't need any other processing. i_mutex is assumed to be held.
432 * Block based filesystems should use generic_write_end().
433 * NOTE: Even though i_size might get updated by this function, mark_inode_dirty
434 * is not called, so a filesystem that actually does store data in .write_inode
435 * should extend on what's done here with a call to mark_inode_dirty() in the
436 * case that i_size has changed.
437 */
438int simple_write_end(struct file *file, struct address_space *mapping,
439 loff_t pos, unsigned len, unsigned copied,
440 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 struct inode *inode = page->mapping->host;
Boaz Harroshad2a722f2010-01-12 15:13:47 +0200443 loff_t last_pos = pos + copied;
444
445 /* zero the stale part of the page if we did a short copy */
446 if (copied < len) {
447 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
448
449 zero_user(page, from + copied, len - copied);
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Nick Piggin955eff52007-02-20 13:58:08 -0800452 if (!PageUptodate(page))
453 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /*
455 * No need to use i_size_read() here, the i_size
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800456 * cannot change under us because we hold the i_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 */
Boaz Harroshad2a722f2010-01-12 15:13:47 +0200458 if (last_pos > inode->i_size)
459 i_size_write(inode, last_pos);
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 set_page_dirty(page);
Nick Pigginafddba42007-10-16 01:25:01 -0700462 unlock_page(page);
463 page_cache_release(page);
464
465 return copied;
466}
Al Viro12f38872013-09-15 21:20:49 -0400467EXPORT_SYMBOL(simple_write_end);
Nick Pigginafddba42007-10-16 01:25:01 -0700468
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700469/*
470 * the inodes created here are not hashed. If you use iunique to generate
471 * unique inode values later for this filesystem, then you must take care
472 * to pass it an appropriate max_reserved value to avoid collisions.
473 */
Roberto Sassu7d683a02010-06-03 11:58:28 +0200474int simple_fill_super(struct super_block *s, unsigned long magic,
475 struct tree_descr *files)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct inode *inode;
478 struct dentry *root;
479 struct dentry *dentry;
480 int i;
481
482 s->s_blocksize = PAGE_CACHE_SIZE;
483 s->s_blocksize_bits = PAGE_CACHE_SHIFT;
484 s->s_magic = magic;
Hugh Dickins759b9772007-03-05 00:30:28 -0800485 s->s_op = &simple_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 s->s_time_gran = 1;
487
488 inode = new_inode(s);
489 if (!inode)
490 return -ENOMEM;
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700491 /*
492 * because the root inode is 1, the files array must not contain an
493 * entry at index 1
494 */
495 inode->i_ino = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 inode->i_mode = S_IFDIR | 0755;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
498 inode->i_op = &simple_dir_inode_operations;
499 inode->i_fop = &simple_dir_operations;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200500 set_nlink(inode, 2);
Al Viro48fde702012-01-08 22:15:13 -0500501 root = d_make_root(inode);
502 if (!root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 for (i = 0; !files->name || files->name[0]; i++, files++) {
505 if (!files->name)
506 continue;
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700507
508 /* warn if it tries to conflict with the root inode */
509 if (unlikely(i == 1))
510 printk(KERN_WARNING "%s: %s passed in a files array"
511 "with an index of 1!\n", __func__,
512 s->s_type->name);
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 dentry = d_alloc_name(root, files->name);
515 if (!dentry)
516 goto out;
517 inode = new_inode(s);
Konstantin Khlebnikov32096ea2011-11-01 16:12:33 +0300518 if (!inode) {
519 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 goto out;
Konstantin Khlebnikov32096ea2011-11-01 16:12:33 +0300521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 inode->i_mode = S_IFREG | files->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
524 inode->i_fop = files->ops;
525 inode->i_ino = i;
526 d_add(dentry, inode);
527 }
528 s->s_root = root;
529 return 0;
530out:
531 d_genocide(root);
Al Viro640946f2012-04-02 19:22:25 -0400532 shrink_dcache_parent(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 dput(root);
534 return -ENOMEM;
535}
Al Viro12f38872013-09-15 21:20:49 -0400536EXPORT_SYMBOL(simple_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538static DEFINE_SPINLOCK(pin_fs_lock);
539
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400540int simple_pin_fs(struct file_system_type *type, struct vfsmount **mount, int *count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 struct vfsmount *mnt = NULL;
543 spin_lock(&pin_fs_lock);
544 if (unlikely(!*mount)) {
545 spin_unlock(&pin_fs_lock);
Al Viro24529922012-03-17 02:13:52 -0400546 mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (IS_ERR(mnt))
548 return PTR_ERR(mnt);
549 spin_lock(&pin_fs_lock);
550 if (!*mount)
551 *mount = mnt;
552 }
553 mntget(*mount);
554 ++*count;
555 spin_unlock(&pin_fs_lock);
556 mntput(mnt);
557 return 0;
558}
Al Viro12f38872013-09-15 21:20:49 -0400559EXPORT_SYMBOL(simple_pin_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561void simple_release_fs(struct vfsmount **mount, int *count)
562{
563 struct vfsmount *mnt;
564 spin_lock(&pin_fs_lock);
565 mnt = *mount;
566 if (!--*count)
567 *mount = NULL;
568 spin_unlock(&pin_fs_lock);
569 mntput(mnt);
570}
Al Viro12f38872013-09-15 21:20:49 -0400571EXPORT_SYMBOL(simple_release_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Akinobu Mita6d1029b2008-07-04 09:59:51 -0700573/**
574 * simple_read_from_buffer - copy data from the buffer to user space
575 * @to: the user space buffer to read to
576 * @count: the maximum number of bytes to read
577 * @ppos: the current position in the buffer
578 * @from: the buffer to read from
579 * @available: the size of the buffer
580 *
581 * The simple_read_from_buffer() function reads up to @count bytes from the
582 * buffer @from at offset @ppos into the user space address starting at @to.
583 *
584 * On success, the number of bytes read is returned and the offset @ppos is
585 * advanced by this number, or negative value is returned on error.
586 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587ssize_t simple_read_from_buffer(void __user *to, size_t count, loff_t *ppos,
588 const void *from, size_t available)
589{
590 loff_t pos = *ppos;
Steven Rostedt14be2742009-09-18 13:05:42 -0700591 size_t ret;
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (pos < 0)
594 return -EINVAL;
Steven Rostedt14be2742009-09-18 13:05:42 -0700595 if (pos >= available || !count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return 0;
597 if (count > available - pos)
598 count = available - pos;
Steven Rostedt14be2742009-09-18 13:05:42 -0700599 ret = copy_to_user(to, from + pos, count);
600 if (ret == count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return -EFAULT;
Steven Rostedt14be2742009-09-18 13:05:42 -0700602 count -= ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 *ppos = pos + count;
604 return count;
605}
Al Viro12f38872013-09-15 21:20:49 -0400606EXPORT_SYMBOL(simple_read_from_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Akinobu Mita6d1029b2008-07-04 09:59:51 -0700608/**
Jiri Slaby6a727b42010-05-01 23:51:22 +0200609 * simple_write_to_buffer - copy data from user space to the buffer
610 * @to: the buffer to write to
611 * @available: the size of the buffer
612 * @ppos: the current position in the buffer
613 * @from: the user space buffer to read from
614 * @count: the maximum number of bytes to read
615 *
616 * The simple_write_to_buffer() function reads up to @count bytes from the user
617 * space address starting at @from into the buffer @to at offset @ppos.
618 *
619 * On success, the number of bytes written is returned and the offset @ppos is
620 * advanced by this number, or negative value is returned on error.
621 **/
622ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos,
623 const void __user *from, size_t count)
624{
625 loff_t pos = *ppos;
626 size_t res;
627
628 if (pos < 0)
629 return -EINVAL;
630 if (pos >= available || !count)
631 return 0;
632 if (count > available - pos)
633 count = available - pos;
634 res = copy_from_user(to + pos, from, count);
635 if (res == count)
636 return -EFAULT;
637 count -= res;
638 *ppos = pos + count;
639 return count;
640}
Al Viro12f38872013-09-15 21:20:49 -0400641EXPORT_SYMBOL(simple_write_to_buffer);
Jiri Slaby6a727b42010-05-01 23:51:22 +0200642
643/**
Akinobu Mita6d1029b2008-07-04 09:59:51 -0700644 * memory_read_from_buffer - copy data from the buffer
645 * @to: the kernel space buffer to read to
646 * @count: the maximum number of bytes to read
647 * @ppos: the current position in the buffer
648 * @from: the buffer to read from
649 * @available: the size of the buffer
650 *
651 * The memory_read_from_buffer() function reads up to @count bytes from the
652 * buffer @from at offset @ppos into the kernel space address starting at @to.
653 *
654 * On success, the number of bytes read is returned and the offset @ppos is
655 * advanced by this number, or negative value is returned on error.
656 **/
Akinobu Mita93b07112008-06-05 22:46:21 -0700657ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos,
658 const void *from, size_t available)
659{
660 loff_t pos = *ppos;
661
662 if (pos < 0)
663 return -EINVAL;
664 if (pos >= available)
665 return 0;
666 if (count > available - pos)
667 count = available - pos;
668 memcpy(to, from + pos, count);
669 *ppos = pos + count;
670
671 return count;
672}
Al Viro12f38872013-09-15 21:20:49 -0400673EXPORT_SYMBOL(memory_read_from_buffer);
Akinobu Mita93b07112008-06-05 22:46:21 -0700674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675/*
676 * Transaction based IO.
677 * The file expects a single write which triggers the transaction, and then
678 * possibly a read which collects the result - which is stored in a
679 * file-local buffer.
680 */
Ingo Molnar76791ab2009-03-25 16:48:35 +0100681
682void simple_transaction_set(struct file *file, size_t n)
683{
684 struct simple_transaction_argresp *ar = file->private_data;
685
686 BUG_ON(n > SIMPLE_TRANSACTION_LIMIT);
687
688 /*
689 * The barrier ensures that ar->size will really remain zero until
690 * ar->data is ready for reading.
691 */
692 smp_mb();
693 ar->size = n;
694}
Al Viro12f38872013-09-15 21:20:49 -0400695EXPORT_SYMBOL(simple_transaction_set);
Ingo Molnar76791ab2009-03-25 16:48:35 +0100696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697char *simple_transaction_get(struct file *file, const char __user *buf, size_t size)
698{
699 struct simple_transaction_argresp *ar;
700 static DEFINE_SPINLOCK(simple_transaction_lock);
701
702 if (size > SIMPLE_TRANSACTION_LIMIT - 1)
703 return ERR_PTR(-EFBIG);
704
705 ar = (struct simple_transaction_argresp *)get_zeroed_page(GFP_KERNEL);
706 if (!ar)
707 return ERR_PTR(-ENOMEM);
708
709 spin_lock(&simple_transaction_lock);
710
711 /* only one write allowed per open */
712 if (file->private_data) {
713 spin_unlock(&simple_transaction_lock);
714 free_page((unsigned long)ar);
715 return ERR_PTR(-EBUSY);
716 }
717
718 file->private_data = ar;
719
720 spin_unlock(&simple_transaction_lock);
721
722 if (copy_from_user(ar->data, buf, size))
723 return ERR_PTR(-EFAULT);
724
725 return ar->data;
726}
Al Viro12f38872013-09-15 21:20:49 -0400727EXPORT_SYMBOL(simple_transaction_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729ssize_t simple_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
730{
731 struct simple_transaction_argresp *ar = file->private_data;
732
733 if (!ar)
734 return 0;
735 return simple_read_from_buffer(buf, size, pos, ar->data, ar->size);
736}
Al Viro12f38872013-09-15 21:20:49 -0400737EXPORT_SYMBOL(simple_transaction_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739int simple_transaction_release(struct inode *inode, struct file *file)
740{
741 free_page((unsigned long)file->private_data);
742 return 0;
743}
Al Viro12f38872013-09-15 21:20:49 -0400744EXPORT_SYMBOL(simple_transaction_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200746/* Simple attribute files */
747
748struct simple_attr {
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800749 int (*get)(void *, u64 *);
750 int (*set)(void *, u64);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200751 char get_buf[24]; /* enough to store a u64 and "\n\0" */
752 char set_buf[24];
753 void *data;
754 const char *fmt; /* format for read operation */
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800755 struct mutex mutex; /* protects access to these buffers */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200756};
757
758/* simple_attr_open is called by an actual attribute open file operation
759 * to set the attribute specific access operations. */
760int simple_attr_open(struct inode *inode, struct file *file,
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800761 int (*get)(void *, u64 *), int (*set)(void *, u64),
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200762 const char *fmt)
763{
764 struct simple_attr *attr;
765
766 attr = kmalloc(sizeof(*attr), GFP_KERNEL);
767 if (!attr)
768 return -ENOMEM;
769
770 attr->get = get;
771 attr->set = set;
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700772 attr->data = inode->i_private;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200773 attr->fmt = fmt;
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800774 mutex_init(&attr->mutex);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200775
776 file->private_data = attr;
777
778 return nonseekable_open(inode, file);
779}
Al Viro12f38872013-09-15 21:20:49 -0400780EXPORT_SYMBOL_GPL(simple_attr_open);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200781
Christoph Hellwig74bedc42008-02-08 04:20:28 -0800782int simple_attr_release(struct inode *inode, struct file *file)
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200783{
784 kfree(file->private_data);
785 return 0;
786}
Al Viro12f38872013-09-15 21:20:49 -0400787EXPORT_SYMBOL_GPL(simple_attr_release); /* GPL-only? This? Really? */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200788
789/* read from the buffer that is filled with the get function */
790ssize_t simple_attr_read(struct file *file, char __user *buf,
791 size_t len, loff_t *ppos)
792{
793 struct simple_attr *attr;
794 size_t size;
795 ssize_t ret;
796
797 attr = file->private_data;
798
799 if (!attr->get)
800 return -EACCES;
801
Christoph Hellwig92613032008-02-08 04:20:27 -0800802 ret = mutex_lock_interruptible(&attr->mutex);
803 if (ret)
804 return ret;
805
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800806 if (*ppos) { /* continued read */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200807 size = strlen(attr->get_buf);
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800808 } else { /* first read */
809 u64 val;
810 ret = attr->get(attr->data, &val);
811 if (ret)
812 goto out;
813
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200814 size = scnprintf(attr->get_buf, sizeof(attr->get_buf),
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800815 attr->fmt, (unsigned long long)val);
816 }
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200817
818 ret = simple_read_from_buffer(buf, len, ppos, attr->get_buf, size);
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800819out:
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800820 mutex_unlock(&attr->mutex);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200821 return ret;
822}
Al Viro12f38872013-09-15 21:20:49 -0400823EXPORT_SYMBOL_GPL(simple_attr_read);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200824
825/* interpret the buffer as a number to call the set function with */
826ssize_t simple_attr_write(struct file *file, const char __user *buf,
827 size_t len, loff_t *ppos)
828{
829 struct simple_attr *attr;
830 u64 val;
831 size_t size;
832 ssize_t ret;
833
834 attr = file->private_data;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200835 if (!attr->set)
836 return -EACCES;
837
Christoph Hellwig92613032008-02-08 04:20:27 -0800838 ret = mutex_lock_interruptible(&attr->mutex);
839 if (ret)
840 return ret;
841
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200842 ret = -EFAULT;
843 size = min(sizeof(attr->set_buf) - 1, len);
844 if (copy_from_user(attr->set_buf, buf, size))
845 goto out;
846
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200847 attr->set_buf[size] = '\0';
Akinobu Mitaf7b88632011-07-19 08:49:25 -0700848 val = simple_strtoll(attr->set_buf, NULL, 0);
Wu Fengguang05cc0ce2009-09-18 13:06:03 -0700849 ret = attr->set(attr->data, val);
850 if (ret == 0)
851 ret = len; /* on success, claim we got the whole input */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200852out:
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800853 mutex_unlock(&attr->mutex);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200854 return ret;
855}
Al Viro12f38872013-09-15 21:20:49 -0400856EXPORT_SYMBOL_GPL(simple_attr_write);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200857
Christoph Hellwig25961102007-10-21 16:42:05 -0700858/**
859 * generic_fh_to_dentry - generic helper for the fh_to_dentry export operation
860 * @sb: filesystem to do the file handle conversion on
861 * @fid: file handle to convert
862 * @fh_len: length of the file handle in bytes
863 * @fh_type: type of file handle
864 * @get_inode: filesystem callback to retrieve inode
865 *
866 * This function decodes @fid as long as it has one of the well-known
867 * Linux filehandle types and calls @get_inode on it to retrieve the
868 * inode for the object specified in the file handle.
869 */
870struct dentry *generic_fh_to_dentry(struct super_block *sb, struct fid *fid,
871 int fh_len, int fh_type, struct inode *(*get_inode)
872 (struct super_block *sb, u64 ino, u32 gen))
873{
874 struct inode *inode = NULL;
875
876 if (fh_len < 2)
877 return NULL;
878
879 switch (fh_type) {
880 case FILEID_INO32_GEN:
881 case FILEID_INO32_GEN_PARENT:
882 inode = get_inode(sb, fid->i32.ino, fid->i32.gen);
883 break;
884 }
885
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +0200886 return d_obtain_alias(inode);
Christoph Hellwig25961102007-10-21 16:42:05 -0700887}
888EXPORT_SYMBOL_GPL(generic_fh_to_dentry);
889
890/**
Yanchuan Nianca186832012-09-05 16:31:29 +0800891 * generic_fh_to_parent - generic helper for the fh_to_parent export operation
Christoph Hellwig25961102007-10-21 16:42:05 -0700892 * @sb: filesystem to do the file handle conversion on
893 * @fid: file handle to convert
894 * @fh_len: length of the file handle in bytes
895 * @fh_type: type of file handle
896 * @get_inode: filesystem callback to retrieve inode
897 *
898 * This function decodes @fid as long as it has one of the well-known
899 * Linux filehandle types and calls @get_inode on it to retrieve the
900 * inode for the _parent_ object specified in the file handle if it
901 * is specified in the file handle, or NULL otherwise.
902 */
903struct dentry *generic_fh_to_parent(struct super_block *sb, struct fid *fid,
904 int fh_len, int fh_type, struct inode *(*get_inode)
905 (struct super_block *sb, u64 ino, u32 gen))
906{
907 struct inode *inode = NULL;
908
909 if (fh_len <= 2)
910 return NULL;
911
912 switch (fh_type) {
913 case FILEID_INO32_GEN_PARENT:
914 inode = get_inode(sb, fid->i32.parent_ino,
915 (fh_len > 3 ? fid->i32.parent_gen : 0));
916 break;
917 }
918
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +0200919 return d_obtain_alias(inode);
Christoph Hellwig25961102007-10-21 16:42:05 -0700920}
921EXPORT_SYMBOL_GPL(generic_fh_to_parent);
922
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200923/**
924 * generic_file_fsync - generic fsync implementation for simple filesystems
925 * @file: file to synchronize
926 * @datasync: only synchronize essential metadata if true
927 *
928 * This is a generic implementation of the fsync method for simple
929 * filesystems which track all non-inode metadata in the buffers list
930 * hanging off the address_space structure.
931 */
Josef Bacik02c24a82011-07-16 20:44:56 -0400932int generic_file_fsync(struct file *file, loff_t start, loff_t end,
933 int datasync)
Al Virod5aacad2009-06-07 14:56:44 -0400934{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200935 struct inode *inode = file->f_mapping->host;
Al Virod5aacad2009-06-07 14:56:44 -0400936 int err;
937 int ret;
938
Josef Bacik02c24a82011-07-16 20:44:56 -0400939 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
940 if (err)
941 return err;
942
943 mutex_lock(&inode->i_mutex);
Al Virod5aacad2009-06-07 14:56:44 -0400944 ret = sync_mapping_buffers(inode->i_mapping);
945 if (!(inode->i_state & I_DIRTY))
Josef Bacik02c24a82011-07-16 20:44:56 -0400946 goto out;
Al Virod5aacad2009-06-07 14:56:44 -0400947 if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
Josef Bacik02c24a82011-07-16 20:44:56 -0400948 goto out;
Al Virod5aacad2009-06-07 14:56:44 -0400949
Christoph Hellwigc37650162010-10-06 10:48:20 +0200950 err = sync_inode_metadata(inode, 1);
Al Virod5aacad2009-06-07 14:56:44 -0400951 if (ret == 0)
952 ret = err;
Josef Bacik02c24a82011-07-16 20:44:56 -0400953out:
954 mutex_unlock(&inode->i_mutex);
Al Virod5aacad2009-06-07 14:56:44 -0400955 return ret;
956}
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200957EXPORT_SYMBOL(generic_file_fsync);
958
Patrick J. LoPresti30ca22c2010-07-22 15:03:41 -0700959/**
960 * generic_check_addressable - Check addressability of file system
961 * @blocksize_bits: log of file system block size
962 * @num_blocks: number of blocks in file system
963 *
964 * Determine whether a file system with @num_blocks blocks (and a
965 * block size of 2**@blocksize_bits) is addressable by the sector_t
966 * and page cache of the system. Return 0 if so and -EFBIG otherwise.
967 */
968int generic_check_addressable(unsigned blocksize_bits, u64 num_blocks)
969{
970 u64 last_fs_block = num_blocks - 1;
Joel Beckera33f13e2010-08-16 12:10:17 -0700971 u64 last_fs_page =
972 last_fs_block >> (PAGE_CACHE_SHIFT - blocksize_bits);
Patrick J. LoPresti30ca22c2010-07-22 15:03:41 -0700973
974 if (unlikely(num_blocks == 0))
975 return 0;
976
977 if ((blocksize_bits < 9) || (blocksize_bits > PAGE_CACHE_SHIFT))
978 return -EINVAL;
979
Joel Beckera33f13e2010-08-16 12:10:17 -0700980 if ((last_fs_block > (sector_t)(~0ULL) >> (blocksize_bits - 9)) ||
981 (last_fs_page > (pgoff_t)(~0ULL))) {
Patrick J. LoPresti30ca22c2010-07-22 15:03:41 -0700982 return -EFBIG;
983 }
984 return 0;
985}
986EXPORT_SYMBOL(generic_check_addressable);
987
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200988/*
989 * No-op implementation of ->fsync for in-memory filesystems.
990 */
Josef Bacik02c24a82011-07-16 20:44:56 -0400991int noop_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200992{
993 return 0;
994}
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200995EXPORT_SYMBOL(noop_fsync);
Al Viro87dc8002013-09-16 10:30:04 -0400996
997void kfree_put_link(struct dentry *dentry, struct nameidata *nd,
998 void *cookie)
999{
1000 char *s = nd_get_link(nd);
1001 if (!IS_ERR(s))
1002 kfree(s);
1003}
1004EXPORT_SYMBOL(kfree_put_link);
Al Viro69878432013-10-02 22:35:11 -04001005
1006/*
1007 * nop .set_page_dirty method so that people can use .page_mkwrite on
1008 * anon inodes.
1009 */
1010static int anon_set_page_dirty(struct page *page)
1011{
1012 return 0;
1013};
1014
1015/*
1016 * A single inode exists for all anon_inode files. Contrary to pipes,
1017 * anon_inode inodes have no associated per-instance data, so we need
1018 * only allocate one of them.
1019 */
1020struct inode *alloc_anon_inode(struct super_block *s)
1021{
1022 static const struct address_space_operations anon_aops = {
1023 .set_page_dirty = anon_set_page_dirty,
1024 };
1025 struct inode *inode = new_inode_pseudo(s);
1026
1027 if (!inode)
1028 return ERR_PTR(-ENOMEM);
1029
1030 inode->i_ino = get_next_ino();
1031 inode->i_mapping->a_ops = &anon_aops;
1032
1033 /*
1034 * Mark the inode dirty from the very beginning,
1035 * that way it will never be moved to the dirty
1036 * list because mark_inode_dirty() will think
1037 * that it already _is_ on the dirty list.
1038 */
1039 inode->i_state = I_DIRTY;
1040 inode->i_mode = S_IRUSR | S_IWUSR;
1041 inode->i_uid = current_fsuid();
1042 inode->i_gid = current_fsgid();
1043 inode->i_flags |= S_PRIVATE;
1044 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1045 return inode;
1046}
1047EXPORT_SYMBOL(alloc_anon_inode);