Blame view

fs/anon_inodes.c 6.43 KB
5dc8bf813   Davide Libenzi   signal/timer/even...
1
2
3
4
5
6
7
8
9
  /*
   *  fs/anon_inodes.c
   *
   *  Copyright (C) 2007  Davide Libenzi <davidel@xmailserver.org>
   *
   *  Thanks to Arnd Bergmann for code review and suggestions.
   *  More changes for Thomas Gleixner suggestions.
   *
   */
a99bbaf5e   Alexey Dobriyan   headers: remove s...
10
  #include <linux/cred.h>
5dc8bf813   Davide Libenzi   signal/timer/even...
11
12
  #include <linux/file.h>
  #include <linux/poll.h>
a99bbaf5e   Alexey Dobriyan   headers: remove s...
13
  #include <linux/sched.h>
5dc8bf813   Davide Libenzi   signal/timer/even...
14
15
16
17
18
19
20
21
22
23
24
25
26
  #include <linux/init.h>
  #include <linux/fs.h>
  #include <linux/mount.h>
  #include <linux/module.h>
  #include <linux/kernel.h>
  #include <linux/magic.h>
  #include <linux/anon_inodes.h>
  
  #include <asm/uaccess.h>
  
  static struct vfsmount *anon_inode_mnt __read_mostly;
  static struct inode *anon_inode_inode;
  static const struct file_operations anon_inode_fops;
b9aff027b   Nick Piggin   fs: anon_inodes i...
27
28
29
30
31
32
33
34
  /*
   * anon_inodefs_dname() is called from d_path().
   */
  static char *anon_inodefs_dname(struct dentry *dentry, char *buffer, int buflen)
  {
  	return dynamic_dname(dentry, buffer, buflen, "anon_inode:%s",
  				dentry->d_name.name);
  }
c74a1cbb3   Al Viro   pass default dent...
35
36
37
  static const struct dentry_operations anon_inodefs_dentry_operations = {
  	.d_dname	= anon_inodefs_dname,
  };
d3a9262e5   Peter Zijlstra   fs: Provide empty...
38
39
40
41
42
43
44
45
46
47
48
49
  /*
   * nop .set_page_dirty method so that people can use .page_mkwrite on
   * anon inodes.
   */
  static int anon_set_page_dirty(struct page *page)
  {
  	return 0;
  };
  
  static const struct address_space_operations anon_aops = {
  	.set_page_dirty = anon_set_page_dirty,
  };
ca7068c41   Al Viro   anon_inodes: move...
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  /*
   * A single inode exists for all anon_inode files. Contrary to pipes,
   * anon_inode inodes have no associated per-instance data, so we need
   * only allocate one of them.
   */
  static struct inode *anon_inode_mkinode(struct super_block *s)
  {
  	struct inode *inode = new_inode_pseudo(s);
  
  	if (!inode)
  		return ERR_PTR(-ENOMEM);
  
  	inode->i_ino = get_next_ino();
  	inode->i_fop = &anon_inode_fops;
  
  	inode->i_mapping->a_ops = &anon_aops;
  
  	/*
  	 * Mark the inode dirty from the very beginning,
  	 * that way it will never be moved to the dirty
  	 * list because mark_inode_dirty() will think
  	 * that it already _is_ on the dirty list.
  	 */
  	inode->i_state = I_DIRTY;
  	inode->i_mode = S_IRUSR | S_IWUSR;
  	inode->i_uid = current_fsuid();
  	inode->i_gid = current_fsgid();
  	inode->i_flags |= S_PRIVATE;
  	inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  	return inode;
  }
  
  static struct dentry *anon_inodefs_mount(struct file_system_type *fs_type,
  				int flags, const char *dev_name, void *data)
  {
  	struct dentry *root;
  	root = mount_pseudo(fs_type, "anon_inode:", NULL,
  			&anon_inodefs_dentry_operations, ANON_INODE_FS_MAGIC);
  	if (!IS_ERR(root)) {
  		struct super_block *s = root->d_sb;
  		anon_inode_inode = anon_inode_mkinode(s);
  		if (IS_ERR(anon_inode_inode)) {
  			dput(root);
  			deactivate_locked_super(s);
  			root = ERR_CAST(anon_inode_inode);
  		}
  	}
  	return root;
  }
  
  static struct file_system_type anon_inode_fs_type = {
  	.name		= "anon_inodefs",
  	.mount		= anon_inodefs_mount,
  	.kill_sb	= kill_anon_super,
  };
