2 * Copyright (C) 1995, 1997-1999 Jeffrey A. Uphoff
3 * Modified by Olaf Kirch, Oct. 1996.
4 * Modified by Lon Hohberger, Oct. 2000.
13 #include <arpa/inet.h>
20 /* Callback notify list. */
21 /* notify_list *cbnl = NULL; ... never used */
25 * Services SM_NOTIFY requests.
26 * Any clients that have asked us to monitor that host are put on
27 * the global callback list, which is processed as soon as statd
31 sm_notify_1_svc(struct stat_chge *argp, struct svc_req *rqstp)
33 notify_list *lp, *call;
34 static char *result = NULL;
35 struct sockaddr_in *sin = nfs_getrpccaller_in(rqstp->rq_xprt);
36 char *ip_addr = xstrdup(inet_ntoa(sin->sin_addr));
38 xlog(D_CALL, "Received SM_NOTIFY from %s, state: %d",
39 argp->mon_name, argp->state);
41 /* quick check - don't bother if we're not monitoring anyone */
43 xlog_warn("SM_NOTIFY from %s while not monitoring any hosts",
45 return ((void *) &result);
48 /* okir change: statd doesn't remove the remote host from its
49 * internal monitor list when receiving an SM_NOTIFY call from
50 * it. Lockd will want to continue monitoring the remote host
51 * until it issues an SM_UNMON call.
53 for (lp = rtnl ; lp ; lp = lp->next)
54 if (NL_STATE(lp) != argp->state &&
55 (matchhostname(argp->mon_name, lp->dns_name) ||
56 matchhostname(ip_addr, lp->dns_name))) {
57 NL_STATE(lp) = argp->state;
58 call = nlist_clone(lp);
59 nlist_insert(¬ify, call);
63 return ((void *) &result);