]> git.decadent.org.uk Git - nfs-utils.git/blob - support/export/client.c
rpc.mountd: Change nfs_client->m_hostname to be a dynamically-allocated string
[nfs-utils.git] / support / export / client.c
1 /*
2  * support/export/client.c
3  *
4  * Maintain list of nfsd clients.
5  *
6  * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7  */
8
9 #ifdef HAVE_CONFIG_H
10 #include <config.h>
11 #endif
12
13 #include <sys/types.h>
14 #include <netinet/in.h>
15 #include <arpa/inet.h>
16 #include <stdlib.h>
17 #include <string.h>
18 #include <ctype.h>
19 #include <netdb.h>
20 #include "xmalloc.h"
21 #include "misc.h"
22 #include "nfslib.h"
23 #include "exportfs.h"
24
25 /* netgroup stuff never seems to be defined in any header file. Linux is
26  * not alone in this.
27  */
28 #if !defined(__GLIBC__) || __GLIBC__ < 2
29 extern int      innetgr(char *netgr, char *host, char *, char *);
30 #endif
31 static void     client_init(nfs_client *clp, const char *hname,
32                                         struct hostent *hp);
33 static int      client_checkaddr(nfs_client *clp, struct in_addr addr);
34
35 nfs_client      *clientlist[MCL_MAXTYPES] = { NULL, };
36
37
38 /* if canonical is set, then we *know* this is already a canonical name
39  * so hostname lookup is avoided.
40  * This is used when reading /proc/fs/nfs/exports
41  */
42 nfs_client *
43 client_lookup(char *hname, int canonical)
44 {
45         nfs_client      *clp = NULL;
46         int             htype;
47         struct hostent  *hp = NULL;
48
49         htype = client_gettype(hname);
50
51         if (htype == MCL_FQDN && !canonical) {
52                 struct hostent *hp2;
53                 hp = gethostbyname(hname);
54                 if (hp == NULL || hp->h_addrtype != AF_INET) {
55                         xlog(L_ERROR, "%s has non-inet addr", hname);
56                         return NULL;
57                 }
58                 /* make sure we have canonical name */
59                 hp2 = hostent_dup(hp);
60                 hp = gethostbyaddr(hp2->h_addr, hp2->h_length,
61                                    hp2->h_addrtype);
62                 if (hp) {
63                         hp = hostent_dup(hp);
64                         /* but now we might not have all addresses... */
65                         if (hp2->h_addr_list[1]) {
66                                 struct hostent *hp3 =
67                                         gethostbyname(hp->h_name);
68                                 if (hp3) {
69                                         free(hp);
70                                         hp = hostent_dup(hp3);
71                                 }
72                         }
73                         free(hp2);
74                 } else
75                         hp = hp2;
76
77                 hname = (char *) hp->h_name;
78
79                 for (clp = clientlist[htype]; clp; clp = clp->m_next) {
80                         if (client_check(clp, hp))
81                                 break;
82                 }
83         } else {
84                 for (clp = clientlist[htype]; clp; clp = clp->m_next) {
85                         if (strcasecmp(hname, clp->m_hostname)==0)
86                                 break;
87                 }
88         }
89
90         if (!clp) {
91                 clp = (nfs_client *) xmalloc(sizeof(*clp));
92                 memset(clp, 0, sizeof(*clp));
93                 clp->m_type = htype;
94                 client_init(clp, hname, NULL);
95                 client_add(clp);
96         }
97
98         if (htype == MCL_FQDN && clp->m_naddr == 0 && hp != NULL) {
99                 char    **ap = hp->h_addr_list;
100                 int     i;
101
102                 for (i = 0; *ap && i < NFSCLNT_ADDRMAX; i++, ap++)
103                         clp->m_addrlist[i] = *(struct in_addr *)*ap;
104                 clp->m_naddr = i;
105         }
106
107         if (hp)
108                 free (hp);
109
110         return clp;
111 }
112
113 nfs_client *
114 client_dup(nfs_client *clp, struct hostent *hp)
115 {
116         nfs_client              *new;
117
118         new = (nfs_client *) xmalloc(sizeof(*new));
119         memcpy(new, clp, sizeof(*new));
120         new->m_type = MCL_FQDN;
121         new->m_hostname = NULL;
122
123         client_init(new, (char *) hp->h_name, hp);
124         client_add(new);
125         return new;
126 }
127
128 static void
129 client_init(nfs_client *clp, const char *hname, struct hostent *hp)
130 {
131         xfree(clp->m_hostname);
132         if (hp)
133                 clp->m_hostname = xstrdup(hp->h_name);
134         else
135                 clp->m_hostname = xstrdup(hname);
136
137         clp->m_exported = 0;
138         clp->m_count = 0;
139
140         if (clp->m_type == MCL_SUBNETWORK) {
141                 char    *cp = strchr(clp->m_hostname, '/');
142                 static char slash32[] = "/32";
143
144                 if(!cp) cp = slash32;
145                 *cp = '\0';
146                 clp->m_addrlist[0].s_addr = inet_addr(clp->m_hostname);
147                 if (strchr(cp + 1, '.')) {
148                         clp->m_addrlist[1].s_addr = inet_addr(cp+1);
149                 }
150                 else {
151                         int netmask = atoi(cp + 1);
152                         if (0 < netmask && netmask <= 32) {
153                                 clp->m_addrlist[1].s_addr =
154                                         htonl ((uint32_t) ~0 << (32 - netmask));
155                         }
156                         else {
157                                 xlog(L_FATAL, "invalid netmask `%s' for %s",
158                                      cp + 1, clp->m_hostname);
159                         }
160                 }
161                 *cp = '/';
162                 clp->m_naddr = 0;
163         } else if (!hp) {
164                 clp->m_naddr = 0;
165         } else {
166                 char    **ap = hp->h_addr_list;
167                 int     i;
168
169                 for (i = 0; *ap && i < NFSCLNT_ADDRMAX; i++, ap++) {
170                         clp->m_addrlist[i] = *(struct in_addr *)*ap;
171                 }
172                 clp->m_naddr = i;
173         }
174 }
175
176 void
177 client_add(nfs_client *clp)
178 {
179         nfs_client      **cpp;
180
181         if (clp->m_type < 0 || clp->m_type >= MCL_MAXTYPES)
182                 xlog(L_FATAL, "unknown client type in client_add");
183         cpp = clientlist + clp->m_type;
184         while (*cpp)
185                 cpp = &((*cpp)->m_next);
186         clp->m_next = NULL;
187         *cpp = clp;
188 }
189
190 void
191 client_release(nfs_client *clp)
192 {
193         if (clp->m_count <= 0)
194                 xlog(L_FATAL, "client_free: m_count <= 0!");
195         clp->m_count--;
196 }
197
198 void
199 client_freeall(void)
200 {
201         nfs_client      *clp, **head;
202         int             i;
203
204         for (i = 0; i < MCL_MAXTYPES; i++) {
205                 head = clientlist + i;
206                 while (*head) {
207                         *head = (clp = *head)->m_next;
208                         xfree(clp->m_hostname);
209                         xfree(clp);
210                 }
211         }
212 }
213
214 nfs_client *
215 client_find(struct hostent *hp)
216 {
217         nfs_client      *clp;
218         int             i;
219
220         for (i = 0; i < MCL_MAXTYPES; i++) {
221                 for (clp = clientlist[i]; clp; clp = clp->m_next) {
222                         if (!client_check(clp, hp))
223                                 continue;
224 #ifdef notdef
225                         if (clp->m_type == MCL_FQDN)
226                                 return clp;
227                         return client_dup(clp, hp);
228 #else
229                         return clp;
230 #endif
231                 }
232         }
233         return NULL;
234 }
235
236 /*
237  * Find client name given an IP address
238  * This is found by gathering all known names that match that IP address,
239  * sorting them and joining them with '+'
240  *
241  */
242 static char *add_name(char *old, char *add);
243
244 char *
245 client_compose(struct in_addr addr)
246 {
247         struct hostent *he = NULL;
248         char *name = NULL;
249         int i;
250
251         if (clientlist[MCL_WILDCARD] || clientlist[MCL_NETGROUP])
252                 he = get_reliable_hostbyaddr((const char*)&addr, sizeof(addr), AF_INET);
253         if (he == NULL)
254                 he = get_hostent((const char*)&addr, sizeof(addr), AF_INET);
255
256         for (i = 0 ; i < MCL_MAXTYPES; i++) {
257                 nfs_client      *clp;
258                 for (clp = clientlist[i]; clp ; clp = clp->m_next) {
259                         if (!client_check(clp, he))
260                                 continue;
261                         name = add_name(name, clp->m_hostname);
262                 }
263         }
264         free(he);
265         return name;
266 }
267
268 int
269 client_member(char *client, char *name)
270 {
271         /* check if "client" (a ',' separated list of names)
272          * contains 'name' as a member
273          */
274         int l = strlen(name);
275         while (*client) {
276                 if (strncmp(client, name, l) == 0 &&
277                     (client[l] == ',' || client[l] == '\0'))
278                         return 1;
279                 client = strchr(client, ',');
280                 if (client == NULL)
281                         return 0;
282                 client++;
283         }
284         return 0;
285 }
286
287
288 int
289 name_cmp(char *a, char *b)
290 {
291         /* compare strings a and b, but only upto ',' in a */
292         while (*a && *b && *a != ',' && *a == *b)
293                 a++, b++;
294         if (!*b && (!*a || !a == ',') )
295                 return 0;
296         if (!*b) return 1;
297         if (!*a || *a == ',') return -1;
298         return *a - *b;
299 }
300
301 static char *
302 add_name(char *old, char *add)
303 {
304         int len = strlen(add)+2;
305         char *new;
306         char *cp;
307         if (old) len += strlen(old);
308         
309         new = malloc(len);
310         if (!new) {
311                 free(old);
312                 return NULL;
313         }
314         cp = old;
315         while (cp && *cp && name_cmp(cp, add) < 0) {
316                 /* step cp forward over a name */
317                 char *e = strchr(cp, ',');
318                 if (e)
319                         cp = e+1;
320                 else
321                         cp = cp + strlen(cp);
322         }
323         strncpy(new, old, cp-old);
324         new[cp-old] = 0;
325         if (cp != old && !*cp)
326                 strcat(new, ",");
327         strcat(new, add);
328         if (cp && *cp) {
329                 strcat(new, ",");
330                 strcat(new, cp);
331         }
332         free(old);
333         return new;
334 }
335
336 /*
337  * Match a host (given its hostent record) to a client record. This
338  * is usually called from mountd.
339  */
340 int
341 client_check(nfs_client *clp, struct hostent *hp)
342 {
343         char    *hname = (char *) hp->h_name;
344         char    *cname = clp->m_hostname;
345         char    **ap;
346
347         switch (clp->m_type) {
348         case MCL_FQDN:
349         case MCL_SUBNETWORK:
350                 for (ap = hp->h_addr_list; *ap; ap++) {
351                         if (client_checkaddr(clp, *(struct in_addr *) *ap))
352                                 return 1;
353                 }
354                 return 0;
355         case MCL_WILDCARD:
356                 if (wildmat(hname, cname))
357                         return 1;
358                 else {
359                         for (ap = hp->h_aliases; *ap; ap++)
360                                 if (wildmat(*ap, cname))
361                                         return 1;
362                 }
363                 return 0;
364         case MCL_NETGROUP:
365 #ifdef HAVE_INNETGR
366                 {
367                         char    *dot;
368                         int     match;
369                         struct hostent *nhp = NULL;
370                         struct sockaddr_in addr;
371
372                         /* First, try to match the hostname without
373                          * splitting off the domain */
374                         if (innetgr(cname+1, hname, NULL, NULL))
375                                 return 1;
376
377                         /* If hname is ip address convert to FQDN */
378                         if (inet_aton(hname, &addr.sin_addr) &&
379                            (nhp = gethostbyaddr((const char *)&(addr.sin_addr),
380                             sizeof(addr.sin_addr), AF_INET))) {
381                                 hname = (char *)nhp->h_name;
382                                 if (innetgr(cname+1, hname, NULL, NULL))
383                                         return 1;
384                         }
385
386                         /* Okay, strip off the domain (if we have one) */
387                         if ((dot = strchr(hname, '.')) == NULL)
388                                 return 0;
389
390                         *dot = '\0';
391                         match = innetgr(cname+1, hname, NULL, NULL);
392                         *dot = '.';
393
394                         return match;
395                 }
396 #else
397                 return 0;
398 #endif
399         case MCL_ANONYMOUS:
400                 return 1;
401         case MCL_GSS:
402                 return 0;
403         default:
404                 xlog(L_FATAL, "internal: bad client type %d", clp->m_type);
405         }
406
407         return 0;
408 }
409
410 static int
411 client_checkaddr(nfs_client *clp, struct in_addr addr)
412 {
413         int     i;
414
415         switch (clp->m_type) {
416         case MCL_FQDN:
417                 for (i = 0; i < clp->m_naddr; i++) {
418                         if (clp->m_addrlist[i].s_addr == addr.s_addr)
419                                 return 1;
420                 }
421                 return 0;
422         case MCL_SUBNETWORK:
423                 return !((clp->m_addrlist[0].s_addr ^ addr.s_addr)
424                         & clp->m_addrlist[1].s_addr);
425         }
426         return 0;
427 }
428
429 int
430 client_gettype(char *ident)
431 {
432         char    *sp;
433
434         if (ident[0] == '\0' || strcmp(ident, "*")==0)
435                 return MCL_ANONYMOUS;
436         if (strncmp(ident, "gss/", 4) == 0)
437                 return MCL_GSS;
438         if (ident[0] == '@') {
439 #ifndef HAVE_INNETGR
440                 xlog(L_WARNING, "netgroup support not compiled in");
441 #endif
442                 return MCL_NETGROUP;
443         }
444         for (sp = ident; *sp; sp++) {
445                 if (*sp == '*' || *sp == '?' || *sp == '[')
446                         return MCL_WILDCARD;
447                 if (*sp == '/')
448                         return MCL_SUBNETWORK;
449                 if (*sp == '\\' && sp[1])
450                         sp++;
451         }
452         /* check for N.N.N.N */
453         sp = ident;
454         if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN;
455         sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN;
456         sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN;
457         sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '\0') return MCL_FQDN;
458         /* we lie here a bit. but technically N.N.N.N == N.N.N.N/32 :) */
459         return MCL_SUBNETWORK;
460 }