1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/filesystems.c
5 * Copyright (C) 1991, 1992 Linus Torvalds
7 * table of configured filesystems
10 #include <linux/syscalls.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>
22 * Handling of filesystem drivers list.
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.
34 static struct file_system_type
*file_systems
;
35 static DEFINE_RWLOCK(file_systems_lock
);
37 /* WARNING: This can be used only if we _already_ own a reference */
38 struct file_system_type
*get_filesystem(struct file_system_type
*fs
)
40 __module_get(fs
->owner
);
44 void put_filesystem(struct file_system_type
*fs
)
46 module_put(fs
->owner
);
49 static struct file_system_type
**find_filesystem(const char *name
, unsigned len
)
51 struct file_system_type
**p
;
52 for (p
= &file_systems
; *p
; p
= &(*p
)->next
)
53 if (strncmp((*p
)->name
, name
, len
) == 0 &&
60 * register_filesystem - register a new filesystem
61 * @fs: the file system structure
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.
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
72 int register_filesystem(struct file_system_type
* fs
)
75 struct file_system_type
** p
;
77 if (fs
->parameters
&& !fs_validate_description(fs
->parameters
))
80 BUG_ON(strchr(fs
->name
, '.'));
83 write_lock(&file_systems_lock
);
84 p
= find_filesystem(fs
->name
, strlen(fs
->name
));
89 write_unlock(&file_systems_lock
);
93 EXPORT_SYMBOL(register_filesystem
);
96 * unregister_filesystem - unregister a file system
97 * @fs: filesystem to unregister
99 * Remove a file system that was previously successfully registered
100 * with the kernel. An error is returned if the file system is not found.
101 * Zero is returned on a success.
103 * Once this function has returned the &struct file_system_type structure
104 * may be freed or reused.
107 int unregister_filesystem(struct file_system_type
* fs
)
109 struct file_system_type
** tmp
;
111 write_lock(&file_systems_lock
);
117 write_unlock(&file_systems_lock
);
123 write_unlock(&file_systems_lock
);
128 EXPORT_SYMBOL(unregister_filesystem
);
130 #ifdef CONFIG_SYSFS_SYSCALL
131 static int fs_index(const char __user
* __name
)
133 struct file_system_type
* tmp
;
134 struct filename
*name
;
137 name
= getname(__name
);
143 read_lock(&file_systems_lock
);
144 for (tmp
=file_systems
, index
=0 ; tmp
; tmp
=tmp
->next
, index
++) {
145 if (strcmp(tmp
->name
, name
->name
) == 0) {
150 read_unlock(&file_systems_lock
);
155 static int fs_name(unsigned int index
, char __user
* buf
)
157 struct file_system_type
* tmp
;
160 read_lock(&file_systems_lock
);
161 for (tmp
= file_systems
; tmp
; tmp
= tmp
->next
, index
--)
162 if (index
<= 0 && try_module_get(tmp
->owner
))
164 read_unlock(&file_systems_lock
);
168 /* OK, we got the reference, so we can safely block */
169 len
= strlen(tmp
->name
) + 1;
170 res
= copy_to_user(buf
, tmp
->name
, len
) ? -EFAULT
: 0;
175 static int fs_maxindex(void)
177 struct file_system_type
* tmp
;
180 read_lock(&file_systems_lock
);
181 for (tmp
= file_systems
, index
= 0 ; tmp
; tmp
= tmp
->next
, index
++)
183 read_unlock(&file_systems_lock
);
188 * Whee.. Weird sysv syscall.
190 SYSCALL_DEFINE3(sysfs
, int, option
, unsigned long, arg1
, unsigned long, arg2
)
192 int retval
= -EINVAL
;
196 retval
= fs_index((const char __user
*) arg1
);
200 retval
= fs_name(arg1
, (char __user
*) arg2
);
204 retval
= fs_maxindex();
211 int __init
get_filesystem_list(char *buf
)
214 struct file_system_type
* tmp
;
216 read_lock(&file_systems_lock
);
218 while (tmp
&& len
< PAGE_SIZE
- 80) {
219 len
+= sprintf(buf
+len
, "%s\t%s\n",
220 (tmp
->fs_flags
& FS_REQUIRES_DEV
) ? "" : "nodev",
224 read_unlock(&file_systems_lock
);
228 #ifdef CONFIG_PROC_FS
229 static int filesystems_proc_show(struct seq_file
*m
, void *v
)
231 struct file_system_type
* tmp
;
233 read_lock(&file_systems_lock
);
236 seq_printf(m
, "%s\t%s\n",
237 (tmp
->fs_flags
& FS_REQUIRES_DEV
) ? "" : "nodev",
241 read_unlock(&file_systems_lock
);
245 static int __init
proc_filesystems_init(void)
247 proc_create_single("filesystems", 0, NULL
, filesystems_proc_show
);
250 module_init(proc_filesystems_init
);
253 static struct file_system_type
*__get_fs_type(const char *name
, int len
)
255 struct file_system_type
*fs
;
257 read_lock(&file_systems_lock
);
258 fs
= *(find_filesystem(name
, len
));
259 if (fs
&& !try_module_get(fs
->owner
))
261 read_unlock(&file_systems_lock
);
265 struct file_system_type
*get_fs_type(const char *name
)
267 struct file_system_type
*fs
;
268 const char *dot
= strchr(name
, '.');
269 int len
= dot
? dot
- name
: strlen(name
);
271 fs
= __get_fs_type(name
, len
);
272 if (!fs
&& (request_module("fs-%.*s", len
, name
) == 0)) {
273 fs
= __get_fs_type(name
, len
);
274 WARN_ONCE(!fs
, "request_module fs-%.*s succeeded, but still no fs?\n", len
, name
);
277 if (dot
&& fs
&& !(fs
->fs_flags
& FS_HAS_SUBTYPE
)) {
284 EXPORT_SYMBOL(get_fs_type
);