Whamcloud - gitweb
Ignore generated files.
[fs/lustre-release.git] / libsysio / src / fs.c
1 /*
2  *    This Cplant(TM) source code is the property of Sandia National
3  *    Laboratories.
4  *
5  *    This Cplant(TM) source code is copyrighted by Sandia National
6  *    Laboratories.
7  *
8  *    The redistribution of this Cplant(TM) source code is subject to the
9  *    terms of the GNU Lesser General Public License
10  *    (see cit/LGPL or http://www.gnu.org/licenses/lgpl.html)
11  *
12  *    Cplant(TM) Copyright 1998-2003 Sandia Corporation. 
13  *    Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive
14  *    license for use of this work by or on behalf of the US Government.
15  *    Export of this program may require a license from the United States
16  *    Government.
17  */
18
19 /*
20  * This library is free software; you can redistribute it and/or
21  * modify it under the terms of the GNU Lesser General Public
22  * License as published by the Free Software Foundation; either
23  * version 2.1 of the License, or (at your option) any later version.
24  * 
25  * This library is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28  * Lesser General Public License for more details.
29  * 
30  * You should have received a copy of the GNU Lesser General Public
31  * License along with this library; if not, write to the Free Software
32  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33  *
34  * Questions or comments about this library should be sent to:
35  *
36  * Lee Ward
37  * Sandia National Laboratories, New Mexico
38  * P.O. Box 5800
39  * Albuquerque, NM 87185-1110
40  *
41  * lee@sandia.gov
42  */
43
44 #include <stdlib.h>
45 #include <string.h>
46 #include <errno.h>
47 #include <assert.h>
48 #include <sys/types.h>
49 #include <sys/queue.h>
50
51 #include "sysio.h"
52 #include "fs.h"
53 #include "inode.h"
54
55 /*
56  * File system abstractipon support.
57  */
58
59 /*
60  * The "file system switch".
61  */
62 static LIST_HEAD(, fsswent) fsswitch = { NULL };
63
64 /*
65  * Lookup named entry in the switch.
66  */
67 struct fsswent *
68 _sysio_fssw_lookup(const char *name)
69 {
70         struct fsswent *fssw;
71
72         if (!fsswitch.lh_first)
73                 return NULL;
74
75         fssw = fsswitch.lh_first;
76         do {
77                 if (strcmp(fssw->fssw_name, name) == 0)
78                         return fssw;
79                 fssw = fssw->fssw_link.le_next;
80         } while (fssw);
81         return NULL;
82 }
83
84 /*
85  * Register driver.
86  */
87 int
88 _sysio_fssw_register(const char *name, struct fssw_ops *ops)
89 {
90         struct fsswent *fssw;
91
92         fssw = _sysio_fssw_lookup(name);
93         if (fssw)
94                 return -EEXIST;
95
96         fssw = malloc(sizeof(struct fsswent) + strlen(name) + 1);
97         if (!fssw)
98                 return -ENOMEM;
99         fssw->fssw_name = (char *)fssw + sizeof(struct fsswent);
100         (void )strcpy((char *)fssw->fssw_name, name);
101         fssw->fssw_ops = *ops;
102
103         LIST_INSERT_HEAD(&fsswitch, fssw, fssw_link);
104
105         return 0;
106 }
107
108 #if ZERO_SUM_MEMORY
109 /*
110  * Shutdown
111  */
112 void
113 _sysio_fssw_shutdown()
114 {
115         struct fsswent *fssw;
116
117         while ((fssw = fsswitch.lh_first)) {
118                 LIST_REMOVE(fssw, fssw_link);
119                 free(fssw);
120         }
121 }
122 #endif
123
124 /*
125  * Allocate and initialize a new file system record.
126  */
127 struct filesys *
128 _sysio_fs_new(struct filesys_ops *ops, unsigned flags, void *private)
129 {
130         struct filesys *fs;
131
132         fs = malloc(sizeof(struct filesys));
133         if (!fs)
134                 return NULL;
135         FS_INIT(fs, flags, ops, private);
136         return fs;
137 }
138
139 /*
140  * Dispose of given file system record.
141  */
142 void
143 _sysio_fs_gone(struct filesys *fs)
144 {
145         size_t  n;
146         struct itable_entry *head;
147
148         if (fs->fs_ref)
149                 abort();
150         n = FS_ITBLSIZ;
151         do {
152                 head = &fs->fs_itbl[--n];
153                 while (head->lh_first)
154                         _sysio_i_gone(head->lh_first);
155         } while (n);
156         if (n)
157                 abort();
158
159         (*fs->fs_ops.fsop_gone)(fs);
160         free(fs);
161 }