Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0
2 : : /*
3 : : * linux/fs/filesystems.c
4 : : *
5 : : * Copyright (C) 1991, 1992 Linus Torvalds
6 : : *
7 : : * table of configured filesystems
8 : : */
9 : :
10 : : #include <linux/syscalls.h>
11 : : #include <linux/fs.h>
12 : : #include <linux/proc_fs.h>
13 : : #include <linux/seq_file.h>
14 : : #include <linux/kmod.h>
15 : : #include <linux/init.h>
16 : : #include <linux/module.h>
17 : : #include <linux/slab.h>
18 : : #include <linux/uaccess.h>
19 : : #include <linux/fs_parser.h>
20 : :
21 : : /*
22 : : * Handling of filesystem drivers list.
23 : : * Rules:
24 : : * Inclusion to/removals from/scanning of list are protected by spinlock.
25 : : * During the unload module must call unregister_filesystem().
26 : : * We can access the fields of list element if:
27 : : * 1) spinlock is held or
28 : : * 2) we hold the reference to the module.
29 : : * The latter can be guaranteed by call of try_module_get(); if it
30 : : * returned 0 we must skip the element, otherwise we got the reference.
31 : : * Once the reference is obtained we can drop the spinlock.
32 : : */
33 : :
34 : : static struct file_system_type *file_systems;
35 : : static DEFINE_RWLOCK(file_systems_lock);
36 : :
37 : : /* WARNING: This can be used only if we _already_ own a reference */
38 : 1827 : struct file_system_type *get_filesystem(struct file_system_type *fs)
39 : : {
40 : 1827 : __module_get(fs->owner);
41 : 1827 : return fs;
42 : : }
43 : :
44 : 1701 : void put_filesystem(struct file_system_type *fs)
45 : : {
46 : 1701 : module_put(fs->owner);
47 : 1701 : }
48 : :
49 : 1260 : static struct file_system_type **find_filesystem(const char *name, unsigned len)
50 : : {
51 : 1260 : struct file_system_type **p;
52 [ + + ]: 17031 : for (p = &file_systems; *p; p = &(*p)->next)
53 [ + + ]: 16380 : if (strncmp((*p)->name, name, len) == 0 &&
54 [ - + ]: 609 : !(*p)->name[len])
55 : : break;
56 : 1260 : return p;
57 : : }
58 : :
59 : : /**
60 : : * register_filesystem - register a new filesystem
61 : : * @fs: the file system structure
62 : : *
63 : : * Adds the file system passed to the list of file systems the kernel
64 : : * is aware of for mount and other syscalls. Returns 0 on success,
65 : : * or a negative errno code on an error.
66 : : *
67 : : * The &struct file_system_type that is passed is linked into the kernel
68 : : * structures and must not be freed until the file system has been
69 : : * unregistered.
70 : : */
71 : :
72 : 651 : int register_filesystem(struct file_system_type * fs)
73 : : {
74 : 651 : int res = 0;
75 : 651 : struct file_system_type ** p;
76 : :
77 : 651 : if (fs->parameters &&
78 : : !fs_validate_description(fs->name, fs->parameters))
79 : : return -EINVAL;
80 : :
81 [ - + ]: 651 : BUG_ON(strchr(fs->name, '.'));
82 [ + - ]: 651 : if (fs->next)
83 : : return -EBUSY;
84 : 651 : write_lock(&file_systems_lock);
85 : 651 : p = find_filesystem(fs->name, strlen(fs->name));
86 [ + - ]: 651 : if (*p)
87 : : res = -EBUSY;
88 : : else
89 : 651 : *p = fs;
90 : 651 : write_unlock(&file_systems_lock);
91 : 651 : return res;
92 : : }
93 : :
94 : : EXPORT_SYMBOL(register_filesystem);
95 : :
96 : : /**
97 : : * unregister_filesystem - unregister a file system
98 : : * @fs: filesystem to unregister
99 : : *
100 : : * Remove a file system that was previously successfully registered
101 : : * with the kernel. An error is returned if the file system is not found.
102 : : * Zero is returned on a success.
103 : : *
104 : : * Once this function has returned the &struct file_system_type structure
105 : : * may be freed or reused.
106 : : */
107 : :
108 : 0 : int unregister_filesystem(struct file_system_type * fs)
109 : : {
110 : 0 : struct file_system_type ** tmp;
111 : :
112 : 0 : write_lock(&file_systems_lock);
113 : 0 : tmp = &file_systems;
114 [ # # ]: 0 : while (*tmp) {
115 [ # # ]: 0 : if (fs == *tmp) {
116 : 0 : *tmp = fs->next;
117 : 0 : fs->next = NULL;
118 : 0 : write_unlock(&file_systems_lock);
119 : 0 : synchronize_rcu();
120 : 0 : return 0;
121 : : }
122 : 0 : tmp = &(*tmp)->next;
123 : : }
124 : 0 : write_unlock(&file_systems_lock);
125 : :
126 : 0 : return -EINVAL;
127 : : }
128 : :
129 : : EXPORT_SYMBOL(unregister_filesystem);
130 : :
131 : : #ifdef CONFIG_SYSFS_SYSCALL
132 : 0 : static int fs_index(const char __user * __name)
133 : : {
134 : 0 : struct file_system_type * tmp;
135 : 0 : struct filename *name;
136 : 0 : int err, index;
137 : :
138 : 0 : name = getname(__name);
139 [ # # ]: 0 : err = PTR_ERR(name);
140 [ # # ]: 0 : if (IS_ERR(name))
141 : : return err;
142 : :
143 : 0 : err = -EINVAL;
144 : 0 : read_lock(&file_systems_lock);
145 [ # # ]: 0 : for (tmp=file_systems, index=0 ; tmp ; tmp=tmp->next, index++) {
146 [ # # ]: 0 : if (strcmp(tmp->name, name->name) == 0) {
147 : : err = index;
148 : : break;
149 : : }
150 : : }
151 : 0 : read_unlock(&file_systems_lock);
152 : 0 : putname(name);
153 : 0 : return err;
154 : : }
155 : :
156 : 0 : static int fs_name(unsigned int index, char __user * buf)
157 : : {
158 : 0 : struct file_system_type * tmp;
159 : 0 : int len, res;
160 : :
161 : 0 : read_lock(&file_systems_lock);
162 [ # # ]: 0 : for (tmp = file_systems; tmp; tmp = tmp->next, index--)
163 [ # # # # ]: 0 : if (index <= 0 && try_module_get(tmp->owner))
164 : : break;
165 : 0 : read_unlock(&file_systems_lock);
166 [ # # ]: 0 : if (!tmp)
167 : : return -EINVAL;
168 : :
169 : : /* OK, we got the reference, so we can safely block */
170 : 0 : len = strlen(tmp->name) + 1;
171 [ # # # # ]: 0 : res = copy_to_user(buf, tmp->name, len) ? -EFAULT : 0;
172 : 0 : put_filesystem(tmp);
173 : 0 : return res;
174 : : }
175 : :
176 : 0 : static int fs_maxindex(void)
177 : : {
178 : 0 : struct file_system_type * tmp;
179 : 0 : int index;
180 : :
181 : 0 : read_lock(&file_systems_lock);
182 [ # # ]: 0 : for (tmp = file_systems, index = 0 ; tmp ; tmp = tmp->next, index++)
183 : 0 : ;
184 : 0 : read_unlock(&file_systems_lock);
185 : 0 : return index;
186 : : }
187 : :
188 : : /*
189 : : * Whee.. Weird sysv syscall.
190 : : */
191 : 0 : SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2)
192 : : {
193 : 0 : int retval = -EINVAL;
194 : :
195 [ # # # # ]: 0 : switch (option) {
196 : 0 : case 1:
197 : 0 : retval = fs_index((const char __user *) arg1);
198 : 0 : break;
199 : :
200 : 0 : case 2:
201 : 0 : retval = fs_name(arg1, (char __user *) arg2);
202 : 0 : break;
203 : :
204 : 0 : case 3:
205 : 0 : retval = fs_maxindex();
206 : 0 : break;
207 : : }
208 : 0 : return retval;
209 : : }
210 : : #endif
211 : :
212 : 21 : int __init get_filesystem_list(char *buf)
213 : : {
214 : 21 : int len = 0;
215 : 21 : struct file_system_type * tmp;
216 : :
217 : 21 : read_lock(&file_systems_lock);
218 : 21 : tmp = file_systems;
219 [ + + ]: 672 : while (tmp && len < PAGE_SIZE - 80) {
220 : 1302 : len += sprintf(buf+len, "%s\t%s\n",
221 [ + + ]: 651 : (tmp->fs_flags & FS_REQUIRES_DEV) ? "" : "nodev",
222 : : tmp->name);
223 : 651 : tmp = tmp->next;
224 : : }
225 : 21 : read_unlock(&file_systems_lock);
226 : 21 : return len;
227 : : }
228 : :
229 : : #ifdef CONFIG_PROC_FS
230 : 0 : static int filesystems_proc_show(struct seq_file *m, void *v)
231 : : {
232 : 0 : struct file_system_type * tmp;
233 : :
234 : 0 : read_lock(&file_systems_lock);
235 : 0 : tmp = file_systems;
236 [ # # ]: 0 : while (tmp) {
237 : 0 : seq_printf(m, "%s\t%s\n",
238 [ # # ]: 0 : (tmp->fs_flags & FS_REQUIRES_DEV) ? "" : "nodev",
239 : : tmp->name);
240 : 0 : tmp = tmp->next;
241 : : }
242 : 0 : read_unlock(&file_systems_lock);
243 : 0 : return 0;
244 : : }
245 : :
246 : 21 : static int __init proc_filesystems_init(void)
247 : : {
248 : 21 : proc_create_single("filesystems", 0, NULL, filesystems_proc_show);
249 : 21 : return 0;
250 : : }
251 : : module_init(proc_filesystems_init);
252 : : #endif
253 : :
254 : 609 : static struct file_system_type *__get_fs_type(const char *name, int len)
255 : : {
256 : 609 : struct file_system_type *fs;
257 : :
258 : 609 : read_lock(&file_systems_lock);
259 : 609 : fs = *(find_filesystem(name, len));
260 [ + - - + ]: 609 : if (fs && !try_module_get(fs->owner))
261 : 0 : fs = NULL;
262 : 609 : read_unlock(&file_systems_lock);
263 : 609 : return fs;
264 : : }
265 : :
266 : 609 : struct file_system_type *get_fs_type(const char *name)
267 : : {
268 : 609 : struct file_system_type *fs;
269 : 609 : const char *dot = strchr(name, '.');
270 [ - + ]: 609 : int len = dot ? dot - name : strlen(name);
271 : :
272 : 609 : fs = __get_fs_type(name, len);
273 [ - + - - ]: 609 : if (!fs && (request_module("fs-%.*s", len, name) == 0)) {
274 : 0 : fs = __get_fs_type(name, len);
275 [ # # # # ]: 0 : WARN_ONCE(!fs, "request_module fs-%.*s succeeded, but still no fs?\n", len, name);
276 : : }
277 : :
278 [ - + - - ]: 609 : if (dot && fs && !(fs->fs_flags & FS_HAS_SUBTYPE)) {
279 : 0 : put_filesystem(fs);
280 : 0 : fs = NULL;
281 : : }
282 : 609 : return fs;
283 : : }
284 : :
285 : : EXPORT_SYMBOL(get_fs_type);
|