1996-02-17 15:14:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1995
|
|
|
|
* A.R. Gordon (andrew.gordon@net-tel.co.uk). All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed for the FreeBSD project
|
|
|
|
* 4. Neither the name of the author nor the names of any co-contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY ANDREW GORDON AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1997-10-13 11:13:33 +00:00
|
|
|
#ifndef lint
|
|
|
|
static const char rcsid[] =
|
1999-08-28 01:35:59 +00:00
|
|
|
"$FreeBSD$";
|
1997-10-13 11:13:33 +00:00
|
|
|
#endif /* not lint */
|
1996-02-17 15:14:59 +00:00
|
|
|
|
1997-10-13 11:13:33 +00:00
|
|
|
#include <errno.h>
|
1996-02-17 15:14:59 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1997-10-13 11:13:33 +00:00
|
|
|
#include <unistd.h>
|
1996-02-17 15:14:59 +00:00
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#include <syslog.h>
|
2002-07-11 17:11:42 +00:00
|
|
|
#include <vis.h>
|
2002-07-15 19:02:45 +00:00
|
|
|
#include <netdb.h> /* for getaddrinfo() */
|
2002-07-11 17:33:47 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
1996-02-17 15:14:59 +00:00
|
|
|
|
|
|
|
#include "statd.h"
|
|
|
|
|
2002-07-11 17:11:42 +00:00
|
|
|
/* sm_check_hostname -------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
* Purpose: Check `mon_name' member of sm_name struct to ensure that the array
|
|
|
|
* consists only of printable characters.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if hostname is good. FALSE if hostname contains binary or
|
|
|
|
* otherwise non-printable characters.
|
|
|
|
*
|
|
|
|
* Notes: Will syslog(3) to warn of corrupt hostname.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int sm_check_hostname(struct svc_req *req, char *arg)
|
|
|
|
{
|
|
|
|
int len, dstlen, ret;
|
|
|
|
struct sockaddr_in *claddr;
|
|
|
|
char *dst;
|
|
|
|
|
|
|
|
len = strlen(arg);
|
|
|
|
dstlen = (4 * len) + 1;
|
|
|
|
dst = malloc(dstlen);
|
|
|
|
claddr = svc_getcaller(req->rq_xprt);
|
|
|
|
ret = 1;
|
|
|
|
|
|
|
|
if (claddr == NULL || dst == NULL)
|
|
|
|
{
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
else if (strvis(dst, arg, VIS_WHITE) != len)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"sm_stat: client %s hostname %s contained invalid characters.",
|
|
|
|
inet_ntoa(claddr->sin_addr),
|
|
|
|
dst);
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
free(dst);
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sm_stat_1 --------------------------------------------------------------- */
|
1996-02-17 15:14:59 +00:00
|
|
|
/*
|
|
|
|
Purpose: RPC call to enquire if a host can be monitored
|
|
|
|
Returns: TRUE for any hostname that can be looked up to give
|
|
|
|
an address.
|
|
|
|
*/
|
|
|
|
|
1996-04-01 05:36:06 +00:00
|
|
|
struct sm_stat_res *sm_stat_1_svc(sm_name *arg, struct svc_req *req)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
|
|
|
static sm_stat_res res;
|
2002-07-15 19:02:45 +00:00
|
|
|
struct addrinfo *ai;
|
2002-07-11 17:44:59 +00:00
|
|
|
struct sockaddr_in *claddr;
|
2002-07-11 17:11:42 +00:00
|
|
|
static int err;
|
1996-02-17 15:14:59 +00:00
|
|
|
|
2002-07-11 17:11:42 +00:00
|
|
|
err = 1;
|
|
|
|
if ((err = sm_check_hostname(req, arg->mon_name)) == 0)
|
|
|
|
{
|
1996-02-17 15:14:59 +00:00
|
|
|
res.res_stat = stat_fail;
|
|
|
|
}
|
2002-07-11 17:11:42 +00:00
|
|
|
if (err != 0)
|
|
|
|
{
|
|
|
|
if (debug)
|
|
|
|
syslog(LOG_DEBUG, "stat called for host %s", arg->mon_name);
|
2002-07-15 19:02:45 +00:00
|
|
|
if (getaddrinfo(arg->mon_name, NULL, NULL, &ai) == 0) {
|
2002-07-11 17:11:42 +00:00
|
|
|
res.res_stat = stat_succ;
|
2002-07-15 19:02:45 +00:00
|
|
|
freeaddrinfo(ai);
|
|
|
|
}
|
2002-07-11 17:11:42 +00:00
|
|
|
else
|
|
|
|
{
|
2002-07-11 17:44:59 +00:00
|
|
|
claddr = svc_getcaller(req->rq_xprt);
|
|
|
|
syslog(LOG_ERR, "invalid hostname to sm_stat from %s: %s",
|
|
|
|
inet_ntoa(claddr->sin_addr), arg->mon_name);
|
2002-07-11 17:11:42 +00:00
|
|
|
res.res_stat = stat_fail;
|
|
|
|
}
|
|
|
|
}
|
1996-02-17 15:14:59 +00:00
|
|
|
res.state = status_info->ourState;
|
|
|
|
return (&res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sm_mon_1 ---------------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
Purpose: RPC procedure to establish a monitor request
|
|
|
|
Returns: Success, unless lack of resources prevents
|
|
|
|
the necessary structures from being set up
|
|
|
|
to record the request, or if the hostname is not
|
2002-07-15 19:02:45 +00:00
|
|
|
valid (as judged by getaddrinfo())
|
1996-02-17 15:14:59 +00:00
|
|
|
*/
|
|
|
|
|
1996-04-01 05:36:06 +00:00
|
|
|
struct sm_stat_res *sm_mon_1_svc(mon *arg, struct svc_req *req)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
|
|
|
static sm_stat_res res;
|
|
|
|
HostInfo *hp;
|
2002-07-11 17:11:42 +00:00
|
|
|
static int err;
|
1996-02-17 15:14:59 +00:00
|
|
|
MonList *lp;
|
2002-07-15 19:02:45 +00:00
|
|
|
struct addrinfo *ai;
|
1996-02-17 15:14:59 +00:00
|
|
|
|
2002-07-11 17:11:42 +00:00
|
|
|
if ((err = sm_check_hostname(req, arg->mon_id.mon_name)) == 0)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
2002-07-11 17:11:42 +00:00
|
|
|
res.res_stat = stat_fail;
|
1996-02-17 15:14:59 +00:00
|
|
|
}
|
|
|
|
|
2002-07-11 17:11:42 +00:00
|
|
|
if (err != 0)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
2002-07-11 17:11:42 +00:00
|
|
|
if (debug)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
2002-07-11 17:11:42 +00:00
|
|
|
syslog(LOG_DEBUG, "monitor request for host %s", arg->mon_id.mon_name);
|
|
|
|
syslog(LOG_DEBUG, "recall host: %s prog: %d ver: %d proc: %d",
|
2002-07-11 17:36:09 +00:00
|
|
|
arg->mon_id.mon_name,
|
2002-07-11 17:11:42 +00:00
|
|
|
arg->mon_id.my_id.my_prog, arg->mon_id.my_id.my_vers,
|
|
|
|
arg->mon_id.my_id.my_proc);
|
1996-02-17 15:14:59 +00:00
|
|
|
}
|
2002-07-11 17:11:42 +00:00
|
|
|
res.res_stat = stat_fail; /* Assume fail until set otherwise */
|
|
|
|
res.state = status_info->ourState;
|
|
|
|
|
|
|
|
/* Find existing host entry, or create one if not found */
|
|
|
|
/* If find_host() fails, it will have logged the error already. */
|
2002-07-15 19:02:45 +00:00
|
|
|
if (getaddrinfo(arg->mon_id.mon_name, NULL, NULL, &ai) != 0)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
2002-07-11 17:11:42 +00:00
|
|
|
syslog(LOG_ERR, "Invalid hostname to sm_mon: %s", arg->mon_id.mon_name);
|
2002-07-15 19:02:45 +00:00
|
|
|
return (&res);
|
2002-07-11 17:11:42 +00:00
|
|
|
}
|
2002-07-15 19:02:45 +00:00
|
|
|
freeaddrinfo(ai);
|
|
|
|
if ((hp = find_host(arg->mon_id.mon_name, TRUE)))
|
2002-07-11 17:11:42 +00:00
|
|
|
{
|
|
|
|
lp = (MonList *)malloc(sizeof(MonList));
|
|
|
|
if (!lp)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "Out of memory");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strncpy(lp->notifyHost, arg->mon_id.my_id.my_name, SM_MAXSTRLEN);
|
|
|
|
lp->notifyProg = arg->mon_id.my_id.my_prog;
|
|
|
|
lp->notifyVers = arg->mon_id.my_id.my_vers;
|
|
|
|
lp->notifyProc = arg->mon_id.my_id.my_proc;
|
|
|
|
memcpy(lp->notifyData, arg->priv, sizeof(lp->notifyData));
|
|
|
|
|
|
|
|
lp->next = hp->monList;
|
|
|
|
hp->monList = lp;
|
|
|
|
sync_file();
|
|
|
|
|
|
|
|
res.res_stat = stat_succ; /* Report success */
|
|
|
|
}
|
1996-02-17 15:14:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return (&res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* do_unmon ---------------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
Purpose: Remove a monitor request from a host
|
|
|
|
Returns: TRUE if found, FALSE if not found.
|
1996-04-01 05:36:06 +00:00
|
|
|
Notes: Common code from sm_unmon_1_svc and sm_unmon_all_1_svc
|
1996-02-17 15:14:59 +00:00
|
|
|
In the unlikely event of more than one identical monitor
|
|
|
|
request, all are removed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int do_unmon(HostInfo *hp, my_id *idp)
|
|
|
|
{
|
|
|
|
MonList *lp, *next;
|
|
|
|
MonList *last = NULL;
|
|
|
|
int result = FALSE;
|
|
|
|
|
|
|
|
lp = hp->monList;
|
|
|
|
while (lp)
|
|
|
|
{
|
|
|
|
if (!strncasecmp(idp->my_name, lp->notifyHost, SM_MAXSTRLEN)
|
|
|
|
&& (idp->my_prog == lp->notifyProg) && (idp->my_proc == lp->notifyProc)
|
|
|
|
&& (idp->my_vers == lp->notifyVers))
|
|
|
|
{
|
|
|
|
/* found one. Unhook from chain and free. */
|
|
|
|
next = lp->next;
|
|
|
|
if (last) last->next = next;
|
|
|
|
else hp->monList = next;
|
|
|
|
free(lp);
|
|
|
|
lp = next;
|
|
|
|
result = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
last = lp;
|
|
|
|
lp = lp->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sm_unmon_1 -------------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
Purpose: RPC procedure to release a monitor request.
|
|
|
|
Returns: Local machine's status number
|
|
|
|
Notes: The supplied mon_id should match the value passed in an
|
|
|
|
earlier call to sm_mon_1
|
|
|
|
*/
|
|
|
|
|
2002-07-11 17:55:14 +00:00
|
|
|
struct sm_stat *sm_unmon_1_svc(mon_id *arg, struct svc_req *req __unused)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
|
|
|
static sm_stat res;
|
|
|
|
HostInfo *hp;
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
{
|
|
|
|
syslog(LOG_DEBUG, "un-monitor request for host %s", arg->mon_name);
|
|
|
|
syslog(LOG_DEBUG, "recall host: %s prog: %d ver: %d proc: %d",
|
2002-07-11 17:36:09 +00:00
|
|
|
arg->mon_name,
|
|
|
|
arg->my_id.my_prog, arg->my_id.my_vers, arg->my_id.my_proc);
|
1996-02-17 15:14:59 +00:00
|
|
|
}
|
|
|
|
|
1997-10-13 11:13:33 +00:00
|
|
|
if ((hp = find_host(arg->mon_name, FALSE)))
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
|
|
|
if (do_unmon(hp, &arg->my_id)) sync_file();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "unmon request from %s, no matching monitor",
|
|
|
|
arg->my_id.my_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else syslog(LOG_ERR, "unmon request from %s for unknown host %s",
|
|
|
|
arg->my_id.my_name, arg->mon_name);
|
|
|
|
|
|
|
|
res.state = status_info->ourState;
|
|
|
|
|
|
|
|
return (&res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sm_unmon_all_1 ---------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
Purpose: RPC procedure to release monitor requests.
|
|
|
|
Returns: Local machine's status number
|
|
|
|
Notes: Releases all monitor requests (if any) from the specified
|
|
|
|
host and program number.
|
|
|
|
*/
|
|
|
|
|
2002-07-11 17:55:14 +00:00
|
|
|
struct sm_stat *sm_unmon_all_1_svc(my_id *arg, struct svc_req *req __unused)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
|
|
|
static sm_stat res;
|
|
|
|
HostInfo *hp;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
{
|
|
|
|
syslog(LOG_DEBUG, "unmon_all for host: %s prog: %d ver: %d proc: %d",
|
|
|
|
arg->my_name, arg->my_prog, arg->my_vers, arg->my_proc);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = status_info->noOfHosts, hp = status_info->hosts; i; i--, hp++)
|
|
|
|
{
|
|
|
|
do_unmon(hp, arg);
|
|
|
|
}
|
|
|
|
sync_file();
|
|
|
|
|
|
|
|
res.state = status_info->ourState;
|
|
|
|
|
|
|
|
return (&res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sm_simu_crash_1 --------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
Purpose: RPC procedure to simulate a crash
|
|
|
|
Returns: Nothing
|
|
|
|
Notes: Standardised mechanism for debug purposes
|
|
|
|
The specification says that we should drop all of our
|
|
|
|
status information (apart from the list of monitored hosts
|
|
|
|
on disc). However, this would confuse the rpc.lockd
|
|
|
|
which would be unaware that all of its monitor requests
|
|
|
|
had been silently junked. Hence we in fact retain all
|
|
|
|
current requests and simply increment the status counter
|
|
|
|
and inform all hosts on the monitor list.
|
|
|
|
*/
|
|
|
|
|
2002-07-11 18:45:59 +00:00
|
|
|
void *sm_simu_crash_1_svc(void *v __unused, struct svc_req *req __unused)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
|
|
|
static char dummy;
|
|
|
|
int work_to_do;
|
|
|
|
HostInfo *hp;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (debug) syslog(LOG_DEBUG, "simu_crash called!!");
|
|
|
|
|
|
|
|
/* Simulate crash by setting notify-required flag on all monitored */
|
|
|
|
/* hosts, and incrementing our status number. notify_hosts() is */
|
|
|
|
/* then called to fork a process to do the notifications. */
|
|
|
|
|
|
|
|
for (i = status_info->noOfHosts, hp = status_info->hosts; i ; i--, hp++)
|
|
|
|
{
|
|
|
|
if (hp->monList)
|
|
|
|
{
|
|
|
|
work_to_do = TRUE;
|
|
|
|
hp->notifyReqd = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
status_info->ourState += 2; /* always even numbers if not crashed */
|
|
|
|
|
|
|
|
if (work_to_do) notify_hosts();
|
|
|
|
|
|
|
|
return (&dummy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sm_notify_1 ------------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
Purpose: RPC procedure notifying local statd of the crash of another
|
|
|
|
Returns: Nothing
|
|
|
|
Notes: There is danger of deadlock, since it is quite likely that
|
|
|
|
the client procedure that we call will in turn call us
|
|
|
|
to remove or adjust the monitor request.
|
|
|
|
We therefore fork() a process to do the notifications.
|
|
|
|
Note that the main HostInfo structure is in a mmap()
|
|
|
|
region and so will be shared with the child, but the
|
|
|
|
monList pointed to by the HostInfo is in normal memory.
|
|
|
|
Hence if we read the monList before forking, we are
|
|
|
|
protected from the parent servicing other requests
|
|
|
|
that modify the list.
|
|
|
|
*/
|
|
|
|
|
2002-07-11 17:55:14 +00:00
|
|
|
void *sm_notify_1_svc(stat_chge *arg, struct svc_req *req __unused)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
|
|
|
struct timeval timeout = { 20, 0 }; /* 20 secs timeout */
|
|
|
|
CLIENT *cli;
|
|
|
|
static char dummy;
|
2002-03-22 19:43:21 +00:00
|
|
|
sm_status tx_arg; /* arg sent to callback procedure */
|
1996-02-17 15:14:59 +00:00
|
|
|
MonList *lp;
|
|
|
|
HostInfo *hp;
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
if (debug) syslog(LOG_DEBUG, "notify from host %s, new state %d",
|
|
|
|
arg->mon_name, arg->state);
|
|
|
|
|
|
|
|
hp = find_host(arg->mon_name, FALSE);
|
|
|
|
if (!hp)
|
|
|
|
{
|
|
|
|
/* Never heard of this host - why is it notifying us? */
|
|
|
|
syslog(LOG_ERR, "Unsolicited notification from host %s", arg->mon_name);
|
2002-07-11 17:39:50 +00:00
|
|
|
return (&dummy);
|
1996-02-17 15:14:59 +00:00
|
|
|
}
|
|
|
|
lp = hp->monList;
|
2002-07-11 17:39:50 +00:00
|
|
|
if (!lp) return (&dummy); /* We know this host, but have no */
|
1996-02-17 15:14:59 +00:00
|
|
|
/* outstanding requests. */
|
|
|
|
pid = fork();
|
|
|
|
if (pid == -1)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "Unable to fork notify process - %s", strerror(errno));
|
2002-07-11 17:39:50 +00:00
|
|
|
return (NULL); /* no answer, the client will retry */
|
1996-02-17 15:14:59 +00:00
|
|
|
}
|
|
|
|
if (pid) return (&dummy); /* Parent returns */
|
|
|
|
|
|
|
|
while (lp)
|
|
|
|
{
|
|
|
|
tx_arg.mon_name = arg->mon_name;
|
|
|
|
tx_arg.state = arg->state;
|
|
|
|
memcpy(tx_arg.priv, lp->notifyData, sizeof(tx_arg.priv));
|
|
|
|
cli = clnt_create(lp->notifyHost, lp->notifyProg, lp->notifyVers, "udp");
|
|
|
|
if (!cli)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "Failed to contact host %s%s", lp->notifyHost,
|
|
|
|
clnt_spcreateerror(""));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-10-26 06:14:10 +00:00
|
|
|
if (clnt_call(cli, lp->notifyProc, (xdrproc_t)xdr_sm_status, &tx_arg,
|
|
|
|
(xdrproc_t)xdr_void, &dummy, timeout) != RPC_SUCCESS)
|
1996-02-17 15:14:59 +00:00
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "Failed to call rpc.statd client at host %s",
|
|
|
|
lp->notifyHost);
|
|
|
|
}
|
|
|
|
clnt_destroy(cli);
|
|
|
|
}
|
|
|
|
lp = lp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
exit (0); /* Child quits */
|
|
|
|
}
|