]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/statd/callback.c
statd: Introduce statd version of matchhostname()
[nfs-utils.git] / utils / statd / callback.c
1 /*
2  * Copyright (C) 1995, 1997-1999 Jeffrey A. Uphoff
3  * Modified by Olaf Kirch, Oct. 1996.
4  * Modified by Lon Hohberger, Oct. 2000.
5  *
6  * NSM for Linux.
7  */
8
9 #ifdef HAVE_CONFIG_H
10 #include <config.h>
11 #endif
12
13 #include <arpa/inet.h>
14
15 #include "rpcmisc.h"
16 #include "statd.h"
17 #include "notlist.h"
18
19 /* Callback notify list. */
20 /* notify_list *cbnl = NULL; ... never used */
21
22
23 /* 
24  * Services SM_NOTIFY requests.
25  * Any clients that have asked us to monitor that host are put on
26  * the global callback list, which is processed as soon as statd
27  * returns to svc_run.
28  */
29 void *
30 sm_notify_1_svc(struct stat_chge *argp, struct svc_req *rqstp)
31 {
32         notify_list    *lp, *call;
33         static char    *result = NULL;
34         struct sockaddr_in *sin = nfs_getrpccaller_in(rqstp->rq_xprt);
35         char *ip_addr = xstrdup(inet_ntoa(sin->sin_addr));
36
37         xlog(D_CALL, "Received SM_NOTIFY from %s, state: %d",
38                                 argp->mon_name, argp->state);
39
40         /* quick check - don't bother if we're not monitoring anyone */
41         if (rtnl == NULL) {
42                 xlog_warn("SM_NOTIFY from %s while not monitoring any hosts",
43                                 argp->mon_name);
44                 return ((void *) &result);
45         }
46
47         /* okir change: statd doesn't remove the remote host from its
48          * internal monitor list when receiving an SM_NOTIFY call from
49          * it. Lockd will want to continue monitoring the remote host
50          * until it issues an SM_UNMON call.
51          */
52         for (lp = rtnl ; lp ; lp = lp->next)
53                 if (NL_STATE(lp) != argp->state &&
54                     (statd_matchhostname(argp->mon_name, lp->dns_name) ||
55                      statd_matchhostname(ip_addr, lp->dns_name))) {
56                         NL_STATE(lp) = argp->state;
57                         call = nlist_clone(lp);
58                         nlist_insert(&notify, call);
59                 }
60
61
62         return ((void *) &result);
63 }