5dc8bf813   Davide Libenzi   signal/timer/even...
105
  /**
c0d8768af   Namhyung Kim   anon_inodes: fix ...
106
107
108
   * anon_inode_getfile - creates a new file instance by hooking it up to an
   *                      anonymous inode, and a dentry that describe the "class"
   *                      of the file
5dc8bf813   Davide Libenzi   signal/timer/even...
109
   *
5dc8bf813   Davide Libenzi   signal/timer/even...
110
   * @name:    [in]    name of the "class" of the new file
7d9dbca34   Ulrich Drepper   flag parameters: ...
111
112
113
   * @fops:    [in]    file operations for the new file
   * @priv:    [in]    private data for the new file (will be file's private_data)
   * @flags:   [in]    flags
5dc8bf813   Davide Libenzi   signal/timer/even...
114
115
116
   *
   * Creates a new file by hooking it on a single inode. This is useful for files
   * that do not need to have a full-fledged inode in order to operate correctly.
562787a5c   Davide Libenzi   anonfd: split int...
117
   * All the files created with anon_inode_getfile() will share a single inode,
5dc8bf813   Davide Libenzi   signal/timer/even...
118
   * hence saving memory and avoiding code duplication for the file/inode/dentry
562787a5c   Davide Libenzi   anonfd: split int...
119
   * setup.  Returns the newly created file* or an error pointer.
5dc8bf813   Davide Libenzi   signal/timer/even...
120
   */
562787a5c   Davide Libenzi   anonfd: split int...
121
122
123
  struct file *anon_inode_getfile(const char *name,
  				const struct file_operations *fops,
  				void *priv, int flags)
