4 * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
6 * Thanks to Arnd Bergmann for code review and suggestions.
7 * More changes for Thomas Gleixner suggestions.
11 #include <linux/cred.h>
12 #include <linux/file.h>
13 #include <linux/poll.h>
14 #include <linux/sched.h>
15 #include <linux/slab.h>
16 #include <linux/init.h>
18 #include <linux/mount.h>
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/magic.h>
22 #include <linux/anon_inodes.h>
24 #include <asm/uaccess.h>
26 static struct vfsmount
*anon_inode_mnt __read_mostly
;
27 static struct inode
*anon_inode_inode
;
28 static const struct file_operations anon_inode_fops
;
30 static int anon_inodefs_get_sb(struct file_system_type
*fs_type
, int flags
,
31 const char *dev_name
, void *data
,
34 return get_sb_pseudo(fs_type
, "anon_inode:", NULL
, ANON_INODE_FS_MAGIC
,
38 static int anon_inodefs_delete_dentry(struct dentry
*dentry
)
41 * We faked vfs to believe the dentry was hashed when we created it.
42 * Now we restore the flag so that dput() will work correctly.
44 dentry
->d_flags
|= DCACHE_UNHASHED
;
48 static struct file_system_type anon_inode_fs_type
= {
49 .name
= "anon_inodefs",
50 .get_sb
= anon_inodefs_get_sb
,
51 .kill_sb
= kill_anon_super
,
53 static const struct dentry_operations anon_inodefs_dentry_operations
= {
54 .d_delete
= anon_inodefs_delete_dentry
,
58 * nop .set_page_dirty method so that people can use .page_mkwrite on
61 static int anon_set_page_dirty(struct page
*page
)
66 static const struct address_space_operations anon_aops
= {
67 .set_page_dirty
= anon_set_page_dirty
,
71 * anon_inode_getfd - creates a new file instance by hooking it up to an
72 * anonymous inode, and a dentry that describe the "class"
75 * @name: [in] name of the "class" of the new file
76 * @fops: [in] file operations for the new file
77 * @priv: [in] private data for the new file (will be file's private_data)
80 * Creates a new file by hooking it on a single inode. This is useful for files
81 * that do not need to have a full-fledged inode in order to operate correctly.
82 * All the files created with anon_inode_getfile() will share a single inode,
83 * hence saving memory and avoiding code duplication for the file/inode/dentry
84 * setup. Returns the newly created file* or an error pointer.
86 struct file
*anon_inode_getfile(const char *name
,
87 const struct file_operations
*fops
,
88 void *priv
, int flags
)
91 struct dentry
*dentry
;
95 if (IS_ERR(anon_inode_inode
))
96 return ERR_PTR(-ENODEV
);
98 if (fops
->owner
&& !try_module_get(fops
->owner
))
99 return ERR_PTR(-ENOENT
);
102 * Link the inode to a directory entry by creating a unique name
103 * using the inode sequence number.
107 this.len
= strlen(name
);
109 dentry
= d_alloc(anon_inode_mnt
->mnt_sb
->s_root
, &this);
114 * We know the anon_inode inode count is always greater than zero,
115 * so we can avoid doing an igrab() and we can use an open-coded
118 atomic_inc(&anon_inode_inode
->i_count
);
120 dentry
->d_op
= &anon_inodefs_dentry_operations
;
121 /* Do not publish this dentry inside the global dentry hash table */
122 dentry
->d_flags
&= ~DCACHE_UNHASHED
;
123 d_instantiate(dentry
, anon_inode_inode
);
126 file
= alloc_file(anon_inode_mnt
, dentry
,
127 FMODE_READ
| FMODE_WRITE
, fops
);
130 file
->f_mapping
= anon_inode_inode
->i_mapping
;
133 file
->f_flags
= O_RDWR
| (flags
& O_NONBLOCK
);
135 file
->private_data
= priv
;
142 module_put(fops
->owner
);
143 return ERR_PTR(error
);
145 EXPORT_SYMBOL_GPL(anon_inode_getfile
);
148 * anon_inode_getfd - creates a new file instance by hooking it up to an
149 * anonymous inode, and a dentry that describe the "class"
152 * @name: [in] name of the "class" of the new file
153 * @fops: [in] file operations for the new file
154 * @priv: [in] private data for the new file (will be file's private_data)
157 * Creates a new file by hooking it on a single inode. This is useful for files
158 * that do not need to have a full-fledged inode in order to operate correctly.
159 * All the files created with anon_inode_getfd() will share a single inode,
160 * hence saving memory and avoiding code duplication for the file/inode/dentry
161 * setup. Returns new descriptor or an error code.
163 int anon_inode_getfd(const char *name
, const struct file_operations
*fops
,
164 void *priv
, int flags
)
169 error
= get_unused_fd_flags(flags
);
174 file
= anon_inode_getfile(name
, fops
, priv
, flags
);
176 error
= PTR_ERR(file
);
177 goto err_put_unused_fd
;
179 fd_install(fd
, file
);
187 EXPORT_SYMBOL_GPL(anon_inode_getfd
);
190 * A single inode exists for all anon_inode files. Contrary to pipes,
191 * anon_inode inodes have no associated per-instance data, so we need
192 * only allocate one of them.
194 static struct inode
*anon_inode_mkinode(void)
196 struct inode
*inode
= new_inode(anon_inode_mnt
->mnt_sb
);
199 return ERR_PTR(-ENOMEM
);
201 inode
->i_fop
= &anon_inode_fops
;
203 inode
->i_mapping
->a_ops
= &anon_aops
;
206 * Mark the inode dirty from the very beginning,
207 * that way it will never be moved to the dirty
208 * list because mark_inode_dirty() will think
209 * that it already _is_ on the dirty list.
211 inode
->i_state
= I_DIRTY
;
212 inode
->i_mode
= S_IRUSR
| S_IWUSR
;
213 inode
->i_uid
= current_fsuid();
214 inode
->i_gid
= current_fsgid();
215 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
219 static int __init
anon_inode_init(void)
223 error
= register_filesystem(&anon_inode_fs_type
);
226 anon_inode_mnt
= kern_mount(&anon_inode_fs_type
);
227 if (IS_ERR(anon_inode_mnt
)) {
228 error
= PTR_ERR(anon_inode_mnt
);
229 goto err_unregister_filesystem
;
231 anon_inode_inode
= anon_inode_mkinode();
232 if (IS_ERR(anon_inode_inode
)) {
233 error
= PTR_ERR(anon_inode_inode
);
240 mntput(anon_inode_mnt
);
241 err_unregister_filesystem
:
242 unregister_filesystem(&anon_inode_fs_type
);
244 panic(KERN_ERR
"anon_inode_init() failed (%d)\n", error
);
247 fs_initcall(anon_inode_init
);