4 * Copyright (c) 1997-2009 Erez Zadok
5 * Copyright (c) 1989 Jan-Simon Pendry
6 * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
7 * Copyright (c) 1989 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/srvr_amfs_auto.c
47 * Automount FS server ("localhost") modeling
52 #endif /* HAVE_CONFIG_H */
59 static qelem amfs_auto_srvr_list
= {&amfs_auto_srvr_list
, &amfs_auto_srvr_list
};
60 static fserver
*localhost
;
64 * Find an nfs server for the local host
67 amfs_generic_find_srvr(mntfs
*mf
)
69 fserver
*fs
= localhost
;
72 fs
= ALLOC(struct fserver
);
74 fs
->fs_host
= strdup("localhost");
77 fs
->fs_pinger
= AM_PINGER
;
78 fs
->fs_flags
= FSF_VALID
| FSF_PING_UNINIT
;
79 fs
->fs_type
= "local";
80 fs
->fs_private
= NULL
;
83 ins_que(&fs
->fs_q
, &amfs_auto_srvr_list
);
85 srvrlog(fs
, "starts up");
95 /*****************************************************************************
96 *** GENERIC ROUTINES FOLLOW
97 *****************************************************************************/
100 * Wakeup anything waiting for this server
103 wakeup_srvr(fserver
*fs
)
105 fs
->fs_flags
&= ~FSF_WANT
;
111 * Called when final ttl of server has expired
114 timeout_srvr(voidp v
)
119 * If the reference count is still zero then
120 * we are free to remove this node
122 if (fs
->fs_refc
== 0) {
123 dlog("Deleting file server %s", fs
->fs_host
);
124 if (fs
->fs_flags
& FSF_WANT
)
132 * (Possibly) call the private free routine.
134 if (fs
->fs_private
&& fs
->fs_prfree
)
135 (*fs
->fs_prfree
) (fs
->fs_private
);
138 * Free the net address
144 * Free the host name.
149 * Discard the fserver object.
160 free_srvr(fserver
*fs
)
162 if (--fs
->fs_refc
== 0) {
164 * The reference count is now zero,
165 * so arrange for this node to be
166 * removed in AM_TTL seconds if no
167 * other mntfs is referencing it.
169 int ttl
= (FSRV_ERROR(fs
) || FSRV_ISDOWN(fs
)) ? 19 : AM_TTL
;
171 dlog("Last hard reference to file server %s - will timeout in %ds", fs
->fs_host
, ttl
);
173 untimeout(fs
->fs_cid
);
175 * Turn off pinging - XXX
177 fs
->fs_flags
&= ~FSF_PINGING
;
181 * Keep structure lying around for a while
183 fs
->fs_cid
= timeout(ttl
, timeout_srvr
, (voidp
) fs
);
186 * Mark the fileserver down and invalid again
188 fs
->fs_flags
&= ~FSF_VALID
;
189 fs
->fs_flags
|= FSF_DOWN
;
195 * Make a duplicate fserver reference
198 dup_srvr(fserver
*fs
)
209 srvrlog(fserver
*fs
, char *state
)
211 plog(XLOG_INFO
, "file server %s, type %s, state %s", fs
->fs_host
, fs
->fs_type
, state
);