blob: 828622a31d30ff7a0946373e939905d1338c9a7a [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>
Christoph Hellwig25961102007-10-21 16:42:05 -070013#include <linux/exportfs.h>
Al Virod5aacad2009-06-07 14:56:44 -040014#include <linux/writeback.h>
Al Viroff01bb482011-09-16 02:31:11 -040015#include <linux/buffer_head.h> /* sync_mapping_buffers */
Ingo Molnar7cf34c72006-03-23 03:00:36 -080016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/uaccess.h>
18
Al Viroa4464db2011-07-07 15:03:58 -040019#include "internal.h"
20
Nick Pigginda502952011-01-07 17:49:33 +110021static inline int simple_positive(struct dentry *dentry)
22{
23 return dentry->d_inode && !d_unhashed(dentry);
24}
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026int simple_getattr(struct vfsmount *mnt, struct dentry *dentry,
27 struct kstat *stat)
28{
29 struct inode *inode = dentry->d_inode;
30 generic_fillattr(inode, stat);
31 stat->blocks = inode->i_mapping->nrpages << (PAGE_CACHE_SHIFT - 9);
32 return 0;
33}
Al Viro12f38872013-09-15 21:20:49 -040034EXPORT_SYMBOL(simple_getattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
David Howells726c3342006-06-23 02:02:58 -070036int simple_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
David Howells726c3342006-06-23 02:02:58 -070038 buf->f_type = dentry->d_sb->s_magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 buf->f_bsize = PAGE_CACHE_SIZE;
40 buf->f_namelen = NAME_MAX;
41 return 0;
42}
Al Viro12f38872013-09-15 21:20:49 -040043EXPORT_SYMBOL(simple_statfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
46 * Retaining negative dentries for an in-memory filesystem just wastes
47 * memory and lookup time: arrange for them to be deleted immediately.
48 */
Nick Pigginfe15ce42011-01-07 17:49:23 +110049static int simple_delete_dentry(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 return 1;
52}
53
54/*
55 * Lookup the data. This is trivial - if the dentry didn't already
56 * exist, we know it is negative. Set d_op to delete negative dentries.
57 */
Al Viro00cd8dd2012-06-10 17:13:09 -040058struct dentry *simple_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Al Viro3ba13d12009-02-20 06:02:22 +000060 static const struct dentry_operations simple_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 .d_delete = simple_delete_dentry,
62 };
63
64 if (dentry->d_name.len > NAME_MAX)
65 return ERR_PTR(-ENAMETOOLONG);
Al Viro74931da2013-07-14 17:43:25 +040066 if (!dentry->d_sb->s_d_op)
67 d_set_d_op(dentry, &simple_dentry_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 d_add(dentry, NULL);
69 return NULL;
70}
Al Viro12f38872013-09-15 21:20:49 -040071EXPORT_SYMBOL(simple_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073int dcache_dir_open(struct inode *inode, struct file *file)
74{
Linus Torvalds26fe5752012-05-10 13:14:12 -070075 static struct qstr cursor_name = QSTR_INIT(".", 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -080077 file->private_data = d_alloc(file->f_path.dentry, &cursor_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 return file->private_data ? 0 : -ENOMEM;
80}
Al Viro12f38872013-09-15 21:20:49 -040081EXPORT_SYMBOL(dcache_dir_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83int dcache_dir_close(struct inode *inode, struct file *file)
84{
85 dput(file->private_data);
86 return 0;
87}
Al Viro12f38872013-09-15 21:20:49 -040088EXPORT_SYMBOL(dcache_dir_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Andrew Morton965c8e52012-12-17 15:59:39 -080090loff_t dcache_dir_lseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +110092 struct dentry *dentry = file->f_path.dentry;
93 mutex_lock(&dentry->d_inode->i_mutex);
Andrew Morton965c8e52012-12-17 15:59:39 -080094 switch (whence) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 case 1:
96 offset += file->f_pos;
97 case 0:
98 if (offset >= 0)
99 break;
100 default:
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100101 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return -EINVAL;
103 }
104 if (offset != file->f_pos) {
105 file->f_pos = offset;
106 if (file->f_pos >= 2) {
107 struct list_head *p;
108 struct dentry *cursor = file->private_data;
109 loff_t n = file->f_pos - 2;
110
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100111 spin_lock(&dentry->d_lock);
112 /* d_lock not required for cursor */
Eric Dumazet5160ee62006-01-08 01:03:32 -0800113 list_del(&cursor->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100114 p = dentry->d_subdirs.next;
115 while (n && p != &dentry->d_subdirs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 struct dentry *next;
Eric Dumazet5160ee62006-01-08 01:03:32 -0800117 next = list_entry(p, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100118 spin_lock_nested(&next->d_lock, DENTRY_D_LOCK_NESTED);
Nick Pigginda502952011-01-07 17:49:33 +1100119 if (simple_positive(next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 n--;
Nick Pigginda502952011-01-07 17:49:33 +1100121 spin_unlock(&next->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 p = p->next;
123 }
Eric Dumazet5160ee62006-01-08 01:03:32 -0800124 list_add_tail(&cursor->d_u.d_child, p);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100125 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
127 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100128 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return offset;
130}
Al Viro12f38872013-09-15 21:20:49 -0400131EXPORT_SYMBOL(dcache_dir_lseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133/* Relationship between i_mode and the DT_xxx types */
134static inline unsigned char dt_type(struct inode *inode)
135{
136 return (inode->i_mode >> 12) & 15;
137}
138
139/*
140 * Directory is locked and all positive dentries in it are safe, since
141 * for ramfs-type trees they can't go away without unlink() or rmdir(),
142 * both impossible due to the lock on directory.
143 */
144
Al Viro5f99f4e2013-05-15 20:23:06 -0400145int dcache_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Al Viro5f99f4e2013-05-15 20:23:06 -0400147 struct dentry *dentry = file->f_path.dentry;
148 struct dentry *cursor = file->private_data;
Eric Dumazet5160ee62006-01-08 01:03:32 -0800149 struct list_head *p, *q = &cursor->d_u.d_child;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Al Viro5f99f4e2013-05-15 20:23:06 -0400151 if (!dir_emit_dots(file, ctx))
152 return 0;
153 spin_lock(&dentry->d_lock);
154 if (ctx->pos == 2)
155 list_move(q, &dentry->d_subdirs);
Akinobu Mita1bfba4e2006-06-26 00:24:40 -0700156
Al Viro5f99f4e2013-05-15 20:23:06 -0400157 for (p = q->next; p != &dentry->d_subdirs; p = p->next) {
158 struct dentry *next = list_entry(p, struct dentry, d_u.d_child);
159 spin_lock_nested(&next->d_lock, DENTRY_D_LOCK_NESTED);
160 if (!simple_positive(next)) {
161 spin_unlock(&next->d_lock);
162 continue;
163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Al Viro5f99f4e2013-05-15 20:23:06 -0400165 spin_unlock(&next->d_lock);
166 spin_unlock(&dentry->d_lock);
167 if (!dir_emit(ctx, next->d_name.name, next->d_name.len,
168 next->d_inode->i_ino, dt_type(next->d_inode)))
169 return 0;
170 spin_lock(&dentry->d_lock);
171 spin_lock_nested(&next->d_lock, DENTRY_D_LOCK_NESTED);
172 /* next is still alive */
173 list_move(q, p);
174 spin_unlock(&next->d_lock);
175 p = q;
176 ctx->pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Al Viro5f99f4e2013-05-15 20:23:06 -0400178 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return 0;
180}
Al Viro12f38872013-09-15 21:20:49 -0400181EXPORT_SYMBOL(dcache_readdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183ssize_t generic_read_dir(struct file *filp, char __user *buf, size_t siz, loff_t *ppos)
184{
185 return -EISDIR;
186}
Al Viro12f38872013-09-15 21:20:49 -0400187EXPORT_SYMBOL(generic_read_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800189const struct file_operations simple_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 .open = dcache_dir_open,
191 .release = dcache_dir_close,
192 .llseek = dcache_dir_lseek,
193 .read = generic_read_dir,
Al Viro5f99f4e2013-05-15 20:23:06 -0400194 .iterate = dcache_readdir,
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200195 .fsync = noop_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
Al Viro12f38872013-09-15 21:20:49 -0400197EXPORT_SYMBOL(simple_dir_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800199const struct inode_operations simple_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 .lookup = simple_lookup,
201};
Al Viro12f38872013-09-15 21:20:49 -0400202EXPORT_SYMBOL(simple_dir_inode_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Hugh Dickins759b9772007-03-05 00:30:28 -0800204static const struct super_operations simple_super_operations = {
205 .statfs = simple_statfs,
206};
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/*
209 * Common helper for pseudo-filesystems (sockfs, pipefs, bdev - stuff that
210 * will never be mountable)
211 */
Al Viro51139ad2010-07-25 23:47:46 +0400212struct dentry *mount_pseudo(struct file_system_type *fs_type, char *name,
Al Viroc74a1cb2011-01-12 16:59:34 -0500213 const struct super_operations *ops,
214 const struct dentry_operations *dops, unsigned long magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
David Howells9249e172012-06-25 12:55:37 +0100216 struct super_block *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 struct dentry *dentry;
218 struct inode *root;
Linus Torvalds26fe5752012-05-10 13:14:12 -0700219 struct qstr d_name = QSTR_INIT(name, strlen(name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
David Howells9249e172012-06-25 12:55:37 +0100221 s = sget(fs_type, NULL, set_anon_super, MS_NOUSER, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (IS_ERR(s))
Al Viro51139ad2010-07-25 23:47:46 +0400223 return ERR_CAST(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Jeff Layton89a4eb42009-08-18 14:11:08 -0700225 s->s_maxbytes = MAX_LFS_FILESIZE;
Alex Nixon3971e1a2008-07-29 22:33:03 -0700226 s->s_blocksize = PAGE_SIZE;
227 s->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 s->s_magic = magic;
Hugh Dickins759b9772007-03-05 00:30:28 -0800229 s->s_op = ops ? ops : &simple_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 s->s_time_gran = 1;
231 root = new_inode(s);
232 if (!root)
233 goto Enomem;
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700234 /*
235 * since this is the first inode, make it number 1. New inodes created
236 * after this must take care not to collide with it (by passing
237 * max_reserved of 1 to iunique).
238 */
239 root->i_ino = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 root->i_mode = S_IFDIR | S_IRUSR | S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 root->i_atime = root->i_mtime = root->i_ctime = CURRENT_TIME;
Al Viroa4464db2011-07-07 15:03:58 -0400242 dentry = __d_alloc(s, &d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (!dentry) {
244 iput(root);
245 goto Enomem;
246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 d_instantiate(dentry, root);
248 s->s_root = dentry;
Al Viroc74a1cb2011-01-12 16:59:34 -0500249 s->s_d_op = dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 s->s_flags |= MS_ACTIVE;
Al Viro51139ad2010-07-25 23:47:46 +0400251 return dget(s->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253Enomem:
Al Viro6f5bbff2009-05-06 01:34:22 -0400254 deactivate_locked_super(s);
Al Viro51139ad2010-07-25 23:47:46 +0400255 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
Al Viro12f38872013-09-15 21:20:49 -0400257EXPORT_SYMBOL(mount_pseudo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Stephen Boyd20955e82012-04-05 14:25:09 -0700259int simple_open(struct inode *inode, struct file *file)
260{
261 if (inode->i_private)
262 file->private_data = inode->i_private;
263 return 0;
264}
Al Viro12f38872013-09-15 21:20:49 -0400265EXPORT_SYMBOL(simple_open);
Stephen Boyd20955e82012-04-05 14:25:09 -0700266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267int simple_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
268{
269 struct inode *inode = old_dentry->d_inode;
270
271 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansend8c76e62006-09-30 23:29:04 -0700272 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400273 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 dget(dentry);
275 d_instantiate(dentry, inode);
276 return 0;
277}
Al Viro12f38872013-09-15 21:20:49 -0400278EXPORT_SYMBOL(simple_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280int simple_empty(struct dentry *dentry)
281{
282 struct dentry *child;
283 int ret = 0;
284
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100285 spin_lock(&dentry->d_lock);
Nick Pigginda502952011-01-07 17:49:33 +1100286 list_for_each_entry(child, &dentry->d_subdirs, d_u.d_child) {
287 spin_lock_nested(&child->d_lock, DENTRY_D_LOCK_NESTED);
288 if (simple_positive(child)) {
289 spin_unlock(&child->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 goto out;
Nick Pigginda502952011-01-07 17:49:33 +1100291 }
292 spin_unlock(&child->d_lock);
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 ret = 1;
295out:
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100296 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return ret;
298}
Al Viro12f38872013-09-15 21:20:49 -0400299EXPORT_SYMBOL(simple_empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301int simple_unlink(struct inode *dir, struct dentry *dentry)
302{
303 struct inode *inode = dentry->d_inode;
304
305 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700306 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 dput(dentry);
308 return 0;
309}
Al Viro12f38872013-09-15 21:20:49 -0400310EXPORT_SYMBOL(simple_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312int simple_rmdir(struct inode *dir, struct dentry *dentry)
313{
314 if (!simple_empty(dentry))
315 return -ENOTEMPTY;
316
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700317 drop_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 simple_unlink(dir, dentry);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700319 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return 0;
321}
Al Viro12f38872013-09-15 21:20:49 -0400322EXPORT_SYMBOL(simple_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324int simple_rename(struct inode *old_dir, struct dentry *old_dentry,
325 struct inode *new_dir, struct dentry *new_dentry)
326{
327 struct inode *inode = old_dentry->d_inode;
328 int they_are_dirs = S_ISDIR(old_dentry->d_inode->i_mode);
329
330 if (!simple_empty(new_dentry))
331 return -ENOTEMPTY;
332
333 if (new_dentry->d_inode) {
334 simple_unlink(new_dir, new_dentry);
Al Viro841590c2011-07-21 15:49:09 -0400335 if (they_are_dirs) {
336 drop_nlink(new_dentry->d_inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700337 drop_nlink(old_dir);
Al Viro841590c2011-07-21 15:49:09 -0400338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700340 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -0700341 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
344 old_dir->i_ctime = old_dir->i_mtime = new_dir->i_ctime =
345 new_dir->i_mtime = inode->i_ctime = CURRENT_TIME;
346
347 return 0;
348}
Al Viro12f38872013-09-15 21:20:49 -0400349EXPORT_SYMBOL(simple_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000351/**
Christoph Hellwigeef23802010-06-04 11:30:01 +0200352 * simple_setattr - setattr for simple filesystem
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000353 * @dentry: dentry
354 * @iattr: iattr structure
355 *
356 * Returns 0 on success, -error on failure.
357 *
Christoph Hellwigeef23802010-06-04 11:30:01 +0200358 * simple_setattr is a simple ->setattr implementation without a proper
359 * implementation of size changes.
360 *
361 * It can either be used for in-memory filesystems or special files
362 * on simple regular filesystems. Anything that needs to change on-disk
363 * or wire state on size changes needs its own setattr method.
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000364 */
365int simple_setattr(struct dentry *dentry, struct iattr *iattr)
366{
367 struct inode *inode = dentry->d_inode;
368 int error;
369
370 error = inode_change_ok(inode, iattr);
371 if (error)
372 return error;
373
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200374 if (iattr->ia_valid & ATTR_SIZE)
375 truncate_setsize(inode, iattr->ia_size);
Christoph Hellwig6a1a90a2010-06-04 11:30:00 +0200376 setattr_copy(inode, iattr);
Christoph Hellwigeef23802010-06-04 11:30:01 +0200377 mark_inode_dirty(inode);
378 return 0;
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000379}
380EXPORT_SYMBOL(simple_setattr);
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382int simple_readpage(struct file *file, struct page *page)
383{
Pekka J Enbergc0d92cb2006-09-29 01:59:09 -0700384 clear_highpage(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 flush_dcache_page(page);
386 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 unlock_page(page);
388 return 0;
389}
Al Viro12f38872013-09-15 21:20:49 -0400390EXPORT_SYMBOL(simple_readpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Nick Pigginafddba42007-10-16 01:25:01 -0700392int simple_write_begin(struct file *file, struct address_space *mapping,
393 loff_t pos, unsigned len, unsigned flags,
394 struct page **pagep, void **fsdata)
395{
396 struct page *page;
397 pgoff_t index;
Nick Pigginafddba42007-10-16 01:25:01 -0700398
399 index = pos >> PAGE_CACHE_SHIFT;
Nick Pigginafddba42007-10-16 01:25:01 -0700400
Nick Piggin54566b22009-01-04 12:00:53 -0800401 page = grab_cache_page_write_begin(mapping, index, flags);
Nick Pigginafddba42007-10-16 01:25:01 -0700402 if (!page)
403 return -ENOMEM;
404
405 *pagep = page;
406
Boaz Harrosh193cf4b2010-01-12 16:18:08 +0200407 if (!PageUptodate(page) && (len != PAGE_CACHE_SIZE)) {
408 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
409
410 zero_user_segments(page, 0, from, from + len, PAGE_CACHE_SIZE);
411 }
412 return 0;
Nick Pigginafddba42007-10-16 01:25:01 -0700413}
Al Viro12f38872013-09-15 21:20:49 -0400414EXPORT_SYMBOL(simple_write_begin);
Nick Pigginafddba42007-10-16 01:25:01 -0700415
Boaz Harroshad2a722f2010-01-12 15:13:47 +0200416/**
417 * simple_write_end - .write_end helper for non-block-device FSes
418 * @available: See .write_end of address_space_operations
419 * @file: "
420 * @mapping: "
421 * @pos: "
422 * @len: "
423 * @copied: "
424 * @page: "
425 * @fsdata: "
426 *
427 * simple_write_end does the minimum needed for updating a page after writing is
428 * done. It has the same API signature as the .write_end of
429 * address_space_operations vector. So it can just be set onto .write_end for
430 * FSes that don't need any other processing. i_mutex is assumed to be held.
431 * Block based filesystems should use generic_write_end().
432 * NOTE: Even though i_size might get updated by this function, mark_inode_dirty
433 * is not called, so a filesystem that actually does store data in .write_inode
434 * should extend on what's done here with a call to mark_inode_dirty() in the
435 * case that i_size has changed.
436 */
437int simple_write_end(struct file *file, struct address_space *mapping,
438 loff_t pos, unsigned len, unsigned copied,
439 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct inode *inode = page->mapping->host;
Boaz Harroshad2a722f2010-01-12 15:13:47 +0200442 loff_t last_pos = pos + copied;
443
444 /* zero the stale part of the page if we did a short copy */
445 if (copied < len) {
446 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
447
448 zero_user(page, from + copied, len - copied);
449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Nick Piggin955eff52007-02-20 13:58:08 -0800451 if (!PageUptodate(page))
452 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /*
454 * No need to use i_size_read() here, the i_size
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800455 * cannot change under us because we hold the i_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 */
Boaz Harroshad2a722f2010-01-12 15:13:47 +0200457 if (last_pos > inode->i_size)
458 i_size_write(inode, last_pos);
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 set_page_dirty(page);
Nick Pigginafddba42007-10-16 01:25:01 -0700461 unlock_page(page);
462 page_cache_release(page);
463
464 return copied;
465}
Al Viro12f38872013-09-15 21:20:49 -0400466EXPORT_SYMBOL(simple_write_end);
Nick Pigginafddba42007-10-16 01:25:01 -0700467
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700468/*
469 * the inodes created here are not hashed. If you use iunique to generate
470 * unique inode values later for this filesystem, then you must take care
471 * to pass it an appropriate max_reserved value to avoid collisions.
472 */
Roberto Sassu7d683a02010-06-03 11:58:28 +0200473int simple_fill_super(struct super_block *s, unsigned long magic,
474 struct tree_descr *files)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct inode *inode;
477 struct dentry *root;
478 struct dentry *dentry;
479 int i;
480
481 s->s_blocksize = PAGE_CACHE_SIZE;
482 s->s_blocksize_bits = PAGE_CACHE_SHIFT;
483 s->s_magic = magic;
Hugh Dickins759b9772007-03-05 00:30:28 -0800484 s->s_op = &simple_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 s->s_time_gran = 1;
486
487 inode = new_inode(s);
488 if (!inode)
489 return -ENOMEM;
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700490 /*
491 * because the root inode is 1, the files array must not contain an
492 * entry at index 1
493 */
494 inode->i_ino = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 inode->i_mode = S_IFDIR | 0755;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
497 inode->i_op = &simple_dir_inode_operations;
498 inode->i_fop = &simple_dir_operations;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200499 set_nlink(inode, 2);
Al Viro48fde702012-01-08 22:15:13 -0500500 root = d_make_root(inode);
501 if (!root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 for (i = 0; !files->name || files->name[0]; i++, files++) {
504 if (!files->name)
505 continue;
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700506
507 /* warn if it tries to conflict with the root inode */
508 if (unlikely(i == 1))
509 printk(KERN_WARNING "%s: %s passed in a files array"
510 "with an index of 1!\n", __func__,
511 s->s_type->name);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 dentry = d_alloc_name(root, files->name);
514 if (!dentry)
515 goto out;
516 inode = new_inode(s);
Konstantin Khlebnikov32096ea2011-11-01 16:12:33 +0300517 if (!inode) {
518 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 goto out;
Konstantin Khlebnikov32096ea2011-11-01 16:12:33 +0300520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 inode->i_mode = S_IFREG | files->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
523 inode->i_fop = files->ops;
524 inode->i_ino = i;
525 d_add(dentry, inode);
526 }
527 s->s_root = root;
528 return 0;
529out:
530 d_genocide(root);
Al Viro640946f2012-04-02 19:22:25 -0400531 shrink_dcache_parent(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 dput(root);
533 return -ENOMEM;
534}
Al Viro12f38872013-09-15 21:20:49 -0400535EXPORT_SYMBOL(simple_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537static DEFINE_SPINLOCK(pin_fs_lock);
538
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400539int simple_pin_fs(struct file_system_type *type, struct vfsmount **mount, int *count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 struct vfsmount *mnt = NULL;
542 spin_lock(&pin_fs_lock);
543 if (unlikely(!*mount)) {
544 spin_unlock(&pin_fs_lock);
Al Viro24529922012-03-17 02:13:52 -0400545 mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (IS_ERR(mnt))
547 return PTR_ERR(mnt);
548 spin_lock(&pin_fs_lock);
549 if (!*mount)
550 *mount = mnt;
551 }
552 mntget(*mount);
553 ++*count;
554 spin_unlock(&pin_fs_lock);
555 mntput(mnt);
556 return 0;
557}
Al Viro12f38872013-09-15 21:20:49 -0400558EXPORT_SYMBOL(simple_pin_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560void simple_release_fs(struct vfsmount **mount, int *count)
561{
562 struct vfsmount *mnt;
563 spin_lock(&pin_fs_lock);
564 mnt = *mount;
565 if (!--*count)
566 *mount = NULL;
567 spin_unlock(&pin_fs_lock);
568 mntput(mnt);
569}
Al Viro12f38872013-09-15 21:20:49 -0400570EXPORT_SYMBOL(simple_release_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Akinobu Mita6d1029b2008-07-04 09:59:51 -0700572/**
573 * simple_read_from_buffer - copy data from the buffer to user space
574 * @to: the user space buffer to read to
575 * @count: the maximum number of bytes to read
576 * @ppos: the current position in the buffer
577 * @from: the buffer to read from
578 * @available: the size of the buffer
579 *
580 * The simple_read_from_buffer() function reads up to @count bytes from the
581 * buffer @from at offset @ppos into the user space address starting at @to.
582 *
583 * On success, the number of bytes read is returned and the offset @ppos is
584 * advanced by this number, or negative value is returned on error.
585 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586ssize_t simple_read_from_buffer(void __user *to, size_t count, loff_t *ppos,
587 const void *from, size_t available)
588{
589 loff_t pos = *ppos;
Steven Rostedt14be2742009-09-18 13:05:42 -0700590 size_t ret;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (pos < 0)
593 return -EINVAL;
Steven Rostedt14be2742009-09-18 13:05:42 -0700594 if (pos >= available || !count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return 0;
596 if (count > available - pos)
597 count = available - pos;
Steven Rostedt14be2742009-09-18 13:05:42 -0700598 ret = copy_to_user(to, from + pos, count);
599 if (ret == count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return -EFAULT;
Steven Rostedt14be2742009-09-18 13:05:42 -0700601 count -= ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 *ppos = pos + count;
603 return count;
604}
Al Viro12f38872013-09-15 21:20:49 -0400605EXPORT_SYMBOL(simple_read_from_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Akinobu Mita6d1029b2008-07-04 09:59:51 -0700607/**
Jiri Slaby6a727b42010-05-01 23:51:22 +0200608 * simple_write_to_buffer - copy data from user space to the buffer
609 * @to: the buffer to write to
610 * @available: the size of the buffer
611 * @ppos: the current position in the buffer
612 * @from: the user space buffer to read from
613 * @count: the maximum number of bytes to read
614 *
615 * The simple_write_to_buffer() function reads up to @count bytes from the user
616 * space address starting at @from into the buffer @to at offset @ppos.
617 *
618 * On success, the number of bytes written is returned and the offset @ppos is
619 * advanced by this number, or negative value is returned on error.
620 **/
621ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos,
622 const void __user *from, size_t count)
623{
624 loff_t pos = *ppos;
625 size_t res;
626
627 if (pos < 0)
628 return -EINVAL;
629 if (pos >= available || !count)
630 return 0;
631 if (count > available - pos)
632 count = available - pos;
633 res = copy_from_user(to + pos, from, count);
634 if (res == count)
635 return -EFAULT;
636 count -= res;
637 *ppos = pos + count;
638 return count;
639}
Al Viro12f38872013-09-15 21:20:49 -0400640EXPORT_SYMBOL(simple_write_to_buffer);
Jiri Slaby6a727b42010-05-01 23:51:22 +0200641
642/**
Akinobu Mita6d1029b2008-07-04 09:59:51 -0700643 * memory_read_from_buffer - copy data from the buffer
644 * @to: the kernel space buffer to read to
645 * @count: the maximum number of bytes to read
646 * @ppos: the current position in the buffer
647 * @from: the buffer to read from
648 * @available: the size of the buffer
649 *
650 * The memory_read_from_buffer() function reads up to @count bytes from the
651 * buffer @from at offset @ppos into the kernel space address starting at @to.
652 *
653 * On success, the number of bytes read is returned and the offset @ppos is
654 * advanced by this number, or negative value is returned on error.
655 **/
Akinobu Mita93b07112008-06-05 22:46:21 -0700656ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos,
657 const void *from, size_t available)
658{
659 loff_t pos = *ppos;
660
661 if (pos < 0)
662 return -EINVAL;
663 if (pos >= available)
664 return 0;
665 if (count > available - pos)
666 count = available - pos;
667 memcpy(to, from + pos, count);
668 *ppos = pos + count;
669
670 return count;
671}
Al Viro12f38872013-09-15 21:20:49 -0400672EXPORT_SYMBOL(memory_read_from_buffer);
Akinobu Mita93b07112008-06-05 22:46:21 -0700673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674/*
675 * Transaction based IO.
676 * The file expects a single write which triggers the transaction, and then
677 * possibly a read which collects the result - which is stored in a
678 * file-local buffer.
679 */
Ingo Molnar76791ab2009-03-25 16:48:35 +0100680
681void simple_transaction_set(struct file *file, size_t n)
682{
683 struct simple_transaction_argresp *ar = file->private_data;
684
685 BUG_ON(n > SIMPLE_TRANSACTION_LIMIT);
686
687 /*
688 * The barrier ensures that ar->size will really remain zero until
689 * ar->data is ready for reading.
690 */
691 smp_mb();
692 ar->size = n;
693}
Al Viro12f38872013-09-15 21:20:49 -0400694EXPORT_SYMBOL(simple_transaction_set);
Ingo Molnar76791ab2009-03-25 16:48:35 +0100695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696char *simple_transaction_get(struct file *file, const char __user *buf, size_t size)
697{
698 struct simple_transaction_argresp *ar;
699 static DEFINE_SPINLOCK(simple_transaction_lock);
700
701 if (size > SIMPLE_TRANSACTION_LIMIT - 1)
702 return ERR_PTR(-EFBIG);
703
704 ar = (struct simple_transaction_argresp *)get_zeroed_page(GFP_KERNEL);
705 if (!ar)
706 return ERR_PTR(-ENOMEM);
707
708 spin_lock(&simple_transaction_lock);
709
710 /* only one write allowed per open */
711 if (file->private_data) {
712 spin_unlock(&simple_transaction_lock);
713 free_page((unsigned long)ar);
714 return ERR_PTR(-EBUSY);
715 }
716
717 file->private_data = ar;
718
719 spin_unlock(&simple_transaction_lock);
720
721 if (copy_from_user(ar->data, buf, size))
722 return ERR_PTR(-EFAULT);
723
724 return ar->data;
725}
Al Viro12f38872013-09-15 21:20:49 -0400726EXPORT_SYMBOL(simple_transaction_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728ssize_t simple_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
729{
730 struct simple_transaction_argresp *ar = file->private_data;
731
732 if (!ar)
733 return 0;
734 return simple_read_from_buffer(buf, size, pos, ar->data, ar->size);
735}
Al Viro12f38872013-09-15 21:20:49 -0400736EXPORT_SYMBOL(simple_transaction_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738int simple_transaction_release(struct inode *inode, struct file *file)
739{
740 free_page((unsigned long)file->private_data);
741 return 0;
742}
Al Viro12f38872013-09-15 21:20:49 -0400743EXPORT_SYMBOL(simple_transaction_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200745/* Simple attribute files */
746
747struct simple_attr {
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800748 int (*get)(void *, u64 *);
749 int (*set)(void *, u64);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200750 char get_buf[24]; /* enough to store a u64 and "\n\0" */
751 char set_buf[24];
752 void *data;
753 const char *fmt; /* format for read operation */
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800754 struct mutex mutex; /* protects access to these buffers */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200755};
756
757/* simple_attr_open is called by an actual attribute open file operation
758 * to set the attribute specific access operations. */
759int simple_attr_open(struct inode *inode, struct file *file,
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800760 int (*get)(void *, u64 *), int (*set)(void *, u64),
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200761 const char *fmt)
762{
763 struct simple_attr *attr;
764
765 attr = kmalloc(sizeof(*attr), GFP_KERNEL);
766 if (!attr)
767 return -ENOMEM;
768
769 attr->get = get;
770 attr->set = set;
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700771 attr->data = inode->i_private;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200772 attr->fmt = fmt;
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800773 mutex_init(&attr->mutex);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200774
775 file->private_data = attr;
776
777 return nonseekable_open(inode, file);
778}
Al Viro12f38872013-09-15 21:20:49 -0400779EXPORT_SYMBOL_GPL(simple_attr_open);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200780
Christoph Hellwig74bedc42008-02-08 04:20:28 -0800781int simple_attr_release(struct inode *inode, struct file *file)
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200782{
783 kfree(file->private_data);
784 return 0;
785}
Al Viro12f38872013-09-15 21:20:49 -0400786EXPORT_SYMBOL_GPL(simple_attr_release); /* GPL-only? This? Really? */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200787
788/* read from the buffer that is filled with the get function */
789ssize_t simple_attr_read(struct file *file, char __user *buf,
790 size_t len, loff_t *ppos)
791{
792 struct simple_attr *attr;
793 size_t size;
794 ssize_t ret;
795
796 attr = file->private_data;
797
798 if (!attr->get)
799 return -EACCES;
800
Christoph Hellwig92613032008-02-08 04:20:27 -0800801 ret = mutex_lock_interruptible(&attr->mutex);
802 if (ret)
803 return ret;
804
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800805 if (*ppos) { /* continued read */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200806 size = strlen(attr->get_buf);
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800807 } else { /* first read */
808 u64 val;
809 ret = attr->get(attr->data, &val);
810 if (ret)
811 goto out;
812
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200813 size = scnprintf(attr->get_buf, sizeof(attr->get_buf),
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800814 attr->fmt, (unsigned long long)val);
815 }
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200816
817 ret = simple_read_from_buffer(buf, len, ppos, attr->get_buf, size);
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800818out:
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800819 mutex_unlock(&attr->mutex);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200820 return ret;
821}
Al Viro12f38872013-09-15 21:20:49 -0400822EXPORT_SYMBOL_GPL(simple_attr_read);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200823
824/* interpret the buffer as a number to call the set function with */
825ssize_t simple_attr_write(struct file *file, const char __user *buf,
826 size_t len, loff_t *ppos)
827{
828 struct simple_attr *attr;
829 u64 val;
830 size_t size;
831 ssize_t ret;
832
833 attr = file->private_data;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200834 if (!attr->set)
835 return -EACCES;
836
Christoph Hellwig92613032008-02-08 04:20:27 -0800837 ret = mutex_lock_interruptible(&attr->mutex);
838 if (ret)
839 return ret;
840
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200841 ret = -EFAULT;
842 size = min(sizeof(attr->set_buf) - 1, len);
843 if (copy_from_user(attr->set_buf, buf, size))
844 goto out;
845
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200846 attr->set_buf[size] = '\0';
Akinobu Mitaf7b88632011-07-19 08:49:25 -0700847 val = simple_strtoll(attr->set_buf, NULL, 0);
Wu Fengguang05cc0ce2009-09-18 13:06:03 -0700848 ret = attr->set(attr->data, val);
849 if (ret == 0)
850 ret = len; /* on success, claim we got the whole input */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200851out:
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800852 mutex_unlock(&attr->mutex);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200853 return ret;
854}
Al Viro12f38872013-09-15 21:20:49 -0400855EXPORT_SYMBOL_GPL(simple_attr_write);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200856
Christoph Hellwig25961102007-10-21 16:42:05 -0700857/**
858 * generic_fh_to_dentry - generic helper for the fh_to_dentry export operation
859 * @sb: filesystem to do the file handle conversion on
860 * @fid: file handle to convert
861 * @fh_len: length of the file handle in bytes
862 * @fh_type: type of file handle
863 * @get_inode: filesystem callback to retrieve inode
864 *
865 * This function decodes @fid as long as it has one of the well-known
866 * Linux filehandle types and calls @get_inode on it to retrieve the
867 * inode for the object specified in the file handle.
868 */
869struct dentry *generic_fh_to_dentry(struct super_block *sb, struct fid *fid,
870 int fh_len, int fh_type, struct inode *(*get_inode)
871 (struct super_block *sb, u64 ino, u32 gen))
872{
873 struct inode *inode = NULL;
874
875 if (fh_len < 2)
876 return NULL;
877
878 switch (fh_type) {
879 case FILEID_INO32_GEN:
880 case FILEID_INO32_GEN_PARENT:
881 inode = get_inode(sb, fid->i32.ino, fid->i32.gen);
882 break;
883 }
884
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +0200885 return d_obtain_alias(inode);
Christoph Hellwig25961102007-10-21 16:42:05 -0700886}
887EXPORT_SYMBOL_GPL(generic_fh_to_dentry);
888
889/**
Yanchuan Nianca186832012-09-05 16:31:29 +0800890 * generic_fh_to_parent - generic helper for the fh_to_parent export operation
Christoph Hellwig25961102007-10-21 16:42:05 -0700891 * @sb: filesystem to do the file handle conversion on
892 * @fid: file handle to convert
893 * @fh_len: length of the file handle in bytes
894 * @fh_type: type of file handle
895 * @get_inode: filesystem callback to retrieve inode
896 *
897 * This function decodes @fid as long as it has one of the well-known
898 * Linux filehandle types and calls @get_inode on it to retrieve the
899 * inode for the _parent_ object specified in the file handle if it
900 * is specified in the file handle, or NULL otherwise.
901 */
902struct dentry *generic_fh_to_parent(struct super_block *sb, struct fid *fid,
903 int fh_len, int fh_type, struct inode *(*get_inode)
904 (struct super_block *sb, u64 ino, u32 gen))
905{
906 struct inode *inode = NULL;
907
908 if (fh_len <= 2)
909 return NULL;
910
911 switch (fh_type) {
912 case FILEID_INO32_GEN_PARENT:
913 inode = get_inode(sb, fid->i32.parent_ino,
914 (fh_len > 3 ? fid->i32.parent_gen : 0));
915 break;
916 }
917
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +0200918 return d_obtain_alias(inode);
Christoph Hellwig25961102007-10-21 16:42:05 -0700919}
920EXPORT_SYMBOL_GPL(generic_fh_to_parent);
921
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200922/**
923 * generic_file_fsync - generic fsync implementation for simple filesystems
924 * @file: file to synchronize
925 * @datasync: only synchronize essential metadata if true
926 *
927 * This is a generic implementation of the fsync method for simple
928 * filesystems which track all non-inode metadata in the buffers list
929 * hanging off the address_space structure.
930 */
Josef Bacik02c24a82011-07-16 20:44:56 -0400931int generic_file_fsync(struct file *file, loff_t start, loff_t end,
932 int datasync)
Al Virod5aacad2009-06-07 14:56:44 -0400933{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200934 struct inode *inode = file->f_mapping->host;
Al Virod5aacad2009-06-07 14:56:44 -0400935 int err;
936 int ret;
937
Josef Bacik02c24a82011-07-16 20:44:56 -0400938 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
939 if (err)
940 return err;
941
942 mutex_lock(&inode->i_mutex);
Al Virod5aacad2009-06-07 14:56:44 -0400943 ret = sync_mapping_buffers(inode->i_mapping);
944 if (!(inode->i_state & I_DIRTY))
Josef Bacik02c24a82011-07-16 20:44:56 -0400945 goto out;
Al Virod5aacad2009-06-07 14:56:44 -0400946 if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
Josef Bacik02c24a82011-07-16 20:44:56 -0400947 goto out;
Al Virod5aacad2009-06-07 14:56:44 -0400948
Christoph Hellwigc37650162010-10-06 10:48:20 +0200949 err = sync_inode_metadata(inode, 1);
Al Virod5aacad2009-06-07 14:56:44 -0400950 if (ret == 0)
951 ret = err;
Josef Bacik02c24a82011-07-16 20:44:56 -0400952out:
953 mutex_unlock(&inode->i_mutex);
Al Virod5aacad2009-06-07 14:56:44 -0400954 return ret;
955}
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200956EXPORT_SYMBOL(generic_file_fsync);
957
Patrick J. LoPresti30ca22c2010-07-22 15:03:41 -0700958/**
959 * generic_check_addressable - Check addressability of file system
960 * @blocksize_bits: log of file system block size
961 * @num_blocks: number of blocks in file system
962 *
963 * Determine whether a file system with @num_blocks blocks (and a
964 * block size of 2**@blocksize_bits) is addressable by the sector_t
965 * and page cache of the system. Return 0 if so and -EFBIG otherwise.
966 */
967int generic_check_addressable(unsigned blocksize_bits, u64 num_blocks)
968{
969 u64 last_fs_block = num_blocks - 1;
Joel Beckera33f13e2010-08-16 12:10:17 -0700970 u64 last_fs_page =
971 last_fs_block >> (PAGE_CACHE_SHIFT - blocksize_bits);
Patrick J. LoPresti30ca22c2010-07-22 15:03:41 -0700972
973 if (unlikely(num_blocks == 0))
974 return 0;
975
976 if ((blocksize_bits < 9) || (blocksize_bits > PAGE_CACHE_SHIFT))
977 return -EINVAL;
978
Joel Beckera33f13e2010-08-16 12:10:17 -0700979 if ((last_fs_block > (sector_t)(~0ULL) >> (blocksize_bits - 9)) ||
980 (last_fs_page > (pgoff_t)(~0ULL))) {
Patrick J. LoPresti30ca22c2010-07-22 15:03:41 -0700981 return -EFBIG;
982 }
983 return 0;
984}
985EXPORT_SYMBOL(generic_check_addressable);
986
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200987/*
988 * No-op implementation of ->fsync for in-memory filesystems.
989 */
Josef Bacik02c24a82011-07-16 20:44:56 -0400990int noop_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200991{
992 return 0;
993}
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200994EXPORT_SYMBOL(noop_fsync);