]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/statd/monitor.c
5fcab1d424247711070db3c2bbcc612b34a798d2
[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                         /* Hey!  We already know you guys! */
150                         dprintf(N_DEBUG,
151                                 "Duplicate SM_MON request for %s "
152                                 "from procedure on %s",
153                                 mon_name, my_name);
154
155                         /* But we'll let you pass anyway. */
156                         result.res_stat = STAT_SUCC;
157                         result.state = MY_STATE;
158                         return (&result);
159                 }
160                 clnt = NL_NEXT(clnt);
161         }
162
163         /*
164          * We're committed...ignoring errors.  Let's hope that a malloc()
165          * doesn't fail.  (I should probably fix this assumption.)
166          */
167         if (!(clnt = nlist_new(my_name, mon_name, 0))) {
168                 note(N_WARNING, "out of memory");
169                 goto failure;
170         }
171
172         NL_ADDR(clnt) = my_addr;
173         NL_MY_PROG(clnt) = id->my_prog;
174         NL_MY_VERS(clnt) = id->my_vers;
175         NL_MY_PROC(clnt) = id->my_proc;
176         memcpy(NL_PRIV(clnt), argp->priv, SM_PRIV_SIZE);
177
178         /*
179          * Now, Create file on stable storage for host.
180          */
181
182         path=xmalloc(strlen(SM_DIR)+strlen(mon_name)+2);
183         sprintf(path, "%s/%s", SM_DIR, mon_name);
184         if ((fd = open(path, O_WRONLY|O_SYNC|O_CREAT|O_APPEND,
185                        S_IRUSR|S_IWUSR)) < 0) {
186                 /* Didn't fly.  We won't monitor. */
187                 note(N_ERROR, "creat(%s) failed: %s", path, strerror (errno));
188                 nlist_free(NULL, clnt);
189                 free(path);
190                 goto failure;
191         }
192         {
193                 char buf[LINELEN + 1 + SM_MAXSTRLEN + 2];
194                 char *e;
195                 int i;
196                 e = buf + sprintf(buf, "%08x %08x %08x %08x ",
197                                   my_addr.s_addr, id->my_prog,
198                                   id->my_vers, id->my_proc);
199                 for (i=0; i<SM_PRIV_SIZE; i++)
200                         e += sprintf(e, "%02x", 0xff & (argp->priv[i]));
201                 if (e+1-buf != LINELEN) abort();
202                 e += sprintf(e, " %s\n", mon_name);
203                 write(fd, buf, e-buf);
204         }
205
206         free(path);
207         /* PRC: do the HA callout: */
208         ha_callout("add-client", mon_name, my_name, -1);
209         nlist_insert(&rtnl, clnt);
210         close(fd);
211
212         result.res_stat = STAT_SUCC;
213         result.state = MY_STATE;
214         dprintf(N_DEBUG, "MONITORING %s for %s", mon_name, my_name);
215         return (&result);
216
217 failure:
218         note(N_WARNING, "STAT_FAIL to %s for SM_MON of %s", my_name, mon_name);
219         return (&result);
220 }
221
222 void load_state(void)
223 {
224         DIR *d;
225         struct dirent *de;
226         char buf[LINELEN + 1 + SM_MAXSTRLEN + 2];
227
228         d = opendir(SM_DIR);
229         if (!d)
230                 return;
231         while ((de = readdir(d))) {
232                 char *path;
233                 FILE *f;
234                 int p;
235
236                 if (de->d_name[0] == '.')
237                         continue;
238                 path = xmalloc(strlen(SM_DIR)+strlen(de->d_name)+2);
239                 sprintf(path, "%s/%s", SM_DIR, de->d_name);
240                 f = fopen(path, "r");
241                 free(path);
242                 if (f == NULL)
243                         continue;
244                 while (fgets(buf, sizeof(buf), f) != NULL) {
245                         int addr, proc, prog, vers;
246                         char priv[SM_PRIV_SIZE];
247                         char *b;
248                         int i;
249                         notify_list     *clnt;
250
251                         buf[sizeof(buf)-1] = 0;
252                         b = strchr(buf, '\n');
253                         if (b) *b = 0;
254                         sscanf(buf, "%x %x %x %x ",
255                                &addr, &prog, &vers, &proc);
256                         b = buf+36;
257                         for (i=0; i<SM_PRIV_SIZE; i++) {
258                                 sscanf(b, "%2x", &p);
259                                 priv[i] = p;
260                                 b += 2;
261                         }
262                         b++;
263                         clnt = nlist_new("127.0.0.1", b, 0);
264                         if (!clnt)
265                                 break;
266                         NL_ADDR(clnt).s_addr = addr;
267                         NL_MY_PROG(clnt) = prog;
268                         NL_MY_VERS(clnt) = vers;
269                         NL_MY_PROC(clnt) = proc;
270                         memcpy(NL_PRIV(clnt), priv, SM_PRIV_SIZE);
271                         nlist_insert(&rtnl, clnt);
272                 }
273                 fclose(f);
274         }
275         closedir(d);
276 }
277
278
279
280
281 /*
282  * Services SM_UNMON requests.
283  *
284  * There is no statement in the X/Open spec's about returning an error
285  * for requests to unmonitor a host that we're *not* monitoring.  I just
286  * return the state of the NSM when I get such foolish requests for lack
287  * of any better ideas.  (I also log the "offense.")
288  */
289 struct sm_stat *
290 sm_unmon_1_svc(struct mon_id *argp, struct svc_req *rqstp)
291 {
292         static sm_stat  result;
293         notify_list     *clnt;
294         char            *mon_name = argp->mon_name,
295                         *my_name  = argp->my_id.my_name;
296         struct my_id    *id = &argp->my_id;
297 #ifdef RESTRICTED_STATD
298         struct in_addr  caller;
299 #endif
300
301         result.state = MY_STATE;
302
303 #ifdef RESTRICTED_STATD
304         /* 1.   Reject anyone not calling from 127.0.0.1.
305          *      Ignore the my_name specified by the caller, and
306          *      use "127.0.0.1" instead.
307          */
308         caller = svc_getcaller(rqstp->rq_xprt)->sin_addr;
309         if (caller.s_addr != htonl(INADDR_LOOPBACK)) {
310                 note(N_WARNING,
311                         "Call to statd from non-local host %s",
312                         inet_ntoa(caller));
313                 goto failure;
314         }
315         my_name = "127.0.0.1";
316 #endif
317
318         /* Check if we're monitoring anyone. */
319         if (!(clnt = rtnl)) {
320                 note(N_WARNING,
321                         "Received SM_UNMON request from %s for %s while not "
322                         "monitoring any hosts.", my_name, argp->mon_name);
323                 return (&result);
324         }
325
326         /*
327          * OK, we are.  Now look for appropriate entry in run-time list.
328          * There should only be *one* match on this, since I block "duplicate"
329          * SM_MON calls.  (Actually, duplicate calls are allowed, but only one
330          * entry winds up in the list the way I'm currently handling them.)
331          */
332         while ((clnt = nlist_gethost(clnt, mon_name, 0))) {
333                 if (matchhostname(NL_MY_NAME(clnt), my_name) &&
334                         NL_MY_PROC(clnt) == id->my_proc &&
335                         NL_MY_PROG(clnt) == id->my_prog &&
336                         NL_MY_VERS(clnt) == id->my_vers) {
337                         /* Match! */
338                         dprintf(N_DEBUG, "UNMONITORING %s for %s",
339                                         mon_name, my_name);
340
341                         /* PRC: do the HA callout: */
342                         ha_callout("del-client", mon_name, my_name, -1);
343
344                         nlist_free(&rtnl, clnt);
345                         xunlink(SM_DIR, mon_name, 1);
346
347                         return (&result);
348                 } else
349                         clnt = NL_NEXT(clnt);
350         }
351
352 #ifdef RESTRICTED_STATD
353  failure:
354 #endif
355         note(N_WARNING, "Received erroneous SM_UNMON request from %s for %s",
356                 my_name, mon_name);
357         return (&result);
358 }
359
360
361 struct sm_stat *
362 sm_unmon_all_1_svc(struct my_id *argp, struct svc_req *rqstp)
363 {
364         short int       count = 0;
365         static sm_stat  result;
366         notify_list     *clnt;
367         char            *my_name = argp->my_name;
368 #ifdef RESTRICTED_STATD
369         struct in_addr  caller;
370
371         /* 1.   Reject anyone not calling from 127.0.0.1.
372          *      Ignore the my_name specified by the caller, and
373          *      use "127.0.0.1" instead.
374          */
375         caller = svc_getcaller(rqstp->rq_xprt)->sin_addr;
376         if (caller.s_addr != htonl(INADDR_LOOPBACK)) {
377                 note(N_WARNING,
378                         "Call to statd from non-local host %s",
379                         inet_ntoa(caller));
380                 goto failure;
381         }
382         my_name = "127.0.0.1";
383 #endif
384
385         result.state = MY_STATE;
386
387         if (!(clnt = rtnl)) {
388                 note(N_WARNING, "Received SM_UNMON_ALL request from %s "
389                         "while not monitoring any hosts", my_name);
390                 return (&result);
391         }
392
393         while ((clnt = nlist_gethost(clnt, my_name, 1))) {
394                 if (NL_MY_PROC(clnt) == argp->my_proc &&
395                         NL_MY_PROG(clnt) == argp->my_prog &&
396                         NL_MY_VERS(clnt) == argp->my_vers) {
397                         /* Watch stack! */
398                         char            mon_name[SM_MAXSTRLEN + 1];
399                         notify_list     *temp;
400
401                         dprintf(N_DEBUG,
402                                 "UNMONITORING (SM_UNMON_ALL) %s for %s",
403                                 NL_MON_NAME(clnt), NL_MY_NAME(clnt));
404                         strncpy(mon_name, NL_MON_NAME(clnt),
405                                 sizeof (mon_name) - 1);
406                         mon_name[sizeof (mon_name) - 1] = '\0';
407                         temp = NL_NEXT(clnt);
408                         /* PRC: do the HA callout: */
409                         ha_callout("del-client", mon_name, my_name, -1);
410                         nlist_free(&rtnl, clnt);
411                         xunlink(SM_DIR, mon_name, 1);
412                         ++count;
413                         clnt = temp;
414                 } else
415                         clnt = NL_NEXT(clnt);
416         }
417
418         if (!count) {
419                 dprintf(N_DEBUG, "SM_UNMON_ALL request from %s with no "
420                         "SM_MON requests from it.", my_name);
421         }
422 #ifdef RESTRICTED_STATD
423  failure:
424 #endif
425         return (&result);
426 }