Blame view

fs/anon_inodes.c 4.91 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
  #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;
5dc8bf813   Davide Libenzi   signal/timer/even...
26

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,
  };
ca7068c41   Al Viro   anon_inodes: move...
38
39
40
  static struct dentry *anon_inodefs_mount(struct file_system_type *fs_type,
  				int flags, const char *dev_name, void *data)
  {
75c5a52da   Jan Kara   vfs: Allocate ano...
41
  	return mount_pseudo(fs_type, "anon_inode:", NULL,
ca7068c41   Al Viro   anon_inodes: move...
42
  			&anon_inodefs_dentry_operations, ANON_INODE_FS_MAGIC);
ca7068c41   Al Viro   anon_inodes: move...
43
44
45
46
47
48
49
  }
  
  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...
50
  /**
c0d8768af   Namhyung Kim   anon_inodes: fix ...
51
52
53
   * 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...
54
   *
5dc8bf813   Davide Libenzi   signal/timer/even...
55
   * @name:    [in]    name of the "class" of the new file
7d9dbca34   Ulrich Drepper   flag parameters: ...
56
57
58
   * @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...
59
60
61
   *
   * 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...
62
   * All the files created with anon_inode_getfile() will share a single inode,
5dc8bf813   Davide Libenzi   signal/timer/even...
63
   * hence saving memory and avoiding code duplication for the file/inode/dentry
562787a5c   Davide Libenzi   anonfd: split int...
64
   * setup.  Returns the newly created file* or an error pointer.
5dc8bf813   Davide Libenzi   signal/timer/even...
65
   */
562787a5c   Davide Libenzi   anonfd: split int...
66
67
68
  struct file *anon_inode_getfile(const char *name,
  				const struct file_operations *fops,
  				void *priv, int flags)
5dc8bf813   Davide Libenzi   signal/timer/even...
69
70
  {
  	struct qstr this;
2c48b9c45   Al Viro   switch alloc_file...
71
  	struct path path;
5dc8bf813   Davide Libenzi   signal/timer/even...
72
  	struct file *file;
5dc8bf813   Davide Libenzi   signal/timer/even...
73
74
  
  	if (IS_ERR(anon_inode_inode))
562787a5c   Davide Libenzi   anonfd: split int...
75
  		return ERR_PTR(-ENODEV);
5dc8bf813   Davide Libenzi   signal/timer/even...
76

e3a2a0d4e   Christian Borntraeger   anon_inodes: use ...
77
  	if (fops->owner && !try_module_get(fops->owner))
562787a5c   Davide Libenzi   anonfd: split int...
78
  		return ERR_PTR(-ENOENT);
5dc8bf813   Davide Libenzi   signal/timer/even...
79
80
81
82
83
  
  	/*
  	 * Link the inode to a directory entry by creating a unique name
  	 * using the inode sequence number.
  	 */
39b652527   Anatol Pomozov   fs: Preserve erro...
84
  	file = ERR_PTR(-ENOMEM);
5dc8bf813   Davide Libenzi   signal/timer/even...
85
86
87
  	this.name = name;
  	this.len = strlen(name);
  	this.hash = 0;
4b936885a   Nick Piggin   fs: improve scala...
88
  	path.dentry = d_alloc_pseudo(anon_inode_mnt->mnt_sb, &this);
2c48b9c45   Al Viro   switch alloc_file...
89
  	if (!path.dentry)
562787a5c   Davide Libenzi   anonfd: split int...
90
  		goto err_module;
96fdc72dd   Davide Libenzi   anon-inodes use o...
91

2c48b9c45   Al Viro   switch alloc_file...
92
  	path.mnt = mntget(anon_inode_mnt);
96fdc72dd   Davide Libenzi   anon-inodes use o...
93
94
  	/*
  	 * We know the anon_inode inode count is always greater than zero,
7de9c6ee3   Al Viro   new helper: ihold()
95
  	 * so ihold() is safe.
96fdc72dd   Davide Libenzi   anon-inodes use o...
96
  	 */
7de9c6ee3   Al Viro   new helper: ihold()
97
  	ihold(anon_inode_inode);
96fdc72dd   Davide Libenzi   anon-inodes use o...
98

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

5300990c0   Al Viro   Sanitize f_flags ...
101
  	file = alloc_file(&path, OPEN_FMODE(flags), fops);
39b652527   Anatol Pomozov   fs: Preserve erro...
102
  	if (IS_ERR(file))
430e285e0   Dave Hansen   [PATCH] fix up ne...
103
  		goto err_dput;
96fdc72dd   Davide Libenzi   anon-inodes use o...
104
  	file->f_mapping = anon_inode_inode->i_mapping;
5dc8bf813   Davide Libenzi   signal/timer/even...
105

628ff7c1d   Roland Dreier   anonfd: Allow mak...
106
  	file->f_flags = flags & (O_ACCMODE | O_NONBLOCK);
5dc8bf813   Davide Libenzi   signal/timer/even...
107
  	file->private_data = priv;
562787a5c   Davide Libenzi   anonfd: split int...
108
109
110
  	return file;
  
  err_dput:
2c48b9c45   Al Viro   switch alloc_file...
111
  	path_put(&path);
562787a5c   Davide Libenzi   anonfd: split int...
112
113
  err_module:
  	module_put(fops->owner);
39b652527   Anatol Pomozov   fs: Preserve erro...
114
  	return file;
562787a5c   Davide Libenzi   anonfd: split int...
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
  }
  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...
150
  	fd_install(fd, file);
2030a42ce   Al Viro   [PATCH] sanitize ...
151
  	return fd;
5dc8bf813   Davide Libenzi   signal/timer/even...
152
153
154
  
  err_put_unused_fd:
  	put_unused_fd(fd);
5dc8bf813   Davide Libenzi   signal/timer/even...
155
156
  	return error;
  }
d6d281684   Avi Kivity   KVM: Remove kvmfs...
157
  EXPORT_SYMBOL_GPL(anon_inode_getfd);
5dc8bf813   Davide Libenzi   signal/timer/even...
158

5dc8bf813   Davide Libenzi   signal/timer/even...
159
160
  static int __init anon_inode_init(void)
  {
5dc8bf813   Davide Libenzi   signal/timer/even...
161
  	anon_inode_mnt = kern_mount(&anon_inode_fs_type);
75c5a52da   Jan Kara   vfs: Allocate ano...
162
163
164
  	if (IS_ERR(anon_inode_mnt))
  		panic("anon_inode_init() kernel mount failed (%ld)
  ", PTR_ERR(anon_inode_mnt));
5dc8bf813   Davide Libenzi   signal/timer/even...
165

75c5a52da   Jan Kara   vfs: Allocate ano...
166
167
168
169
170
171
  	anon_inode_inode = alloc_anon_inode(anon_inode_mnt->mnt_sb);
  	if (IS_ERR(anon_inode_inode))
  		panic("anon_inode_init() inode allocation failed (%ld)
  ", PTR_ERR(anon_inode_inode));
  
  	return 0;
5dc8bf813   Davide Libenzi   signal/timer/even...
172
173
174
  }
  
  fs_initcall(anon_inode_init);