Whamcloud - gitweb
LU-2034 changelog: redo changelog using OSD llog
[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/stat.h>
50 #include <sys/queue.h>
51
52 #include "sysio.h"
53 #include "fs.h"
54 #include "inode.h"
55
56 /*
57  * File system abstractipon support.
58  */
59
60 /*
61  * The "file system switch".
62  */
63 static LIST_HEAD(, fsswent) fsswitch = { NULL };
64
65 /*
66  * Lookup named entry in the switch.
67  */
68 struct fsswent *
69 _sysio_fssw_lookup(const char *name)
70 {
71         struct fsswent *fssw;
72
73         if (!fsswitch.lh_first)
74                 return NULL;
75
76         fssw = fsswitch.lh_first;
77         do {
78                 if (strcmp(fssw->fssw_name, name) == 0)
79                         return fssw;
80                 fssw = fssw->fssw_link.le_next;
81         } while (fssw);
82         return NULL;
83 }
84
85 /*
86  * Register driver.
87  */
88 int
89 _sysio_fssw_register(const char *name, struct fssw_ops *ops)
90 {
91         struct fsswent *fssw;
92
93         fssw = _sysio_fssw_lookup(name);
94         if (fssw)
95                 return -EEXIST;
96
97         fssw = malloc(sizeof(struct fsswent) + strlen(name) + 1);
98         if (!fssw)
99                 return -ENOMEM;
100         fssw->fssw_name = (char *)fssw + sizeof(struct fsswent);
101         (void )strcpy((char *)fssw->fssw_name, name);
102         fssw->fssw_ops = *ops;
103
104         LIST_INSERT_HEAD(&fsswitch, fssw, fssw_link);
105
106         return 0;
107 }
108
109 #ifdef ZERO_SUM_MEMORY
110 /*
111  * Shutdown
112  */
113 void
114 _sysio_fssw_shutdown()
115 {
116         struct fsswent *fssw;
117
118         while ((fssw = fsswitch.lh_first)) {
119                 LIST_REMOVE(fssw, fssw_link);
120                 free(fssw);
121         }
122 }
123 #endif
124
125 /*
126  * Allocate and initialize a new file system record.
127  */
128 struct filesys *
129 _sysio_fs_new(struct filesys_ops *ops, unsigned flags, void *private)
130 {
131         struct filesys *fs;
132
133         fs = malloc(sizeof(struct filesys));
134         if (!fs)
135                 return NULL;
136         FS_INIT(fs, flags, ops, private);
137         return fs;
138 }
139
140 /*
141  * Dispose of given file system record.
142  */
143 void
144 _sysio_fs_gone(struct filesys *fs)
145 {
146         size_t  n;
147         struct itable_entry *head;
148
149         if (fs->fs_ref)
150                 abort();
151         n = FS_ITBLSIZ;
152         do {
153                 head = &fs->fs_itbl[--n];
154                 while (head->lh_first)
155                         _sysio_i_gone(head->lh_first);
156         } while (n);
157         if (n)
158                 abort();
159
160         (*fs->fs_ops.fsop_gone)(fs);
161         free(fs);
162 }