1  /*
2   * This module implements a simple access control language that is based on
3   * host (or domain) names, NIS (host) netgroup names, IP addresses (or
4   * network numbers) and daemon process names. When a match is found the
5   * search is terminated, and depending on whether PROCESS_OPTIONS is defined,
6   * a list of options is executed or an optional shell command is executed.
7   *
8   * Host and user names are looked up on demand, provided that suitable endpoint
9   * information is available as sockaddr_in structures or TLI netbufs. As a
10   * side effect, the pattern matching process may change the contents of
11   * request structure fields.
12   *
13   * Diagnostics are reported through syslog(3).
14   *
15   * Compile with -DNETGROUP if your library provides support for netgroups.
16   *
17   * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
18   *
19   * $FreeBSD: src/contrib/tcp_wrappers/hosts_access.c,v 1.3.2.1 2000/07/18 08:34:54 ume Exp $
20   */
21 
22 /* System libraries. */
23 
24 #include <sys/types.h>
25 #ifdef INT32_T
26     typedef uint32_t u_int32_t;
27 #endif
28 #include <sys/param.h>
29 #ifdef INET6
30 #include <sys/socket.h>
31 #endif
32 #include <netinet/in.h>
33 #include <arpa/inet.h>
34 #include <stdio.h>
35 #include <syslog.h>
36 #include <ctype.h>
37 #include <errno.h>
38 #include <setjmp.h>
39 #include <string.h>
40 #ifdef INET6
41 #include <netdb.h>
42 #endif
43 #include <stdlib.h>
44 #include <rpcsvc/ypclnt.h>
45 
46 extern char *fgets();
47 
48 #ifndef	INADDR_NONE
49 #define	INADDR_NONE	(-1)		/* XXX should be 0xffffffff */
50 #endif
51 
52 /* Local stuff. */
53 
54 #include "tcpd.h"
55 
56 /* Error handling. */
57 
58 extern jmp_buf tcpd_buf;
59 
60 /* Delimiters for lists of daemons or clients. */
61 
62 static char sep[] = ", \t\r\n";
63 
64 /* Constants to be used in assignments only, not in comparisons... */
65 
66 #define	YES		1
67 #define	NO		0
68 
69  /*
70   * These variables are globally visible so that they can be redirected in
71   * verification mode.
72   */
73 
74 char   *hosts_allow_table = HOSTS_ALLOW;
75 char   *hosts_deny_table = HOSTS_DENY;
76 int     hosts_access_verbose = 0;
77 
78  /*
79   * In a long-running process, we are not at liberty to just go away.
80   */
81 
82 int     resident = (-1);		/* -1, 0: unknown; +1: yes */
83 
84 /* Forward declarations. */
85 
86 static int table_match();
87 static int list_match();
88 static int server_match();
89 static int client_match();
90 static int host_match();
91 static int string_match();
92 static int masked_match();
93 #ifdef INET6
94 static int masked_match4();
95 static int masked_match6();
96 #endif
97 
98 /* Size of logical line buffer. */
99 
100 #define	BUFLEN 2048
101 
102 /* hosts_access - host access control facility */
103 
104 int     hosts_access(request)
105 struct request_info *request;
106 {
107     int     verdict;
108 
109     /*
110      * If the (daemon, client) pair is matched by an entry in the file
111      * /etc/hosts.allow, access is granted. Otherwise, if the (daemon,
112      * client) pair is matched by an entry in the file /etc/hosts.deny,
113      * access is denied. Otherwise, access is granted. A non-existent
114      * access-control file is treated as an empty file.
115      *
116      * After a rule has been matched, the optional language extensions may
117      * decide to grant or refuse service anyway. Or, while a rule is being
118      * processed, a serious error is found, and it seems better to play safe
119      * and deny service. All this is done by jumping back into the
120      * hosts_access() routine, bypassing the regular return from the
121      * table_match() function calls below.
122      */
123 
124     if (resident <= 0)
125 	resident++;
126     verdict = setjmp(tcpd_buf);
127     if (verdict != 0)
128 	return (verdict == AC_PERMIT);
129     if (table_match(hosts_allow_table, request))
130 	return (YES);
131     if (table_match(hosts_deny_table, request))
132 	return (NO);
133     return (YES);
134 }
135 
136 /* table_match - match table entries with (daemon, client) pair */
137 
138 static int table_match(table, request)
139 char   *table;
140 struct request_info *request;
141 {
142     FILE   *fp;
143     char    sv_list[BUFLEN];		/* becomes list of daemons */
144     char   *cl_list;			/* becomes list of clients */
145     char   *sh_cmd;			/* becomes optional shell command */
146     int     match = NO;
147     struct tcpd_context saved_context;
148 
149     saved_context = tcpd_context;		/* stupid compilers */
150 
151     /*
152      * Between the fopen() and fclose() calls, avoid jumps that may cause
153      * file descriptor leaks.
154      */
155 
156     if ((fp = fopen(table, "r")) != 0) {
157 	tcpd_context.file = table;
158 	tcpd_context.line = 0;
159 	while (match == NO && xgets(sv_list, sizeof(sv_list), fp) != 0) {
160 	    if (sv_list[strlen(sv_list) - 1] != '\n') {
161 		tcpd_warn("missing newline or line too long");
162 		continue;
163 	    }
164 	    if (sv_list[0] == '#' || sv_list[strspn(sv_list, " \t\r\n")] == 0)
165 		continue;
166 	    if ((cl_list = split_at(sv_list, ':')) == 0) {
167 		tcpd_warn("missing \":\" separator");
168 		continue;
169 	    }
170 	    sh_cmd = split_at(cl_list, ':');
171 	    match = list_match(sv_list, request, server_match)
172 		&& list_match(cl_list, request, client_match);
173 	}
174 	(void) fclose(fp);
175     } else if (errno != ENOENT) {
176 	tcpd_warn("cannot open %s: %m", table);
177     }
178     if (match) {
179 	if (hosts_access_verbose > 1)
180 	    syslog(LOG_DEBUG, "matched:  %s line %d",
181 		   tcpd_context.file, tcpd_context.line);
182 	if (sh_cmd) {
183 #ifdef PROCESS_OPTIONS
184 	    process_options(sh_cmd, request);
185 #else
186 	    char    cmd[BUFSIZ];
187 	    shell_cmd(percent_x(cmd, sizeof(cmd), sh_cmd, request));
188 #endif
189 	}
190     }
191     tcpd_context = saved_context;
192     return (match);
193 }
194 
195 /* list_match - match a request against a list of patterns with exceptions */
196 
197 static int list_match(list, request, match_fn)
198 char   *list;
199 struct request_info *request;
200 int   (*match_fn) ();
201 {
202     char   *tok;
203 
204     /*
205      * Process tokens one at a time. We have exhausted all possible matches
206      * when we reach an "EXCEPT" token or the end of the list. If we do find
207      * a match, look for an "EXCEPT" list and recurse to determine whether
208      * the match is affected by any exceptions.
209      */
210 
211     for (tok = strtok(list, sep); tok != 0; tok = strtok((char *) 0, sep)) {
212 	if (STR_EQ(tok, "EXCEPT"))		/* EXCEPT: give up */
213 	    return (NO);
214 	if (match_fn(tok, request)) {		/* YES: look for exceptions */
215 	    while ((tok = strtok((char *) 0, sep)) && STR_NE(tok, "EXCEPT"))
216 		 /* VOID */ ;
217 	    return (tok == 0 || list_match((char *) 0, request, match_fn) == 0);
218 	}
219     }
220     return (NO);
221 }
222 
223 /* server_match - match server information */
224 
225 static int server_match(tok, request)
226 char   *tok;
227 struct request_info *request;
228 {
229     char   *host;
230 
231     if ((host = split_at(tok + 1, '@')) == 0) {	/* plain daemon */
232 	return (string_match(tok, eval_daemon(request)));
233     } else {					/* daemon@host */
234 	return (string_match(tok, eval_daemon(request))
235 		&& host_match(host, request->server));
236     }
237 }
238 
239 /* client_match - match client information */
240 
241 static int client_match(tok, request)
242 char   *tok;
243 struct request_info *request;
244 {
245     char   *host;
246 
247     if ((host = split_at(tok + 1, '@')) == 0) {	/* plain host */
248 	return (host_match(tok, request->client));
249     } else {					/* user@host */
250 	return (host_match(host, request->client)
251 		&& string_match(tok, eval_user(request)));
252     }
253 }
254 
255 /* hostfile_match - look up host patterns from file */
256 
257 static int hostfile_match(path, host)
258 char   *path;
259 struct hosts_info *host;
260 {
261     char    tok[BUFSIZ];
262     int     match = NO;
263     FILE   *fp;
264 
265     if ((fp = fopen(path, "r")) != 0) {
266 	while (fscanf(fp, "%s", tok) == 1 && !(match = host_match(tok, host)))
267 	     /* void */ ;
268 	fclose(fp);
269     } else if (errno != ENOENT) {
270 	tcpd_warn("open %s: %m", path);
271     }
272     return (match);
273 }
274 
275 /* host_match - match host name and/or address against pattern */
276 
277 static int host_match(tok, host)
278 char   *tok;
279 struct host_info *host;
280 {
281     char   *mask;
282 
283     /*
284      * This code looks a little hairy because we want to avoid unnecessary
285      * hostname lookups.
286      *
287      * The KNOWN pattern requires that both address AND name be known; some
288      * patterns are specific to host names or to host addresses; all other
289      * patterns are satisfied when either the address OR the name match.
290      */
291 
292     if (tok[0] == '@') {			/* netgroup: look it up */
293 #ifdef  NETGROUP
294 	static char *mydomain = 0;
295 	if (mydomain == 0)
296 	    yp_get_default_domain(&mydomain);
297 	return (innetgr(tok + 1, eval_hostname(host), (char *) 0, mydomain));
298 #else
299 	tcpd_warn("netgroup support is disabled");	/* not tcpd_jump() */
300 	return (NO);
301 #endif
302     } else if (tok[0] == '/') {			/* /file hack */
303 	return (hostfile_match(tok, host));
304     } else if (STR_EQ(tok, "KNOWN")) {		/* check address and name */
305 	char   *name = eval_hostname(host);
306 	return (STR_NE(eval_hostaddr(host), unknown) && HOSTNAME_KNOWN(name));
307     } else if (STR_EQ(tok, "LOCAL")) {		/* local: no dots in name */
308 	char   *name = eval_hostname(host);
309 	return (strchr(name, '.') == 0 && HOSTNAME_KNOWN(name));
310     } else if ((mask = split_at(tok, '/')) != 0) {	/* net/mask */
311 	return (masked_match(tok, mask, eval_hostaddr(host)));
312     } else {					/* anything else */
313 	return (string_match(tok, eval_hostaddr(host))
314 	    || (NOT_INADDR(tok) && string_match(tok, eval_hostname(host))));
315     }
316 }
317 
318 /* string_match - match string against pattern */
319 
320 static int string_match(tok, string)
321 char   *tok;
322 char   *string;
323 {
324     int     n;
325 
326 #ifdef INET6
327     /* convert IPv4 mapped IPv6 address to IPv4 address */
328     if (STRN_EQ(string, "::ffff:", 7)
329 	&& dot_quad_addr(string + 7) != INADDR_NONE) {
330 	string += 7;
331     }
332 #endif
333     if (tok[0] == '.') {			/* suffix */
334 	n = strlen(string) - strlen(tok);
335 	return (n > 0 && STR_EQ(tok, string + n));
336     } else if (STR_EQ(tok, "ALL")) {		/* all: match any */
337 	return (YES);
338     } else if (STR_EQ(tok, "KNOWN")) {		/* not unknown */
339 	return (STR_NE(string, unknown));
340     } else if (tok[(n = strlen(tok)) - 1] == '.') {	/* prefix */
341 	return (STRN_EQ(tok, string, n));
342     } else {					/* exact match */
343 #ifdef INET6
344 	struct addrinfo hints, *res;
345 	struct sockaddr_in6 pat, addr;
346 	int len, ret;
347 	char ch;
348 
349 	len = strlen(tok);
350 	if (*tok == '[' && tok[len - 1] == ']') {
351 	    ch = tok[len - 1];
352 	    tok[len - 1] = '\0';
353 	    memset(&hints, 0, sizeof(hints));
354 	    hints.ai_family = AF_INET6;
355 	    hints.ai_socktype = SOCK_STREAM;
356 	    hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
357 	    if ((ret = getaddrinfo(tok + 1, NULL, &hints, &res)) == 0) {
358 		memcpy(&pat, res->ai_addr, sizeof(pat));
359 		freeaddrinfo(res);
360 	    }
361 	    tok[len - 1] = ch;
362 	    if (ret != 0 || getaddrinfo(string, NULL, &hints, &res) != 0)
363 		return NO;
364 	    memcpy(&addr, res->ai_addr, sizeof(addr));
365 	    freeaddrinfo(res);
366 #ifdef NI_WITHSCOPEID
367 	    if (pat.sin6_scope_id != 0 &&
368 		addr.sin6_scope_id != pat.sin6_scope_id)
369 		return NO;
370 #endif
371 	    return (!memcmp(&pat.sin6_addr, &addr.sin6_addr,
372 			    sizeof(struct in6_addr)));
373 	    return (ret);
374 	}
375 #endif
376 	return (STR_EQ(tok, string));
377     }
378 }
379 
380 /* masked_match - match address against netnumber/netmask */
381 
382 #ifdef INET6
383 static int masked_match(net_tok, mask_tok, string)
384 char   *net_tok;
385 char   *mask_tok;
386 char   *string;
387 {
388     return (masked_match4(net_tok, mask_tok, string) ||
389 	    masked_match6(net_tok, mask_tok, string));
390 }
391 
392 static int masked_match4(net_tok, mask_tok, string)
393 #else
394 static int masked_match(net_tok, mask_tok, string)
395 #endif
396 char   *net_tok;
397 char   *mask_tok;
398 char   *string;
399 {
400 #ifdef INET6
401     u_int32_t net;
402     u_int32_t mask;
403     u_int32_t addr;
404 #else
405     unsigned long net;
406     unsigned long mask;
407     unsigned long addr;
408 #endif
409 
410     /*
411      * Disallow forms other than dotted quad: the treatment that inet_addr()
412      * gives to forms with less than four components is inconsistent with the
413      * access control language. John P. Rouillard <rouilj@cs.umb.edu>.
414      */
415 
416     if ((addr = dot_quad_addr(string)) == INADDR_NONE)
417 	return (NO);
418     if ((net = dot_quad_addr(net_tok)) == INADDR_NONE
419 	|| (mask = dot_quad_addr(mask_tok)) == INADDR_NONE) {
420 #ifndef INET6
421 	tcpd_warn("bad net/mask expression: %s/%s", net_tok, mask_tok);
422 #endif
423 	return (NO);				/* not tcpd_jump() */
424     }
425     return ((addr & mask) == net);
426 }
427 
428 #ifdef INET6
429 static int masked_match6(net_tok, mask_tok, string)
430 char   *net_tok;
431 char   *mask_tok;
432 char   *string;
433 {
434     struct addrinfo hints, *res;
435     struct sockaddr_in6 net, addr;
436     u_int32_t mask;
437     int len, mask_len, i = 0;
438     char ch;
439 
440     memset(&hints, 0, sizeof(hints));
441     hints.ai_family = AF_INET6;
442     hints.ai_socktype = SOCK_STREAM;
443     hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
444     if (getaddrinfo(string, NULL, &hints, &res) != 0)
445 	return NO;
446     memcpy(&addr, res->ai_addr, sizeof(addr));
447     freeaddrinfo(res);
448 
449     if (IN6_IS_ADDR_V4MAPPED(&addr.sin6_addr)) {
450 	if ((*(u_int32_t *)&net.sin6_addr.s6_addr[12] = dot_quad_addr(net_tok)) == INADDR_NONE
451 	 || (mask = dot_quad_addr(mask_tok)) == INADDR_NONE)
452 	    return (NO);
453 	return ((*(u_int32_t *)&addr.sin6_addr.s6_addr[12] & mask) == *(u_int32_t *)&net.sin6_addr.s6_addr[12]);
454     }
455 
456     /* match IPv6 address against netnumber/prefixlen */
457     len = strlen(net_tok);
458     if (*net_tok != '[' || net_tok[len - 1] != ']')
459 	return NO;
460     ch = net_tok[len - 1];
461     net_tok[len - 1] = '\0';
462     if (getaddrinfo(net_tok + 1, NULL, &hints, &res) != 0) {
463 	net_tok[len - 1] = ch;
464 	return NO;
465     }
466     memcpy(&net, res->ai_addr, sizeof(net));
467     freeaddrinfo(res);
468     net_tok[len - 1] = ch;
469     if ((mask_len = atoi(mask_tok)) < 0 || mask_len > 128)
470 	return NO;
471 
472 #ifdef NI_WITHSCOPEID
473     if (net.sin6_scope_id != 0 && addr.sin6_scope_id != net.sin6_scope_id)
474 	return NO;
475 #endif
476     while (mask_len > 0) {
477 	if (mask_len < 32) {
478 	    mask = htonl(~(0xffffffff >> mask_len));
479 	    if ((*(u_int32_t *)&addr.sin6_addr.s6_addr[i] & mask) != (*(u_int32_t *)&net.sin6_addr.s6_addr[i] & mask))
480 		return NO;
481 	    break;
482 	}
483 	if (*(u_int32_t *)&addr.sin6_addr.s6_addr[i] != *(u_int32_t *)&net.sin6_addr.s6_addr[i])
484 	    return NO;
485 	i += 4;
486 	mask_len -= 32;
487     }
488     return YES;
489 }
490 #endif /* INET6 */
491