MFC r1.27:
[dragonfly.git] / contrib / amd / amd / ops_TEMPLATE.c
blob34fd308571d63f51a97035b1b9adba62e70a651a
1 /*
2 * Copyright (c) 1997-1999 Erez Zadok
3 * Copyright (c) 1990 Jan-Simon Pendry
4 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1990 The Regents of the University of California.
6 * All rights reserved.
8 * This code is derived from software contributed to Berkeley by
9 * Jan-Simon Pendry at Imperial College, London.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgment:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
39 * %W% (Berkeley) %G%
41 * $Id: ops_TEMPLATE.c,v 1.2 1999/01/10 21:53:48 ezk Exp $
46 * An empty template for an amd pseudo filesystem "foofs".
50 * NOTE: if this is an Amd file system, prepend "amfs_" to all foofs symbols
51 * and renamed the file name to amfs_foofs.c. If it is a native file system
52 * (such as pcfs, isofs, or ffs), then you can keep the names as is, and
53 * just rename the file to ops_foofs.c.
56 #ifdef HAVE_CONFIG_H
57 # include <config.h>
58 #endif /* HAVE_CONFIG_H */
59 #include <am_defs.h>
60 #include <amd.h>
62 /* forward declarations */
63 static char * foofs_match(am_opts *fo);
64 static int foofs_init(mntfs *mf);
65 static int foofs_mount(am_node *mp);
66 static int foofs_fmount(mntfs *mf);
67 static int foofs_umount(am_node *mp);
68 static int foofs_fumount(mntfs *mf);
69 static am_node * foofs_lookuppn(am_node *mp, char *fname, int *error_return, int op);
70 static int foofs_readdir(am_node *mp, nfscookie cookie, nfsdirlist *dp, nfsentry *ep, int count);
71 static am_node * foofs_readlink(am_node *mp, int *error_return);
72 static void foofs_mounted(mntfs *mf);
73 static void foofs_umounted(am_node *mp);
74 fserver * foofs_ffserver(mntfs *mf);
78 * Foofs operations.
79 * Define only those you need, others set to 0 (NULL)
81 am_ops foofs_ops =
83 "foofs", /* name of file system */
84 foofs_match, /* match */
85 foofs_init, /* initialize */
86 foofs_mount, /* mount vnode */
87 foofs_fmount, /* mount vfs */
88 foofs_umount, /* unmount vnode */
89 foofs_fumount, /* unmount VFS */
90 foofs_lookuppn, /* lookup path-name */
91 foofs_readdir, /* read directory */
92 foofs_readlink, /* read link */
93 foofs_mounted, /* after-mount extra actions */
94 foofs_umounted, /* after-umount extra actions */
95 foofs_ffserver, /* find a file server */
96 FS_MKMNT | FS_BACKGROUND | FS_AMQINFO /* flags */
101 * Check that f/s has all needed fields.
102 * Returns: matched string if found, NULL otherwise.
104 static char *
105 foofs_match(am_opts *fo)
107 char *cp = "fill this with a way to find the match";
109 plog(XLOG_INFO, "entering foofs_match...");
111 if (cp)
112 return cp; /* OK */
114 return NULL; /* not OK */
119 * Initialize.
120 * Returns: 0 if OK, non-zero (errno) if failed.
122 static int
123 foofs_init(mntfs *mf)
125 int error = 0;
127 plog(XLOG_INFO, "entering foofs_init...");
129 error = EPERM; /* XXX: fixme */
130 return error;
135 * Mount vnode.
136 * Returns: 0 if OK, non-zero (errno) if failed.
138 static int
139 foofs_mount(am_node *mp)
141 int error = 0;
143 plog(XLOG_INFO, "entering foofs_mount...");
145 error = EPERM; /* XXX: fixme */
146 return error;
151 * Mount vfs.
152 * Returns: 0 if OK, non-zero (errno) if failed.
154 static int
155 foofs_fmount(mntfs *mf)
157 int error = 0;
159 plog(XLOG_INFO, "entering foofs_fmount...");
161 error = EPERM; /* XXX: fixme */
162 return error;
167 * Unmount vnode.
168 * Returns: 0 if OK, non-zero (errno) if failed.
170 static int
171 foofs_umount(am_node *mp)
173 int error = 0;
175 plog(XLOG_INFO, "entering foofs_umount...");
177 error = EPERM; /* XXX: fixme */
178 return error;
183 * Unmount VFS.
184 * Returns: 0 if OK, non-zero (errno) if failed.
186 static int
187 foofs_fumount(mntfs *mf)
189 int error = 0;
191 plog(XLOG_INFO, "entering foofs_fumount...");
193 error = EPERM; /* XXX: fixme */
194 return error;
199 * Lookup path-name.
200 * Returns: the am_node that was found, or NULL if failed.
201 * If failed, also fills in errno in error_return.
203 static am_node *
204 foofs_lookuppn(am_node *mp, char *fname, int *error_return, int op)
206 int error = 0;
208 plog(XLOG_INFO, "entering foofs_lookuppn...");
210 error = EPERM; /* XXX: fixme */
212 *error_return = error;
213 return NULL;
218 * Read directory.
219 * Returns: 0 if OK, non-zero (errno) if failed.
220 * If OK, fills in ep with chain of directory entries.
222 static int
223 foofs_readdir(am_node *mp, nfscookie cookie, nfsdirlist *dp, nfsentry *ep, int count)
225 int error = 0;
227 plog(XLOG_INFO, "entering foofs_readdir...");
229 error = EPERM; /* XXX: fixme */
230 return error;
235 * Read link.
236 * Returns: am_node found, or NULL if not found.
237 * If failed, fills in errno in error_return.
239 static am_node *
240 foofs_readlink(am_node *mp, int *error_return)
242 int error = 0;
244 plog(XLOG_INFO, "entering foofs_readlink...");
246 error = EPERM; /* XXX: fixme */
248 *error_return = error;
249 return NULL;
254 * Async mount callback function.
255 * After the base mount went OK, sometimes
256 * there are additional actions that are needed. See union_mounted() and
257 * toplvl_mounted().
259 static void
260 foofs_mounted(mntfs *mf)
262 plog(XLOG_INFO, "entering foofs_mounted...");
264 return;
269 * Async unmount callback function.
270 * After the base umount() succeeds, we may want to take extra actions,
271 * such as informing remote mount daemons that we've unmounted them.
272 * See amfs_auto_umounted(), host_umounted(), nfs_umounted().
274 static void
275 foofs_umounted(am_node *mp)
277 plog(XLOG_INFO, "entering foofs_umounted...");
279 return;
284 * Find a file server.
285 * Returns: fserver of found server, or NULL if not found.
287 fserver *
288 foofs_ffserver(mntfs *mf)
290 plog(XLOG_INFO, "entering foofs_ffserver...");
292 return NULL;