]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/statd/callback.c
c9c686d4f1c437c346c3652836981255fee88397
[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 #include "config.h"
10 #include "statd.h"
11 #include "notlist.h"
12
13 /* Callback notify list. */
14 /* notify_list *cbnl = NULL; ... never used */
15
16
17 /* 
18  * Services SM_NOTIFY requests.
19  * Any clients that have asked us to monitor that host are put on
20  * the global callback list, which is processed as soon as statd
21  * returns to svc_run.
22  */
23 void *
24 sm_notify_1_svc(struct stat_chge *argp, struct svc_req *rqstp)
25 {
26         notify_list    *lp, *call;
27         static char    *result = NULL;
28
29         dprintf(L_DEBUG, "Received SM_NOTIFY from %s, state: %d",
30                                 argp->mon_name, argp->state);
31
32         /* quick check - don't bother if we're not monitoring anyone */
33         /* LH - this was != MULL, meaning that if anyone _was_ in our RTNL,
34          * we'd never pass this point. */
35         if (!(lp = rtnl)) {
36                 log(L_WARNING, "SM_NOTIFY from %s while not monitoring any hosts.",
37                                 argp->mon_name, argp->state);
38                 return ((void *) &result);
39         }
40
41         /* okir change: statd doesn't remove the remote host from its
42          * internal monitor list when receiving an SM_NOTIFY call from
43          * it. Lockd will want to continue monitoring the remote host
44          * until it issues an SM_UNMON call.
45          */
46         while ((lp = nlist_gethost(lp, argp->mon_name, 0)) != NULL) {
47                 if (NL_STATE(lp) != argp->state) {
48                         NL_STATE(lp) = argp->state;
49                         call = nlist_clone(lp);
50                         NL_TYPE(call) = NOTIFY_CALLBACK;
51                         nlist_insert(&notify, call);
52                 }
53                 lp = NL_NEXT(lp);
54         }
55
56         return ((void *) &result);
57 }