Blame view

fs/anon_inodes.c 6.44 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
27
28
29
30
31
32
33
34
  #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;
  
  static int anon_inodefs_get_sb(struct file_system_type *fs_type, int flags,
  			       const char *dev_name, void *data,
  			       struct vfsmount *mnt)
  {
  	return get_sb_pseudo(fs_type, "anon_inode:", NULL, ANON_INODE_FS_MAGIC,
  			     mnt);
  }
b9aff027b   Nick Piggin   fs: anon_inodes i...
35
36
37
38
39
40
41
42
  /*
   * 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);
  }
5dc8bf813   Davide Libenzi   signal/timer/even...
43
44
45
46
47
  static struct file_system_type anon_inode_fs_type = {
  	.name		= "anon_inodefs",
  	.get_sb		= anon_inodefs_get_sb,
  	.kill_sb	= kill_anon_super,
  };
3ba13d179   Al Viro   constify dentry_o...
48
  static const struct dentry_operations anon_inodefs_dentry_operations = {
b9aff027b   Nick Piggin   fs: anon_inodes i...
49
  	.d_dname	= anon_inodefs_dname,
5dc8bf813   Davide Libenzi   signal/timer/even...
50
  };
d3a9262e5   Peter Zijlstra   fs: Provide empty...
51
52
53
54
55
56
57
58
59
60
61
62
  /*
   * 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,
  };
5dc8bf813   Davide Libenzi   signal/timer/even...
63
  /**
4b4e5a141   J. Bruce Fields   Fix trivial typos...
64
   * anon_inode_getfd - creates a new file instance by hooking it up to an
5dc8bf813   Davide Libenzi   signal/timer/even...
65
66
67
   *                    anonymous inode, and a dentry that describe the "class"
   *                    of the file
   *
5dc8bf813   Davide Libenzi   signal/timer/even...
68
   * @name:    [in]    name of the "class" of the new file
7d9dbca34   Ulrich Drepper   flag parameters: ...
69
70
71
   * @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...
72
73
74
   *
   * 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...
75
   * All the files created with anon_inode_getfile() will share a single inode,
5dc8bf813   Davide Libenzi   signal/timer/even...
76
   * hence saving memory and avoiding code duplication for the file/inode/dentry
562787a5c   Davide Libenzi   anonfd: split int...
77
   * setup.  Returns the newly created file* or an error pointer.
5dc8bf813   Davide Libenzi   signal/timer/even...
78
   */
562787a5c   Davide Libenzi   anonfd: split int...
79
80
81
  struct file *anon_inode_getfile(const char *name,
  				const struct file_operations *fops,
  				void *priv, int flags)
