1 /* $NetBSD: stat_proc.c,v 1.7 2005/11/03 19:36:42 bouyer Exp $ */
5 * A.R. Gordon (andrew.gordon@net-tel.co.uk). All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed for the FreeBSD project
18 * 4. Neither the name of the author nor the names of any co-contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY ANDREW GORDON AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include <sys/cdefs.h>
38 __RCSID("$NetBSD: stat_proc.c,v 1.7 2005/11/03 19:36:42 bouyer Exp $");
54 /* sm_stat_1 --------------------------------------------------------------- */
56 * Purpose: RPC call to enquire if a host can be monitored
57 * Returns: TRUE for any hostname that can be looked up to give
61 sm_stat_1_svc(arg
, req
)
65 static sm_stat_res smres
;
70 syslog(LOG_DEBUG
, "stat called for host %s", arg
->mon_name
);
72 if (getaddrinfo(arg
->mon_name
, NULL
, NULL
, &ai
) == 0) {
73 smres
.res_stat
= stat_succ
;
76 syslog(LOG_ERR
, "invalid hostname to sm_stat: %s",
78 smres
.res_stat
= stat_fail
;
81 smres
.state
= status_info
.ourState
;
86 /* sm_mon_1 ---------------------------------------------------------------- */
88 * Purpose: RPC procedure to establish a monitor request
89 * Returns: Success, unless lack of resources prevents
90 * the necessary structures from being set up
91 * to record the request, or if the hostname is not
92 * valid (as judged by gethostbyname())
95 sm_mon_1_svc(arg
, req
)
99 static sm_stat_res smres
;
106 syslog(LOG_DEBUG
, "monitor request for host %s",
107 arg
->mon_id
.mon_name
);
108 syslog(LOG_DEBUG
, "recall host: %s prog: %d ver: %d proc: %d",
109 arg
->mon_id
.my_id
.my_name
, arg
->mon_id
.my_id
.my_prog
,
110 arg
->mon_id
.my_id
.my_vers
, arg
->mon_id
.my_id
.my_proc
);
112 smres
.res_stat
= stat_fail
; /* Assume fail until set otherwise */
113 smres
.state
= status_info
.ourState
;
116 * Find existing host entry, or create one if not found. If
117 * find_host() fails, it will have logged the error already.
119 if (getaddrinfo(arg
->mon_id
.mon_name
, NULL
, NULL
, &ai
) != 0) {
120 syslog(LOG_ERR
, "Invalid hostname to sm_mon: %s",
121 arg
->mon_id
.mon_name
);
127 if ((hp
= find_host(arg
->mon_id
.mon_name
, &h
)) == NULL
)
128 memset(hp
= &h
, 0, sizeof(h
));
130 lp
= (MonList
*)malloc(sizeof(MonList
));
132 syslog(LOG_ERR
, "Out of memory");
134 strncpy(lp
->notifyHost
, arg
->mon_id
.my_id
.my_name
,
136 lp
->notifyProg
= arg
->mon_id
.my_id
.my_prog
;
137 lp
->notifyVers
= arg
->mon_id
.my_id
.my_vers
;
138 lp
->notifyProc
= arg
->mon_id
.my_id
.my_proc
;
139 memcpy(lp
->notifyData
, arg
->priv
,
140 sizeof(lp
->notifyData
));
142 lp
->next
= hp
->monList
;
144 change_host(arg
->mon_id
.mon_name
, hp
);
146 smres
.res_stat
= stat_succ
; /* Report success */
152 /* do_unmon ---------------------------------------------------------------- */
154 * Purpose: Remove a monitor request from a host
155 * Returns: TRUE if found, FALSE if not found.
156 * Notes: Common code from sm_unmon_1_svc and sm_unmon_all_1_svc
157 * In the unlikely event of more than one identical monitor
158 * request, all are removed.
161 do_unmon(name
, hp
, ptr
)
168 MonList
*last
= NULL
;
173 if (!strncasecmp(idp
->my_name
, lp
->notifyHost
, SM_MAXSTRLEN
)
174 && (idp
->my_prog
== lp
->notifyProg
)
175 && (idp
->my_proc
== lp
->notifyProc
)
176 && (idp
->my_vers
== lp
->notifyVers
)) {
177 /* found one. Unhook from chain and free. */
194 /* sm_unmon_1 -------------------------------------------------------------- */
196 * Purpose: RPC procedure to release a monitor request.
197 * Returns: Local machine's status number
198 * Notes: The supplied mon_id should match the value passed in an
199 * earlier call to sm_mon_1
202 sm_unmon_1_svc(arg
, req
)
206 static sm_stat smres
;
211 syslog(LOG_DEBUG
, "un-monitor request for host %s",
213 syslog(LOG_DEBUG
, "recall host: %s prog: %d ver: %d proc: %d",
214 arg
->my_id
.my_name
, arg
->my_id
.my_prog
,
215 arg
->my_id
.my_vers
, arg
->my_id
.my_proc
);
217 if ((hp
= find_host(arg
->mon_name
, &h
)) != NULL
) {
218 if (do_unmon(arg
->mon_name
, hp
, &arg
->my_id
)) {
219 change_host(arg
->mon_name
, hp
);
224 "unmon request from %s, no matching monitor",
227 syslog(LOG_ERR
, "unmon request from %s for unknown host %s",
228 arg
->my_id
.my_name
, arg
->mon_name
);
230 smres
.state
= status_info
.ourState
;
236 /* sm_unmon_all_1 ---------------------------------------------------------- */
238 * Purpose: RPC procedure to release monitor requests.
239 * Returns: Local machine's status number
240 * Notes: Releases all monitor requests (if any) from the specified
241 * host and program number.
244 sm_unmon_all_1_svc(arg
, req
)
248 static sm_stat smres
;
253 "unmon_all for host: %s prog: %d ver: %d proc: %d",
254 arg
->my_name
, arg
->my_prog
, arg
->my_vers
, arg
->my_proc
);
260 smres
.state
= status_info
.ourState
;
266 /* sm_simu_crash_1 --------------------------------------------------------- */
268 * Purpose: RPC procedure to simulate a crash
270 * Notes: Standardised mechanism for debug purposes
271 * The specification says that we should drop all of our
272 * status information (apart from the list of monitored hosts
273 * on disc). However, this would confuse the rpc.lockd
274 * which would be unaware that all of its monitor requests
275 * had been silently junked. Hence we in fact retain all
276 * current requests and simply increment the status counter
277 * and inform all hosts on the monitor list.
280 sm_simu_crash_1_svc(v
, req
)
288 syslog(LOG_DEBUG
, "simu_crash called!!");
297 /* sm_notify_1 ------------------------------------------------------------- */
299 * Purpose: RPC procedure notifying local statd of the crash of another
301 * Notes: There is danger of deadlock, since it is quite likely that
302 * the client procedure that we call will in turn call us
303 * to remove or adjust the monitor request.
304 * We therefore fork() a process to do the notifications.
305 * Note that the main HostInfo structure is in a mmap()
306 * region and so will be shared with the child, but the
307 * monList pointed to by the HostInfo is in normal memory.
308 * Hence if we read the monList before forking, we are
309 * protected from the parent servicing other requests
310 * that modify the list.
313 sm_notify_1_svc(arg
, req
)
317 struct timeval timeout
= {20, 0}; /* 20 secs timeout */
320 status tx_arg
; /* arg sent to callback procedure */
326 syslog(LOG_DEBUG
, "notify from host %s, new state %d",
327 arg
->mon_name
, arg
->state
);
329 hp
= find_host(arg
->mon_name
, &h
);
331 /* Never heard of this host - why is it notifying us? */
332 syslog(LOG_DEBUG
, "Unsolicited notification from host %s",
337 if (!lp
) /* We know this host, but have no outstanding requests. */
343 syslog(LOG_ERR
, "Unable to fork notify process - %s",
348 return (&dummy
); /* Parent returns */
351 tx_arg
.mon_name
= arg
->mon_name
;
352 tx_arg
.state
= arg
->state
;
353 memcpy(tx_arg
.priv
, lp
->notifyData
, sizeof(tx_arg
.priv
));
354 cli
= clnt_create(lp
->notifyHost
, lp
->notifyProg
,
355 lp
->notifyVers
, "udp");
357 syslog(LOG_ERR
, "Failed to contact host %s%s",
358 lp
->notifyHost
, clnt_spcreateerror(""));
360 if (clnt_call(cli
, lp
->notifyProc
, xdr_status
, &tx_arg
,
361 xdr_void
, &dummy
, timeout
) != RPC_SUCCESS
)
363 "Failed to call rpc.statd client at host %s",
370 exit(0); /* Child quits */