Whamcloud - gitweb
LU-1866 lfsck: enhance otable-based iteration
[fs/lustre-release.git] / lustre / lvfs / fsfilt.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  */
34
35 #define DEBUG_SUBSYSTEM S_FILTER
36
37 #include <linux/fs.h>
38 #include <linux/jbd.h>
39 #include <linux/module.h>
40 #include <linux/kmod.h>
41 #include <linux/slab.h>
42 #include <libcfs/libcfs.h>
43 #include <lustre_fsfilt.h>
44
45 CFS_LIST_HEAD(fsfilt_types);
46
47 static struct fsfilt_operations *fsfilt_search_type(const char *type)
48 {
49         struct fsfilt_operations *found;
50         cfs_list_t *p;
51
52         cfs_list_for_each(p, &fsfilt_types) {
53                 found = cfs_list_entry(p, struct fsfilt_operations, fs_list);
54                 if (!strcmp(found->fs_type, type)) {
55                         return found;
56                 }
57         }
58         return NULL;
59 }
60
61 int fsfilt_register_ops(struct fsfilt_operations *fs_ops)
62 {
63         struct fsfilt_operations *found;
64
65         /* lock fsfilt_types list */
66         if ((found = fsfilt_search_type(fs_ops->fs_type))) {
67                 if (found != fs_ops) {
68                         CERROR("different operations for type %s\n",
69                                fs_ops->fs_type);
70                         /* unlock fsfilt_types list */
71                         RETURN(-EEXIST);
72                 }
73         } else {
74                 PORTAL_MODULE_USE;
75                 cfs_list_add(&fs_ops->fs_list, &fsfilt_types);
76         }
77
78         /* unlock fsfilt_types list */
79         return 0;
80 }
81 EXPORT_SYMBOL(fsfilt_register_ops);
82
83 void fsfilt_unregister_ops(struct fsfilt_operations *fs_ops)
84 {
85         cfs_list_t *p;
86
87         /* lock fsfilt_types list */
88         cfs_list_for_each(p, &fsfilt_types) {
89                 struct fsfilt_operations *found;
90
91                 found = cfs_list_entry(p, typeof(*found), fs_list);
92                 if (found == fs_ops) {
93                         cfs_list_del(p);
94                         PORTAL_MODULE_UNUSE;
95                         break;
96                 }
97         }
98         /* unlock fsfilt_types list */
99 }
100 EXPORT_SYMBOL(fsfilt_unregister_ops);
101
102 struct fsfilt_operations *fsfilt_get_ops(const char *type)
103 {
104         struct fsfilt_operations *fs_ops;
105
106         /* lock fsfilt_types list */
107         if (!(fs_ops = fsfilt_search_type(type))) {
108                 char name[32];
109                 int rc;
110
111                 snprintf(name, sizeof(name) - 1, "fsfilt_%s", type);
112                 name[sizeof(name) - 1] = '\0';
113
114                 if (!(rc = cfs_request_module("%s", name))) {
115                         fs_ops = fsfilt_search_type(type);
116                         CDEBUG(D_INFO, "Loaded module '%s'\n", name);
117                         if (!fs_ops)
118                                 rc = -ENOENT;
119                 }
120
121                 if (rc) {
122                         CERROR("Can't find %s interface\n", name);
123                         RETURN(ERR_PTR(rc < 0 ? rc : -rc));
124                         /* unlock fsfilt_types list */
125                 }
126         }
127         cfs_try_module_get(fs_ops->fs_owner);
128         /* unlock fsfilt_types list */
129
130         return fs_ops;
131 }
132 EXPORT_SYMBOL(fsfilt_get_ops);
133
134 void fsfilt_put_ops(struct fsfilt_operations *fs_ops)
135 {
136         cfs_module_put(fs_ops->fs_owner);
137 }
138 EXPORT_SYMBOL(fsfilt_put_ops);