5dc8bf813   Davide Libenzi   signal/timer/even...
82
83
  {
  	struct qstr this;
2c48b9c45   Al Viro   switch alloc_file...
84
  	struct path path;
5dc8bf813   Davide Libenzi   signal/timer/even...
85
  	struct file *file;
562787a5c   Davide Libenzi   anonfd: split int...
86
  	int error;
5dc8bf813   Davide Libenzi   signal/timer/even...
87
88
  
  	if (IS_ERR(anon_inode_inode))
562787a5c   Davide Libenzi   anonfd: split int...
89
  		return ERR_PTR(-ENODEV);
5dc8bf813   Davide Libenzi   signal/timer/even...
90

e3a2a0d4e   Christian Borntraeger   anon_inodes: use ...
91
  	if (fops->owner && !try_module_get(fops->owner))
562787a5c   Davide Libenzi   anonfd: split int...
92
  		return ERR_PTR(-ENOENT);
5dc8bf813   Davide Libenzi   signal/timer/even...
93
94
95
96
97
98
99
100
101
  
  	/*
  	 * 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;
2c48b9c45   Al Viro   switch alloc_file...
102
103
  	path.dentry = d_alloc(anon_inode_mnt->mnt_sb->s_root, &this);
  	if (!path.dentry)
562787a5c   Davide Libenzi   anonfd: split int...
104
  		goto err_module;
96fdc72dd   Davide Libenzi   anon-inodes use o...
105

2c48b9c45   Al Viro   switch alloc_file...
106
  	path.mnt = mntget(anon_inode_mnt);
96fdc72dd   Davide Libenzi   anon-inodes use o...
107
108
109
110
111
112
  	/*
  	 * We know the anon_inode inode count is always greater than zero,
  	 * so we can avoid doing an igrab() and we can use an open-coded
  	 * atomic_inc().
  	 */
  	atomic_inc(&anon_inode_inode->i_count);
2c48b9c45   Al Viro   switch alloc_file...
113
  	path.dentry->d_op = &anon_inodefs_dentry_operations;
2c48b9c45   Al Viro   switch alloc_file...
114
  	d_instantiate(path.dentry, anon_inode_inode);
5dc8bf813   Davide Libenzi   signal/timer/even...
115

430e285e0   Dave Hansen   [PATCH] fix up ne...
116
  	error = -ENFILE;
5300990c0   Al Viro   Sanitize f_flags ...
117
  	file = alloc_file(&path, OPEN_FMODE(flags), fops);
430e285e0   Dave Hansen   [PATCH] fix up ne...
118
119
  	if (!file)
  		goto err_dput;
96fdc72dd   Davide Libenzi   anon-inodes use o...
120
  	file->f_mapping = anon_inode_inode->i_mapping;
5dc8bf813   Davide Libenzi   signal/timer/even...
121
122
  
  	file->f_pos = 0;
628ff7c1d   Roland Dreier   anonfd: Allow mak...
123
  	file->f_flags = flags & (O_ACCMODE | O_NONBLOCK);
5dc8bf813   Davide Libenzi   signal/timer/even...
124
125
  	file->f_version = 0;
  	file->private_data = priv;
562787a5c   Davide Libenzi   anonfd: split int...
126
127
128
  	return file;
  
  err_dput:
2c48b9c45   Al Viro   switch alloc_file...
129
  	path_put(&path);
562787a5c   Davide Libenzi   anonfd: split int...
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
  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...
168
  	fd_install(fd, file);
2030a42ce   Al Viro   [PATCH] sanitize ...
169
  	return fd;
5dc8bf813   Davide Libenzi   signal/timer/even...
170
171
172
  
  err_put_unused_fd:
  	put_unused_fd(fd);
5dc8bf813   Davide Libenzi   signal/timer/even...
173
174
  	return error;
  }
d6d281684   Avi Kivity   KVM: Remove kvmfs...
175
  EXPORT_SYMBOL_GPL(anon_inode_getfd);
5dc8bf813   Davide Libenzi   signal/timer/even...
176
177
  
  /*
4b4e5a141   J. Bruce Fields   Fix trivial typos...
178
179
180
   * 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.
5dc8bf813   Davide Libenzi   signal/timer/even...
181
182
183
184
185
186
187
188
189
   */
  static struct inode *anon_inode_mkinode(void)
  {
  	struct inode *inode = new_inode(anon_inode_mnt->mnt_sb);
  
  	if (!inode)
  		return ERR_PTR(-ENOMEM);
  
  	inode->i_fop = &anon_inode_fops;
d3a9262e5   Peter Zijlstra   fs: Provide empty...
190
  	inode->i_mapping->a_ops = &anon_aops;
5dc8bf813   Davide Libenzi   signal/timer/even...
191
192
193
194
195
196
197
  	/*
  	 * 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;
1eb2cbb6d   Al Viro   Revert "anon_inod...
198
  	inode->i_mode = S_IRUSR | S_IWUSR;
da9592ede   David Howells   CRED: Wrap task c...
199
200
  	inode->i_uid = current_fsuid();
  	inode->i_gid = current_fsgid();
3836a03d9   Eric Paris   anon_inodes: mark...
201
  	inode->i_flags |= S_PRIVATE;
5dc8bf813   Davide Libenzi   signal/timer/even...
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
  	inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  	return inode;
  }
  
  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;
  	}
  	anon_inode_inode = anon_inode_mkinode();
  	if (IS_ERR(anon_inode_inode)) {
  		error = PTR_ERR(anon_inode_inode);
  		goto err_mntput;
  	}
  
  	return 0;
  
  err_mntput:
  	mntput(anon_inode_mnt);
  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);