5dc8bf813   Davide Libenzi   signal/timer/even...
124
125
  {
  	struct qstr this;
2c48b9c45   Al Viro   switch alloc_file...
126
  	struct path path;
5dc8bf813   Davide Libenzi   signal/timer/even...
127
  	struct file *file;
562787a5c   Davide Libenzi   anonfd: split int...
128
  	int error;
5dc8bf813   Davide Libenzi   signal/timer/even...
129
130
  
  	if (IS_ERR(anon_inode_inode))
562787a5c   Davide Libenzi   anonfd: split int...
131
  		return ERR_PTR(-ENODEV);
5dc8bf813   Davide Libenzi   signal/timer/even...
132

e3a2a0d4e   Christian Borntraeger   anon_inodes: use ...
133
  	if (fops->owner && !try_module_get(fops->owner))
562787a5c   Davide Libenzi   anonfd: split int...
134
  		return ERR_PTR(-ENOENT);
5dc8bf813   Davide Libenzi   signal/timer/even...
135
136
137
138
139
140
141
142
143
  
  	/*
  	 * Link the inode to a directory entry by creating a unique name
  	 * using the inode sequence number.
  	 */
  	error = -ENOMEM;
  	this.name = name;
  	this.len = strlen(name);
  	this.hash = 0;
4b936885a   Nick Piggin   fs: improve scala...
144
  	path.dentry = d_alloc_pseudo(anon_inode_mnt->mnt_sb, &this);
2c48b9c45   Al Viro   switch alloc_file...
145
  	if (!path.dentry)
562787a5c   Davide Libenzi   anonfd: split int...
146
  		goto err_module;
96fdc72dd   Davide Libenzi   anon-inodes use o...
147

2c48b9c45   Al Viro   switch alloc_file...
148
  	path.mnt = mntget(anon_inode_mnt);
96fdc72dd   Davide Libenzi   anon-inodes use o...
149
150
  	/*
  	 * We know the anon_inode inode count is always greater than zero,
7de9c6ee3   Al Viro   new helper: ihold()
151
  	 * so ihold() is safe.
96fdc72dd   Davide Libenzi   anon-inodes use o...
152
  	 */
7de9c6ee3   Al Viro   new helper: ihold()
153
  	ihold(anon_inode_inode);
96fdc72dd   Davide Libenzi   anon-inodes use o...
154

2c48b9c45   Al Viro   switch alloc_file...
155
  	d_instantiate(path.dentry, anon_inode_inode);
5dc8bf813   Davide Libenzi   signal/timer/even...
156

430e285e0   Dave Hansen   [PATCH] fix up ne...
157
  	error = -ENFILE;
5300990c0   Al Viro   Sanitize f_flags ...
158
  	file = alloc_file(&path, OPEN_FMODE(flags), fops);
430e285e0   Dave Hansen   [PATCH] fix up ne...
159
160
  	if (!file)
  		goto err_dput;
96fdc72dd   Davide Libenzi   anon-inodes use o...
161
  	file->f_mapping = anon_inode_inode->i_mapping;
5dc8bf813   Davide Libenzi   signal/timer/even...
162
163
  
  	file->f_pos = 0;
628ff7c1d   Roland Dreier   anonfd: Allow mak...
164
  	file->f_flags = flags & (O_ACCMODE | O_NONBLOCK);
5dc8bf813   Davide Libenzi   signal/timer/even...
165
166
  	file->f_version = 0;
  	file->private_data = priv;
562787a5c   Davide Libenzi   anonfd: split int...
167
168
169
  	return file;
  
  err_dput:
2c48b9c45   Al Viro   switch alloc_file...
170
  	path_put(&path);
562787a5c   Davide Libenzi   anonfd: split int...
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
  err_module:
  	module_put(fops->owner);
  	return ERR_PTR(error);
  }
  EXPORT_SYMBOL_GPL(anon_inode_getfile);
  
  /**
   * anon_inode_getfd - creates a new file instance by hooking it up to an
   *                    anonymous inode, and a dentry that describe the "class"
   *                    of the file
   *
   * @name:    [in]    name of the "class" of the new file
   * @fops:    [in]    file operations for the new file
   * @priv:    [in]    private data for the new file (will be file's private_data)
   * @flags:   [in]    flags
   *
   * Creates a new file by hooking it on a single inode. This is useful for files
   * that do not need to have a full-fledged inode in order to operate correctly.
   * All the files created with anon_inode_getfd() will share a single inode,
   * hence saving memory and avoiding code duplication for the file/inode/dentry
   * setup.  Returns new descriptor or an error code.
   */
  int anon_inode_getfd(const char *name, const struct file_operations *fops,
  		     void *priv, int flags)
  {
  	int error, fd;
  	struct file *file;
  
  	error = get_unused_fd_flags(flags);
  	if (error < 0)
  		return error;
  	fd = error;
  
  	file = anon_inode_getfile(name, fops, priv, flags);
  	if (IS_ERR(file)) {
  		error = PTR_ERR(file);
  		goto err_put_unused_fd;
  	}
5dc8bf813   Davide Libenzi   signal/timer/even...
209
  	fd_install(fd, file);
2030a42ce   Al Viro   [PATCH] sanitize ...
210
  	return fd;
5dc8bf813   Davide Libenzi   signal/timer/even...
211
212
213
  
  err_put_unused_fd:
  	put_unused_fd(fd);
5dc8bf813   Davide Libenzi   signal/timer/even...
214
215
  	return error;
  }
d6d281684   Avi Kivity   KVM: Remove kvmfs...
216
  EXPORT_SYMBOL_GPL(anon_inode_getfd);
5dc8bf813   Davide Libenzi   signal/timer/even...
217

5dc8bf813   Davide Libenzi   signal/timer/even...
218
219
220
221
222
223
224
225
226
227
228
229
  static int __init anon_inode_init(void)
  {
  	int error;
  
  	error = register_filesystem(&anon_inode_fs_type);
  	if (error)
  		goto err_exit;
  	anon_inode_mnt = kern_mount(&anon_inode_fs_type);
  	if (IS_ERR(anon_inode_mnt)) {
  		error = PTR_ERR(anon_inode_mnt);
  		goto err_unregister_filesystem;
  	}
5dc8bf813   Davide Libenzi   signal/timer/even...
230
  	return 0;
5dc8bf813   Davide Libenzi   signal/timer/even...
231
232
233
234
235
236
237
238
  err_unregister_filesystem:
  	unregister_filesystem(&anon_inode_fs_type);
  err_exit:
  	panic(KERN_ERR "anon_inode_init() failed (%d)
  ", error);
  }
  
  fs_initcall(anon_inode_init);