2 * linux/fs/filesystems.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * table of configured filesystems
9 #include <linux/syscalls.h>
11 #include <linux/proc_fs.h>
12 #include <linux/seq_file.h>
13 #include <linux/kmod.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <asm/uaccess.h>
20 * Handling of filesystem drivers list.
22 * Inclusion to/removals from/scanning of list are protected by spinlock.
23 * During the unload module must call unregister_filesystem().
24 * We can access the fields of list element if:
25 * 1) spinlock is held or
26 * 2) we hold the reference to the module.
27 * The latter can be guaranteed by call of try_module_get(); if it
28 * returned 0 we must skip the element, otherwise we got the reference.
29 * Once the reference is obtained we can drop the spinlock.
32 static struct file_system_type *file_systems;
33 static DEFINE_RWLOCK(file_systems_lock);
35 /* WARNING: This can be used only if we _already_ own a reference */
36 void get_filesystem(struct file_system_type *fs)
38 __module_get(fs->owner);
41 void put_filesystem(struct file_system_type *fs)
43 module_put(fs->owner);
46 static struct file_system_type **find_filesystem(const char *name, unsigned len)
48 struct file_system_type **p;
49 for (p=&file_systems; *p; p=&(*p)->next)
50 if (strlen((*p)->name) == len &&
51 strncmp((*p)->name, name, len) == 0)
57 * register_filesystem - register a new filesystem
58 * @fs: the file system structure
60 * Adds the file system passed to the list of file systems the kernel
61 * is aware of for mount and other syscalls. Returns 0 on success,
62 * or a negative errno code on an error.
64 * The &struct file_system_type that is passed is linked into the kernel
65 * structures and must not be freed until the file system has been
69 int register_filesystem(struct file_system_type * fs)
72 struct file_system_type ** p;
74 BUG_ON(strchr(fs->name, '.'));
77 INIT_LIST_HEAD(&fs->fs_supers);
78 write_lock(&file_systems_lock);
79 p = find_filesystem(fs->name, strlen(fs->name));
84 write_unlock(&file_systems_lock);
88 EXPORT_SYMBOL(register_filesystem);
91 * unregister_filesystem - unregister a file system
92 * @fs: filesystem to unregister
94 * Remove a file system that was previously successfully registered
95 * with the kernel. An error is returned if the file system is not found.
96 * Zero is returned on a success.
98 * Once this function has returned the &struct file_system_type structure
99 * may be freed or reused.
102 int unregister_filesystem(struct file_system_type * fs)
104 struct file_system_type ** tmp;
106 write_lock(&file_systems_lock);
112 write_unlock(&file_systems_lock);
117 write_unlock(&file_systems_lock);
121 EXPORT_SYMBOL(unregister_filesystem);
123 static int fs_index(const char __user * __name)
125 struct file_system_type * tmp;
129 name = getname(__name);
135 read_lock(&file_systems_lock);
136 for (tmp=file_systems, index=0 ; tmp ; tmp=tmp->next, index++) {
137 if (strcmp(tmp->name,name) == 0) {
142 read_unlock(&file_systems_lock);
147 static int fs_name(unsigned int index, char __user * buf)
149 struct file_system_type * tmp;
152 read_lock(&file_systems_lock);
153 for (tmp = file_systems; tmp; tmp = tmp->next, index--)
154 if (index <= 0 && try_module_get(tmp->owner))
156 read_unlock(&file_systems_lock);
160 /* OK, we got the reference, so we can safely block */
161 len = strlen(tmp->name) + 1;
162 res = copy_to_user(buf, tmp->name, len) ? -EFAULT : 0;
167 static int fs_maxindex(void)
169 struct file_system_type * tmp;
172 read_lock(&file_systems_lock);
173 for (tmp = file_systems, index = 0 ; tmp ; tmp = tmp->next, index++)
175 read_unlock(&file_systems_lock);
180 * Whee.. Weird sysv syscall.
182 SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2)
184 int retval = -EINVAL;
188 retval = fs_index((const char __user *) arg1);
192 retval = fs_name(arg1, (char __user *) arg2);
196 retval = fs_maxindex();
202 int __init get_filesystem_list(char *buf)
205 struct file_system_type * tmp;
207 read_lock(&file_systems_lock);
209 while (tmp && len < PAGE_SIZE - 80) {
210 len += sprintf(buf+len, "%s\t%s\n",
211 (tmp->fs_flags & FS_REQUIRES_DEV) ? "" : "nodev",
215 read_unlock(&file_systems_lock);
219 #ifdef CONFIG_PROC_FS
220 static int filesystems_proc_show(struct seq_file *m, void *v)
222 struct file_system_type * tmp;
224 read_lock(&file_systems_lock);
227 seq_printf(m, "%s\t%s\n",
228 (tmp->fs_flags & FS_REQUIRES_DEV) ? "" : "nodev",
232 read_unlock(&file_systems_lock);
236 static int filesystems_proc_open(struct inode *inode, struct file *file)
238 return single_open(file, filesystems_proc_show, NULL);
241 static const struct file_operations filesystems_proc_fops = {
242 .open = filesystems_proc_open,
245 .release = single_release,
248 static int __init proc_filesystems_init(void)
250 proc_create("filesystems", 0, NULL, &filesystems_proc_fops);
253 module_init(proc_filesystems_init);
256 static struct file_system_type *__get_fs_type(const char *name, int len)
258 struct file_system_type *fs;
260 read_lock(&file_systems_lock);
261 fs = *(find_filesystem(name, len));
262 if (fs && !try_module_get(fs->owner))
264 read_unlock(&file_systems_lock);
268 struct file_system_type *get_fs_type(const char *name)
270 struct file_system_type *fs;
271 const char *dot = strchr(name, '.');
272 int len = dot ? dot - name : strlen(name);
274 fs = __get_fs_type(name, len);
275 if (!fs && (request_module("%.*s", len, name) == 0))
276 fs = __get_fs_type(name, len);
278 if (dot && fs && !(fs->fs_flags & FS_HAS_SUBTYPE)) {
285 EXPORT_SYMBOL(get_fs_type);