]> git.decadent.org.uk Git - nfs-utils.git/blob - support/export/client.c
libexport.a: Remove dead code
[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 struct hostent *
215 client_resolve(struct in_addr addr)
216 {
217         struct hostent *he = NULL;
218
219         if (clientlist[MCL_WILDCARD] || clientlist[MCL_NETGROUP])
220                 he = get_reliable_hostbyaddr((const char*)&addr, sizeof(addr), AF_INET);
221         if (he == NULL)
222                 he = get_hostent((const char*)&addr, sizeof(addr), AF_INET);
223
224         return he;
225 }
226
227 /*
228  * Find client name given an IP address
229  * This is found by gathering all known names that match that IP address,
230  * sorting them and joining them with '+'
231  *
232  */
233 static char *add_name(char *old, char *add);
234
235 char *
236 client_compose(struct hostent *he)
237 {
238         char *name = NULL;
239         int i;
240
241         for (i = 0 ; i < MCL_MAXTYPES; i++) {
242                 nfs_client      *clp;
243                 for (clp = clientlist[i]; clp ; clp = clp->m_next) {
244                         if (!client_check(clp, he))
245                                 continue;
246                         name = add_name(name, clp->m_hostname);
247                 }
248         }
249         return name;
250 }
251
252 int
253 client_member(char *client, char *name)
254 {
255         /* check if "client" (a ',' separated list of names)
256          * contains 'name' as a member
257          */
258         int l = strlen(name);
259         while (*client) {
260                 if (strncmp(client, name, l) == 0 &&
261                     (client[l] == ',' || client[l] == '\0'))
262                         return 1;
263                 client = strchr(client, ',');
264                 if (client == NULL)
265                         return 0;
266                 client++;
267         }
268         return 0;
269 }
270
271
272 int
273 name_cmp(char *a, char *b)
274 {
275         /* compare strings a and b, but only upto ',' in a */
276         while (*a && *b && *a != ',' && *a == *b)
277                 a++, b++;
278         if (!*b && (!*a || *a == ','))
279                 return 0;
280         if (!*b) return 1;
281         if (!*a || *a == ',') return -1;
282         return *a - *b;
283 }
284
285 static char *
286 add_name(char *old, char *add)
287 {
288         int len = strlen(add)+2;
289         char *new;
290         char *cp;
291         if (old) len += strlen(old);
292         
293         new = malloc(len);
294         if (!new) {
295                 free(old);
296                 return NULL;
297         }
298         cp = old;
299         while (cp && *cp && name_cmp(cp, add) < 0) {
300                 /* step cp forward over a name */
301                 char *e = strchr(cp, ',');
302                 if (e)
303                         cp = e+1;
304                 else
305                         cp = cp + strlen(cp);
306         }
307         strncpy(new, old, cp-old);
308         new[cp-old] = 0;
309         if (cp != old && !*cp)
310                 strcat(new, ",");
311         strcat(new, add);
312         if (cp && *cp) {
313                 strcat(new, ",");
314                 strcat(new, cp);
315         }
316         free(old);
317         return new;
318 }
319
320 /*
321  * Match a host (given its hostent record) to a client record. This
322  * is usually called from mountd.
323  */
324 int
325 client_check(nfs_client *clp, struct hostent *hp)
326 {
327         char    *hname = (char *) hp->h_name;
328         char    *cname = clp->m_hostname;
329         char    **ap;
330
331         switch (clp->m_type) {
332         case MCL_FQDN:
333         case MCL_SUBNETWORK:
334                 for (ap = hp->h_addr_list; *ap; ap++) {
335                         if (client_checkaddr(clp, *(struct in_addr *) *ap))
336                                 return 1;
337                 }
338                 return 0;
339         case MCL_WILDCARD:
340                 if (wildmat(hname, cname))
341                         return 1;
342                 else {
343                         for (ap = hp->h_aliases; *ap; ap++)
344                                 if (wildmat(*ap, cname))
345                                         return 1;
346                 }
347                 return 0;
348         case MCL_NETGROUP:
349 #ifdef HAVE_INNETGR
350                 {
351                         char    *dot;
352                         int     match, i;
353                         struct hostent *nhp = NULL;
354                         struct sockaddr_in addr;
355
356                         /* First, try to match the hostname without
357                          * splitting off the domain */
358                         if (innetgr(cname+1, hname, NULL, NULL))
359                                 return 1;
360
361                         /* try the aliases as well */
362                         for (i = 0; hp->h_aliases[i]; i++) {
363                                 if (innetgr(cname+1, hp->h_aliases[i], NULL, NULL))
364                                         return 1;
365                         }
366
367                         /* If hname is ip address convert to FQDN */
368                         if (inet_aton(hname, &addr.sin_addr) &&
369                            (nhp = gethostbyaddr((const char *)&(addr.sin_addr),
370                             sizeof(addr.sin_addr), AF_INET))) {
371                                 hname = (char *)nhp->h_name;
372                                 if (innetgr(cname+1, hname, NULL, NULL))
373                                         return 1;
374                         }
375
376                         /* Okay, strip off the domain (if we have one) */
377                         if ((dot = strchr(hname, '.')) == NULL)
378                                 return 0;
379
380                         *dot = '\0';
381                         match = innetgr(cname+1, hname, NULL, NULL);
382                         *dot = '.';
383
384                         return match;
385                 }
386 #else
387                 return 0;
388 #endif
389         case MCL_ANONYMOUS:
390                 return 1;
391         case MCL_GSS:
392                 return 0;
393         default:
394                 xlog(L_FATAL, "internal: bad client type %d", clp->m_type);
395         }
396
397         return 0;
398 }
399
400 static int
401 client_checkaddr(nfs_client *clp, struct in_addr addr)
402 {
403         int     i;
404
405         switch (clp->m_type) {
406         case MCL_FQDN:
407                 for (i = 0; i < clp->m_naddr; i++) {
408                         if (clp->m_addrlist[i].s_addr == addr.s_addr)
409                                 return 1;
410                 }
411                 return 0;
412         case MCL_SUBNETWORK:
413                 return !((clp->m_addrlist[0].s_addr ^ addr.s_addr)
414                         & clp->m_addrlist[1].s_addr);
415         }
416         return 0;
417 }
418
419 int
420 client_gettype(char *ident)
421 {
422         char    *sp;
423
424         if (ident[0] == '\0' || strcmp(ident, "*")==0)
425                 return MCL_ANONYMOUS;
426         if (strncmp(ident, "gss/", 4) == 0)
427                 return MCL_GSS;
428         if (ident[0] == '@') {
429 #ifndef HAVE_INNETGR
430                 xlog(L_WARNING, "netgroup support not compiled in");
431 #endif
432                 return MCL_NETGROUP;
433         }
434         for (sp = ident; *sp; sp++) {
435                 if (*sp == '*' || *sp == '?' || *sp == '[')
436                         return MCL_WILDCARD;
437                 if (*sp == '/')
438                         return MCL_SUBNETWORK;
439                 if (*sp == '\\' && sp[1])
440                         sp++;
441         }
442         /* check for N.N.N.N */
443         sp = ident;
444         if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN;
445         sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN;
446         sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN;
447         sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '\0') return MCL_FQDN;
448         /* we lie here a bit. but technically N.N.N.N == N.N.N.N/32 :) */
449         return MCL_SUBNETWORK;
450 }