]> git.decadent.org.uk Git - nfs-utils.git/blobdiff - utils/statd/monitor.c
Support --ha-callout for high-availability callouts
[nfs-utils.git] / utils / statd / monitor.c
index 879e583036ebe437bc7e058045586bc1e539238b..3b81bdd4af1a6cc829cc9efc0d6a2c8e5ddd3d11 100644 (file)
@@ -19,6 +19,7 @@
 #include "misc.h"
 #include "statd.h"
 #include "notlist.h"
+#include "ha-callout.h"
 
 notify_list *          rtnl = NULL;    /* Run-time notify list. */
 
@@ -58,7 +59,7 @@ sm_mon_1_svc(struct mon *argp, struct svc_req *rqstp)
         */
        caller = svc_getcaller(rqstp->rq_xprt)->sin_addr;
        if (caller.s_addr != htonl(INADDR_LOOPBACK)) {
-               log(L_WARNING,
+               note(N_WARNING,
                        "Call to statd from non-local host %s",
                        inet_ntoa(caller));
                goto failure;
@@ -71,12 +72,15 @@ sm_mon_1_svc(struct mon *argp, struct svc_req *rqstp)
         *      This is specific to the linux kernel lockd, which
         *      makes the callback procedure part of the lockd interface.
         *      It is also prone to break when lockd changes its callback
-        *      procedure number.  XXX FIXME
+        *      procedure number -- which, in fact, has now happened once.
+        *      There must be a better way....   XXX FIXME
         */
-       if (id->my_proc != 100021 && id->my_proc != 24) {
-               log(L_WARNING,
-                       "Attempt to register callback to service %d",
-                       id->my_proc);
+       if (id->my_prog != 100021 ||
+           (id->my_proc != 16 && id->my_proc != 24))
+       {
+               note(N_WARNING,
+                       "Attempt to register callback to %d/%d",
+                       id->my_prog, id->my_proc);
                goto failure;
        }
 
@@ -84,7 +88,7 @@ sm_mon_1_svc(struct mon *argp, struct svc_req *rqstp)
         *      Again, specific to the linux kernel lockd.
         */
        if (!inet_aton(mon_name, &mon_addr)) {
-               log(L_WARNING,
+               note(N_WARNING,
                        "Attempt to register host %s (not a dotted quad)",
                        mon_name);
                goto failure;
@@ -97,15 +101,15 @@ sm_mon_1_svc(struct mon *argp, struct svc_req *rqstp)
 
        /* must check for /'s in hostname!  See CERT's CA-96.09 for details. */
        if (strchr(mon_name, '/')) {
-               log(L_CRIT, "SM_MON request for hostname containing '/': %s",
+               note(N_CRIT, "SM_MON request for hostname containing '/': %s",
                        mon_name);
-               log(L_CRIT, "POSSIBLE SPOOF/ATTACK ATTEMPT!");
+               note(N_CRIT, "POSSIBLE SPOOF/ATTACK ATTEMPT!");
                goto failure;
        } else if (gethostbyname(mon_name) == NULL) {
-               log(L_WARNING, "gethostbyname error for %s", mon_name);
+               note(N_WARNING, "gethostbyname error for %s", mon_name);
                goto failure;
        } else if (!(hostinfo = gethostbyname(my_name))) {
-               log(L_WARNING, "gethostbyname error for %s", my_name);
+               note(N_WARNING, "gethostbyname error for %s", my_name);
                goto failure;
        } else
                my_addr = *(struct in_addr *) hostinfo->h_addr;
@@ -131,7 +135,7 @@ sm_mon_1_svc(struct mon *argp, struct svc_req *rqstp)
                                NL_MY_PROG(temp) == id->my_prog &&
                                NL_MY_VERS(temp) == id->my_vers) {
                                /* Hey!  We already know you guys! */
-                               dprintf(L_DEBUG,
+                               dprintf(N_DEBUG,
                                        "Duplicate SM_MON request for %s "
                                        "from procedure on %s",
                                        mon_name, my_name);
@@ -150,7 +154,7 @@ sm_mon_1_svc(struct mon *argp, struct svc_req *rqstp)
         * doesn't fail.  (I should probably fix this assumption.)
         */
        if (!(clnt = nlist_new(my_name, mon_name, 0))) {
-               log(L_WARNING, "out of memory");
+               note(N_WARNING, "out of memory");
                goto failure;
        }
 
@@ -165,25 +169,27 @@ sm_mon_1_svc(struct mon *argp, struct svc_req *rqstp)
         */
 
        path=xmalloc(strlen(SM_DIR)+strlen(mon_name)+2);
-       sprintf(path, SM_DIR "/%s", mon_name);
+       sprintf(path, "%s/%s", SM_DIR, mon_name);
        if ((fd = open(path, O_WRONLY|O_SYNC|O_CREAT, S_IRUSR|S_IWUSR)) < 0) {
                /* Didn't fly.  We won't monitor. */
-               log(L_ERROR, "creat(%s) failed: %m", path);
+               note(N_ERROR, "creat(%s) failed: %m", path);
                nlist_free(NULL, clnt);
                free(path);
                goto failure;
        }
        free(path);
+       /* PRC: do the HA callout: */
+       ha_callout("add-client", mon_name, my_name, -1);
        nlist_insert(&rtnl, clnt);
        close(fd);
 
        result.res_stat = STAT_SUCC;
        result.state = MY_STATE;
-       dprintf(L_DEBUG, "MONITORING %s for %s", mon_name, my_name);
+       dprintf(N_DEBUG, "MONITORING %s for %s", mon_name, my_name);
        return (&result);
 
 failure:
-       log(L_WARNING, "STAT_FAIL to %s for SM_MON of %s", my_name, mon_name);
+       note(N_WARNING, "STAT_FAIL to %s for SM_MON of %s", my_name, mon_name);
        return (&result);
 }
 
@@ -209,7 +215,7 @@ sm_unmon_1_svc(struct mon_id *argp, struct svc_req *rqstp)
 
        /* Check if we're monitoring anyone. */
        if (!(clnt = rtnl)) {
-               log(L_WARNING,
+               note(N_WARNING,
                        "Received SM_UNMON request from %s for %s while not "
                        "monitoring any hosts.", my_name, argp->mon_name);
                return (&result);
@@ -227,8 +233,12 @@ sm_unmon_1_svc(struct mon_id *argp, struct svc_req *rqstp)
                        NL_MY_PROG(clnt) == id->my_prog &&
                        NL_MY_VERS(clnt) == id->my_vers) {
                        /* Match! */
-                       dprintf(L_DEBUG, "UNMONITORING %s for %s",
+                       dprintf(N_DEBUG, "UNMONITORING %s for %s",
                                        mon_name, my_name);
+
+                       /* PRC: do the HA callout: */
+                       ha_callout("del-client", mon_name, my_name, -1);
+
                        nlist_free(&rtnl, clnt);
                        xunlink(SM_DIR, mon_name, 1);
 
@@ -237,7 +247,7 @@ sm_unmon_1_svc(struct mon_id *argp, struct svc_req *rqstp)
                        clnt = NL_NEXT(clnt);
        }
 
-       log(L_WARNING, "Received erroneous SM_UNMON request from %s for %s",
+       note(N_WARNING, "Received erroneous SM_UNMON request from %s for %s",
                my_name, mon_name);
        return (&result);
 }
@@ -253,7 +263,7 @@ sm_unmon_all_1_svc(struct my_id *argp, struct svc_req *rqstp)
        result.state = MY_STATE;
 
        if (!(clnt = rtnl)) {
-               log(L_WARNING, "Received SM_UNMON_ALL request from %s "
+               note(N_WARNING, "Received SM_UNMON_ALL request from %s "
                        "while not monitoring any hosts", argp->my_name);
                return (&result);
        }
@@ -266,13 +276,15 @@ sm_unmon_all_1_svc(struct my_id *argp, struct svc_req *rqstp)
                        char            mon_name[SM_MAXSTRLEN + 1];
                        notify_list     *temp;
 
-                       dprintf(L_DEBUG,
+                       dprintf(N_DEBUG,
                                "UNMONITORING (SM_UNMON_ALL) %s for %s",
                                NL_MON_NAME(clnt), NL_MY_NAME(clnt));
                        strncpy(mon_name, NL_MON_NAME(clnt),
                                sizeof (mon_name) - 1);
                        mon_name[sizeof (mon_name) - 1] = '\0';
                        temp = NL_NEXT(clnt);
+                       /* PRC: do the HA callout: */
+                       ha_callout("del-client", mon_name, argp->my_name, -1);
                        nlist_free(&rtnl, clnt);
                        xunlink(SM_DIR, mon_name, 1);
                        ++count;
@@ -282,7 +294,7 @@ sm_unmon_all_1_svc(struct my_id *argp, struct svc_req *rqstp)
        }
 
        if (!count) {
-               dprintf(L_DEBUG, "SM_UNMON_ALL request from %s with no "
+               dprintf(N_DEBUG, "SM_UNMON_ALL request from %s with no "
                        "SM_MON requests from it.", argp->my_name);
        }