4 * Copyright (c) 1997-2009 Erez Zadok
5 * Copyright (c) 1990 Jan-Simon Pendry
6 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
7 * Copyright (c) 1990 The Regents of the University of California.
10 * This code is derived from software contributed to Berkeley by
11 * Jan-Simon Pendry at Imperial College, London.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgment:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 * File: am-utils/amd/ops_TEMPLATE.c
47 * An empty template for an amd pseudo filesystem "foofs".
51 * NOTE: if this is an Amd file system, prepend "amfs_" to all foofs symbols
52 * and renamed the file name to amfs_foofs.c. If it is a native file system
53 * (such as pcfs, isofs, or ffs), then you can keep the names as is, and
54 * just rename the file to ops_foofs.c.
59 #endif /* HAVE_CONFIG_H */
63 /* forward declarations */
64 static char *foofs_match(am_opts
*fo
);
65 static int foofs_init(mntfs
*mf
);
66 static int foofs_mount(am_node
*mp
, mntfs
*mf
);
67 static int foofs_umount(am_node
*mp
, mntfs
*mf
);
68 static am_node
*foofs_lookuppn(am_node
*mp
, char *fname
, int *error_return
, int op
);
69 static int foofs_readdir(am_node
*mp
, nfscookie cookie
, nfsdirlist
*dp
, nfsentry
*ep
, u_int count
);
70 static am_node
*foofs_readlink(am_node
*mp
, int *error_return
);
71 static void foofs_mounted(am_node
*am
, mntfs
*mf
);
72 static void foofs_umounted(am_node
*mp
, mntfs
*mf
);
73 static fserver
*foofs_ffserver(mntfs
*mf
);
78 * Define only those you need, others set to 0 (NULL)
82 "foofs", /* name of file system */
83 foofs_match
, /* match */
84 foofs_init
, /* initialize */
85 foofs_mount
, /* mount vnode */
86 foofs_umount
, /* unmount vnode */
87 foofs_lookup_child
, /* lookup path-name */
88 foofs_mount_child
, /* mount path-name */
89 foofs_readdir
, /* read directory */
90 foofs_readlink
, /* read link */
91 foofs_mounted
, /* after-mount extra actions */
92 foofs_umounted
, /* after-umount extra actions */
93 foofs_ffserver
, /* find a file server */
94 foofs_get_wchan
, /* return the waiting channel */
95 FS_MKMNT
| FS_BACKGROUND
| FS_AMQINFO
, /* nfs_fs_flags */
97 AUTOFS_TEMPLATE_FS_FLAGS
,
98 #endif /* HAVE_FS_AUTOFS */
103 * Check that f/s has all needed fields.
104 * Returns: matched string if found, NULL otherwise.
107 foofs_match(am_opts
*fo
)
109 char *cp
= "fill this with a way to find the match";
111 plog(XLOG_INFO
, "entering foofs_match...");
116 return NULL
; /* not OK */
122 * Returns: 0 if OK, non-zero (errno) if failed.
125 foofs_init(mntfs
*mf
)
129 plog(XLOG_INFO
, "entering foofs_init...");
131 error
= EPERM
; /* XXX: fixme */
138 * Returns: 0 if OK, non-zero (errno) if failed.
141 foofs_mount(am_node
*mp
)
145 plog(XLOG_INFO
, "entering foofs_mount...");
147 error
= EPERM
; /* XXX: fixme */
154 * Returns: 0 if OK, non-zero (errno) if failed.
157 foofs_fmount(mntfs
*mf
)
161 plog(XLOG_INFO
, "entering foofs_fmount...");
163 error
= EPERM
; /* XXX: fixme */
170 * Returns: 0 if OK, non-zero (errno) if failed.
173 foofs_umount(am_node
*mp
)
177 plog(XLOG_INFO
, "entering foofs_umount...");
179 error
= EPERM
; /* XXX: fixme */
186 * Returns: 0 if OK, non-zero (errno) if failed.
189 foofs_fumount(mntfs
*mf
)
193 plog(XLOG_INFO
, "entering foofs_fumount...");
195 error
= EPERM
; /* XXX: fixme */
202 * Returns: the am_node that was found, or NULL if failed.
203 * If failed, also fills in errno in error_return.
206 foofs_lookuppn(am_node
*mp
, char *fname
, int *error_return
, int op
)
210 plog(XLOG_INFO
, "entering foofs_lookuppn...");
212 error
= EPERM
; /* XXX: fixme */
214 *error_return
= error
;
221 * Returns: 0 if OK, non-zero (errno) if failed.
222 * If OK, fills in ep with chain of directory entries.
225 foofs_readdir(am_node
*mp
, nfscookie cookie
, nfsdirlist
*dp
, nfsentry
*ep
, u_int count
)
229 plog(XLOG_INFO
, "entering foofs_readdir...");
231 error
= EPERM
; /* XXX: fixme */
238 * Returns: am_node found, or NULL if not found.
239 * If failed, fills in errno in error_return.
242 foofs_readlink(am_node
*mp
, int *error_return
)
246 plog(XLOG_INFO
, "entering foofs_readlink...");
248 error
= EPERM
; /* XXX: fixme */
250 *error_return
= error
;
256 * Async mount callback function.
257 * After the base mount went OK, sometimes
258 * there are additional actions that are needed. See union_mounted() and
262 foofs_mounted(mntfs
*mf
)
264 plog(XLOG_INFO
, "entering foofs_mounted...");
271 * Async unmount callback function.
272 * After the base umount() succeeds, we may want to take extra actions,
273 * such as informing remote mount daemons that we've unmounted them.
274 * See amfs_auto_umounted(), host_umounted(), nfs_umounted().
277 foofs_umounted(am_node
*mp
)
279 plog(XLOG_INFO
, "entering foofs_umounted...");
286 * Find a file server.
287 * Returns: fserver of found server, or NULL if not found.
290 foofs_ffserver(mntfs
*mf
)
292 plog(XLOG_INFO
, "entering foofs_ffserver...");
299 * Normally just return mf. Only inherit needs to do special tricks.
302 foofs_get_wchan(mntfs
*mf
)
304 plog(XLOG_INFO
, "entering foofs_get_wchan...");