]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/statd/monitor.c
b0b19da0c0d18202e8e424604a86f1fdda7d6ff9
[nfs-utils.git] / utils / statd / monitor.c
1 /*
2  * Copyright (C) 1995-1999 Jeffrey A. Uphoff
3  * Major rewrite by Olaf Kirch, Dec. 1996.
4  * Modified by H.J. Lu, 1998.
5  * Tighter access control, Olaf Kirch June 1999.
6  *
7  * NSM for Linux.
8  */
9
10 #ifdef HAVE_CONFIG_H
11 #include <config.h>
12 #endif
13
14 #include <fcntl.h>
15 #include <limits.h>
16 #include <netdb.h>
17 #include <string.h>
18 #include <unistd.h>
19 #include <sys/stat.h>
20 #include <errno.h>
21 #include <arpa/inet.h>
22 #include <dirent.h>
23 #include "misc.h"
24 #include "statd.h"
25 #include "notlist.h"
26 #include "ha-callout.h"
27
28 notify_list *           rtnl = NULL;    /* Run-time notify list. */
29
30 #define LINELEN (4*(8+1)+SM_PRIV_SIZE*2+1)
31
32 /*
33  * Services SM_MON requests.
34  */
35 struct sm_stat_res *
36 sm_mon_1_svc(struct mon *argp, struct svc_req *rqstp)
37 {
38         static sm_stat_res result;
39         char            *mon_name = argp->mon_id.mon_name,
40                         *my_name  = argp->mon_id.my_id.my_name;
41         struct my_id    *id = &argp->mon_id.my_id;
42         char            *path;
43         int             fd;
44         notify_list     *clnt;
45         struct in_addr  my_addr;
46 #ifdef RESTRICTED_STATD
47         struct in_addr  caller;
48 #else
49         struct hostent  *hostinfo = NULL;
50 #endif
51
52         /* Assume that we'll fail. */
53         result.res_stat = STAT_FAIL;
54         result.state = -1;      /* State is undefined for STAT_FAIL. */
55
56         /* Restrict access to statd.
57          * In the light of CERT CA-99.05, we tighten access to
58          * statd.                       --okir
59          */
60 #ifdef RESTRICTED_STATD
61         /* 1.   Reject anyone not calling from 127.0.0.1.
62          *      Ignore the my_name specified by the caller, and
63          *      use "127.0.0.1" instead.
64          */
65         caller = svc_getcaller(rqstp->rq_xprt)->sin_addr;
66         if (caller.s_addr != htonl(INADDR_LOOPBACK)) {
67                 note(N_WARNING,
68                         "Call to statd from non-local host %s",
69                         inet_ntoa(caller));
70                 goto failure;
71         }
72         my_addr.s_addr = htonl(INADDR_LOOPBACK);
73         my_name = "127.0.0.1";
74
75         /* 2.   Reject any registrations for non-lockd services.
76          *
77          *      This is specific to the linux kernel lockd, which
78          *      makes the callback procedure part of the lockd interface.
79          *      It is also prone to break when lockd changes its callback
80          *      procedure number -- which, in fact, has now happened once.
81          *      There must be a better way....   XXX FIXME
82          */
83         if (id->my_prog != 100021 ||
84             (id->my_proc != 16 && id->my_proc != 24))
85         {
86                 note(N_WARNING,
87                         "Attempt to register callback to %d/%d",
88                         id->my_prog, id->my_proc);
89                 goto failure;
90         }
91
92 #if 0
93         This is not usable anymore.  Linux-kernel can be configured to use
94         host names with NSM so that multi-homed hosts are handled properly.
95                 NeilBrown 15mar2007
96
97         /* 3.   mon_name must be an address in dotted quad.
98          *      Again, specific to the linux kernel lockd.
99          */
100         if (!inet_aton(mon_name, &mon_addr)) {
101                 note(N_WARNING,
102                         "Attempt to register host %s (not a dotted quad)",
103                         mon_name);
104                 goto failure;
105         }
106 #endif
107 #endif
108         /*
109          * Check hostnames.  If I can't look them up, I won't monitor.  This
110          * might not be legal, but it adds a little bit of safety and sanity.
111          */
112
113         /* must check for /'s in hostname!  See CERT's CA-96.09 for details. */
114         if (strchr(mon_name, '/') || mon_name[0] == '.') {
115                 note(N_CRIT, "SM_MON request for hostname containing '/' "
116                      "or starting '.': %s", mon_name);
117                 note(N_CRIT, "POSSIBLE SPOOF/ATTACK ATTEMPT!");
118                 goto failure;
119         } else if (gethostbyname(mon_name) == NULL) {
120                 note(N_WARNING, "gethostbyname error for %s", mon_name);
121                 goto failure;
122         }
123 #ifndef RESTRICTED_STATD
124         if (!(hostinfo = gethostbyname(my_name))) {
125                 note(N_WARNING, "gethostbyname error for %s", my_name);
126                 goto failure;
127         } else
128                 my_addr = *(struct in_addr *) hostinfo->h_addr;
129 #endif
130
131         /*
132          * Hostnames checked OK.
133          * Now check to see if this is a duplicate, and warn if so.
134          * I will also return STAT_FAIL. (I *think* this is how I should
135          * handle it.)
136          *
137          * Olaf requests that I allow duplicate SM_MON requests for
138          * hosts due to the way he is coding lockd. No problem,
139          * I'll just do a quickie success return and things should
140          * be happy.
141          */
142         clnt = rtnl;
143
144         while ((clnt = nlist_gethost(clnt, mon_name, 0))) {
145                 if (matchhostname(NL_MY_NAME(clnt), my_name) &&
146                     NL_MY_PROC(clnt) == id->my_proc &&
147                     NL_MY_PROG(clnt) == id->my_prog &&
148                     NL_MY_VERS(clnt) == id->my_vers &&
149                     memcmp(NL_PRIV(clnt), argp->priv, SM_PRIV_SIZE) == 0) {
150                         /* Hey!  We already know you guys! */
151                         dprintf(N_DEBUG,
152                                 "Duplicate SM_MON request for %s "
153                                 "from procedure on %s",
154                                 mon_name, my_name);
155
156                         /* But we'll let you pass anyway. */
157                         result.res_stat = STAT_SUCC;
158                         result.state = MY_STATE;
159                         return (&result);
160                 }
161                 clnt = NL_NEXT(clnt);
162         }
163
164         /*
165          * We're committed...ignoring errors.  Let's hope that a malloc()
166          * doesn't fail.  (I should probably fix this assumption.)
167          */
168         if (!(clnt = nlist_new(my_name, mon_name, 0))) {
169                 note(N_WARNING, "out of memory");
170                 goto failure;
171         }
172
173         NL_ADDR(clnt) = my_addr;
174         NL_MY_PROG(clnt) = id->my_prog;
175         NL_MY_VERS(clnt) = id->my_vers;
176         NL_MY_PROC(clnt) = id->my_proc;
177         memcpy(NL_PRIV(clnt), argp->priv, SM_PRIV_SIZE);
178
179         /*
180          * Now, Create file on stable storage for host.
181          */
182
183         path=xmalloc(strlen(SM_DIR)+strlen(mon_name)+2);
184         sprintf(path, "%s/%s", SM_DIR, mon_name);
185         if ((fd = open(path, O_WRONLY|O_SYNC|O_CREAT|O_APPEND,
186                        S_IRUSR|S_IWUSR)) < 0) {
187                 /* Didn't fly.  We won't monitor. */
188                 note(N_ERROR, "creat(%s) failed: %s", path, strerror (errno));
189                 nlist_free(NULL, clnt);
190                 free(path);
191                 goto failure;
192         }
193         {
194                 char buf[LINELEN + 1 + SM_MAXSTRLEN + 2];
195                 char *e;
196                 int i;
197                 e = buf + sprintf(buf, "%08x %08x %08x %08x ",
198                                   my_addr.s_addr, id->my_prog,
199                                   id->my_vers, id->my_proc);
200                 for (i=0; i<SM_PRIV_SIZE; i++)
201                         e += sprintf(e, "%02x", 0xff & (argp->priv[i]));
202                 if (e+1-buf != LINELEN) abort();
203                 e += sprintf(e, " %s\n", mon_name);
204                 write(fd, buf, e-buf);
205         }
206
207         free(path);
208         /* PRC: do the HA callout: */
209         ha_callout("add-client", mon_name, my_name, -1);
210         nlist_insert(&rtnl, clnt);
211         close(fd);
212
213         result.res_stat = STAT_SUCC;
214         result.state = MY_STATE;
215         dprintf(N_DEBUG, "MONITORING %s for %s", mon_name, my_name);
216         return (&result);
217
218 failure:
219         note(N_WARNING, "STAT_FAIL to %s for SM_MON of %s", my_name, mon_name);
220         return (&result);
221 }
222
223 void load_state(void)
224 {
225         DIR *d;
226         struct dirent *de;
227         char buf[LINELEN + 1 + SM_MAXSTRLEN + 2];
228
229         d = opendir(SM_DIR);
230         if (!d)
231                 return;
232         while ((de = readdir(d))) {
233                 char *path;
234                 FILE *f;
235                 int p;
236
237                 if (de->d_name[0] == '.')
238                         continue;
239                 path = xmalloc(strlen(SM_DIR)+strlen(de->d_name)+2);
240                 sprintf(path, "%s/%s", SM_DIR, de->d_name);
241                 f = fopen(path, "r");
242                 free(path);
243                 if (f == NULL)
244                         continue;
245                 while (fgets(buf, sizeof(buf), f) != NULL) {
246                         int addr, proc, prog, vers;
247                         char priv[SM_PRIV_SIZE];
248                         char *b;
249                         int i;
250                         notify_list     *clnt;
251
252                         buf[sizeof(buf)-1] = 0;
253                         b = strchr(buf, '\n');
254                         if (b) *b = 0;
255                         sscanf(buf, "%x %x %x %x ",
256                                &addr, &prog, &vers, &proc);
257                         b = buf+36;
258                         for (i=0; i<SM_PRIV_SIZE; i++) {
259                                 sscanf(b, "%2x", &p);
260                                 priv[i] = p;
261                                 b += 2;
262                         }
263                         b++;
264                         clnt = nlist_new("127.0.0.1", b, 0);
265                         if (!clnt)
266                                 break;
267                         NL_ADDR(clnt).s_addr = addr;
268                         NL_MY_PROG(clnt) = prog;
269                         NL_MY_VERS(clnt) = vers;
270                         NL_MY_PROC(clnt) = proc;
271                         memcpy(NL_PRIV(clnt), priv, SM_PRIV_SIZE);
272                         nlist_insert(&rtnl, clnt);
273                 }
274                 fclose(f);
275         }
276         closedir(d);
277 }
278
279
280
281
282 /*
283  * Services SM_UNMON requests.
284  *
285  * There is no statement in the X/Open spec's about returning an error
286  * for requests to unmonitor a host that we're *not* monitoring.  I just
287  * return the state of the NSM when I get such foolish requests for lack
288  * of any better ideas.  (I also log the "offense.")
289  */
290 struct sm_stat *
291 sm_unmon_1_svc(struct mon_id *argp, struct svc_req *rqstp)
292 {
293         static sm_stat  result;
294         notify_list     *clnt;
295         char            *mon_name = argp->mon_name,
296                         *my_name  = argp->my_id.my_name;
297         struct my_id    *id = &argp->my_id;
298 #ifdef RESTRICTED_STATD
299         struct in_addr  caller;
300 #endif
301
302         result.state = MY_STATE;
303
304 #ifdef RESTRICTED_STATD
305         /* 1.   Reject anyone not calling from 127.0.0.1.
306          *      Ignore the my_name specified by the caller, and
307          *      use "127.0.0.1" instead.
308          */
309         caller = svc_getcaller(rqstp->rq_xprt)->sin_addr;
310         if (caller.s_addr != htonl(INADDR_LOOPBACK)) {
311                 note(N_WARNING,
312                         "Call to statd from non-local host %s",
313                         inet_ntoa(caller));
314                 goto failure;
315         }
316         my_name = "127.0.0.1";
317 #endif
318
319         /* Check if we're monitoring anyone. */
320         if (!(clnt = rtnl)) {
321                 note(N_WARNING,
322                         "Received SM_UNMON request from %s for %s while not "
323                         "monitoring any hosts.", my_name, argp->mon_name);
324                 return (&result);
325         }
326
327         /*
328          * OK, we are.  Now look for appropriate entry in run-time list.
329          * There should only be *one* match on this, since I block "duplicate"
330          * SM_MON calls.  (Actually, duplicate calls are allowed, but only one
331          * entry winds up in the list the way I'm currently handling them.)
332          */
333         while ((clnt = nlist_gethost(clnt, mon_name, 0))) {
334                 if (matchhostname(NL_MY_NAME(clnt), my_name) &&
335                         NL_MY_PROC(clnt) == id->my_proc &&
336                         NL_MY_PROG(clnt) == id->my_prog &&
337                         NL_MY_VERS(clnt) == id->my_vers) {
338                         /* Match! */
339                         dprintf(N_DEBUG, "UNMONITORING %s for %s",
340                                         mon_name, my_name);
341
342                         /* PRC: do the HA callout: */
343                         ha_callout("del-client", mon_name, my_name, -1);
344
345                         nlist_free(&rtnl, clnt);
346                         xunlink(SM_DIR, mon_name, 1);
347
348                         return (&result);
349                 } else
350                         clnt = NL_NEXT(clnt);
351         }
352
353 #ifdef RESTRICTED_STATD
354  failure:
355 #endif
356         note(N_WARNING, "Received erroneous SM_UNMON request from %s for %s",
357                 my_name, mon_name);
358         return (&result);
359 }
360
361
362 struct sm_stat *
363 sm_unmon_all_1_svc(struct my_id *argp, struct svc_req *rqstp)
364 {
365         short int       count = 0;
366         static sm_stat  result;
367         notify_list     *clnt;
368         char            *my_name = argp->my_name;
369 #ifdef RESTRICTED_STATD
370         struct in_addr  caller;
371
372         /* 1.   Reject anyone not calling from 127.0.0.1.
373          *      Ignore the my_name specified by the caller, and
374          *      use "127.0.0.1" instead.
375          */
376         caller = svc_getcaller(rqstp->rq_xprt)->sin_addr;
377         if (caller.s_addr != htonl(INADDR_LOOPBACK)) {
378                 note(N_WARNING,
379                         "Call to statd from non-local host %s",
380                         inet_ntoa(caller));
381                 goto failure;
382         }
383         my_name = "127.0.0.1";
384 #endif
385
386         result.state = MY_STATE;
387
388         if (!(clnt = rtnl)) {
389                 note(N_WARNING, "Received SM_UNMON_ALL request from %s "
390                         "while not monitoring any hosts", my_name);
391                 return (&result);
392         }
393
394         while ((clnt = nlist_gethost(clnt, my_name, 1))) {
395                 if (NL_MY_PROC(clnt) == argp->my_proc &&
396                         NL_MY_PROG(clnt) == argp->my_prog &&
397                         NL_MY_VERS(clnt) == argp->my_vers) {
398                         /* Watch stack! */
399                         char            mon_name[SM_MAXSTRLEN + 1];
400                         notify_list     *temp;
401
402                         dprintf(N_DEBUG,
403                                 "UNMONITORING (SM_UNMON_ALL) %s for %s",
404                                 NL_MON_NAME(clnt), NL_MY_NAME(clnt));
405                         strncpy(mon_name, NL_MON_NAME(clnt),
406                                 sizeof (mon_name) - 1);
407                         mon_name[sizeof (mon_name) - 1] = '\0';
408                         temp = NL_NEXT(clnt);
409                         /* PRC: do the HA callout: */
410                         ha_callout("del-client", mon_name, my_name, -1);
411                         nlist_free(&rtnl, clnt);
412                         xunlink(SM_DIR, mon_name, 1);
413                         ++count;
414                         clnt = temp;
415                 } else
416                         clnt = NL_NEXT(clnt);
417         }
418
419         if (!count) {
420                 dprintf(N_DEBUG, "SM_UNMON_ALL request from %s with no "
421                         "SM_MON requests from it.", my_name);
422         }
423 #ifdef RESTRICTED_STATD
424  failure:
425 #endif
426         return (&result);
427 }