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.
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.
13 * Diagnostics are reported through syslog(3).
15 * Compile with -DNETGROUP if your library provides support for netgroups.
17 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
19 * $FreeBSD: src/contrib/tcp_wrappers/hosts_access.c,v 1.3.2.1 2000/07/18 08:34:54 ume Exp $
20 * $DragonFly: src/contrib/tcp_wrappers/hosts_access.c,v 1.3 2005/04/29 00:37:08 joerg Exp $
24 static char sccsid
[] = "@(#) hosts_access.c 1.21 97/02/12 02:13:22";
27 /* System libraries. */
29 #include <sys/types.h>
31 typedef uint32_t u_int32_t
;
33 #include <sys/param.h>
35 #include <sys/socket.h>
37 #include <netinet/in.h>
38 #include <arpa/inet.h>
52 #define INADDR_NONE (-1) /* XXX should be 0xffffffff */
61 extern jmp_buf tcpd_buf
;
63 /* Delimiters for lists of daemons or clients. */
65 static char sep
[] = ", \t\r\n";
67 /* Constants to be used in assignments only, not in comparisons... */
73 * These variables are globally visible so that they can be redirected in
77 char *hosts_allow_table
= HOSTS_ALLOW
;
78 char *hosts_deny_table
= HOSTS_DENY
;
79 int hosts_access_verbose
= 0;
82 * In a long-running process, we are not at liberty to just go away.
85 int resident
= (-1); /* -1, 0: unknown; +1: yes */
87 /* Forward declarations. */
89 static int table_match();
90 static int list_match();
91 static int server_match();
92 static int client_match();
93 static int host_match();
94 static int string_match();
95 static int masked_match();
97 static int masked_match4();
98 static int masked_match6();
101 /* Size of logical line buffer. */
105 /* hosts_access - host access control facility */
107 int hosts_access(request
)
108 struct request_info
*request
;
113 * If the (daemon, client) pair is matched by an entry in the file
114 * /etc/hosts.allow, access is granted. Otherwise, if the (daemon,
115 * client) pair is matched by an entry in the file /etc/hosts.deny,
116 * access is denied. Otherwise, access is granted. A non-existent
117 * access-control file is treated as an empty file.
119 * After a rule has been matched, the optional language extensions may
120 * decide to grant or refuse service anyway. Or, while a rule is being
121 * processed, a serious error is found, and it seems better to play safe
122 * and deny service. All this is done by jumping back into the
123 * hosts_access() routine, bypassing the regular return from the
124 * table_match() function calls below.
129 verdict
= setjmp(tcpd_buf
);
131 return (verdict
== AC_PERMIT
);
132 if (table_match(hosts_allow_table
, request
))
134 if (table_match(hosts_deny_table
, request
))
139 /* table_match - match table entries with (daemon, client) pair */
141 static int table_match(table
, request
)
143 struct request_info
*request
;
146 char sv_list
[BUFLEN
]; /* becomes list of daemons */
147 char *cl_list
; /* becomes list of clients */
148 char *sh_cmd
; /* becomes optional shell command */
150 struct tcpd_context saved_context
;
152 saved_context
= tcpd_context
; /* stupid compilers */
155 * Between the fopen() and fclose() calls, avoid jumps that may cause
156 * file descriptor leaks.
159 if ((fp
= fopen(table
, "r")) != 0) {
160 tcpd_context
.file
= table
;
161 tcpd_context
.line
= 0;
162 while (match
== NO
&& xgets(sv_list
, sizeof(sv_list
), fp
) != 0) {
163 if (sv_list
[strlen(sv_list
) - 1] != '\n') {
164 tcpd_warn("missing newline or line too long");
167 if (sv_list
[0] == '#' || sv_list
[strspn(sv_list
, " \t\r\n")] == 0)
169 if ((cl_list
= split_at(sv_list
, ':')) == 0) {
170 tcpd_warn("missing \":\" separator");
173 sh_cmd
= split_at(cl_list
, ':');
174 match
= list_match(sv_list
, request
, server_match
)
175 && list_match(cl_list
, request
, client_match
);
178 } else if (errno
!= ENOENT
) {
179 tcpd_warn("cannot open %s: %m", table
);
182 if (hosts_access_verbose
> 1)
183 syslog(LOG_DEBUG
, "matched: %s line %d",
184 tcpd_context
.file
, tcpd_context
.line
);
186 #ifdef PROCESS_OPTIONS
187 process_options(sh_cmd
, request
);
190 shell_cmd(percent_x(cmd
, sizeof(cmd
), sh_cmd
, request
));
194 tcpd_context
= saved_context
;
198 /* list_match - match a request against a list of patterns with exceptions */
200 static int list_match(list
, request
, match_fn
)
202 struct request_info
*request
;
208 * Process tokens one at a time. We have exhausted all possible matches
209 * when we reach an "EXCEPT" token or the end of the list. If we do find
210 * a match, look for an "EXCEPT" list and recurse to determine whether
211 * the match is affected by any exceptions.
214 for (tok
= strtok(list
, sep
); tok
!= 0; tok
= strtok((char *) 0, sep
)) {
215 if (STR_EQ(tok
, "EXCEPT")) /* EXCEPT: give up */
217 if (match_fn(tok
, request
)) { /* YES: look for exceptions */
218 while ((tok
= strtok((char *) 0, sep
)) && STR_NE(tok
, "EXCEPT"))
220 return (tok
== 0 || list_match((char *) 0, request
, match_fn
) == 0);
226 /* server_match - match server information */
228 static int server_match(tok
, request
)
230 struct request_info
*request
;
234 if ((host
= split_at(tok
+ 1, '@')) == 0) { /* plain daemon */
235 return (string_match(tok
, eval_daemon(request
)));
236 } else { /* daemon@host */
237 return (string_match(tok
, eval_daemon(request
))
238 && host_match(host
, request
->server
));
242 /* client_match - match client information */
244 static int client_match(tok
, request
)
246 struct request_info
*request
;
250 if ((host
= split_at(tok
+ 1, '@')) == 0) { /* plain host */
251 return (host_match(tok
, request
->client
));
252 } else { /* user@host */
253 return (host_match(host
, request
->client
)
254 && string_match(tok
, eval_user(request
)));
258 /* hostfile_match - look up host patterns from file */
260 static int hostfile_match(path
, host
)
262 struct hosts_info
*host
;
268 if ((fp
= fopen(path
, "r")) != 0) {
269 while (fscanf(fp
, "%s", tok
) == 1 && !(match
= host_match(tok
, host
)))
272 } else if (errno
!= ENOENT
) {
273 tcpd_warn("open %s: %m", path
);
278 /* host_match - match host name and/or address against pattern */
280 static int host_match(tok
, host
)
282 struct host_info
*host
;
287 * This code looks a little hairy because we want to avoid unnecessary
290 * The KNOWN pattern requires that both address AND name be known; some
291 * patterns are specific to host names or to host addresses; all other
292 * patterns are satisfied when either the address OR the name match.
295 if (tok
[0] == '@') { /* netgroup: look it up */
297 static char *mydomain
= 0;
299 yp_get_default_domain(&mydomain
);
300 return (innetgr(tok
+ 1, eval_hostname(host
), (char *) 0, mydomain
));
302 tcpd_warn("netgroup support is disabled"); /* not tcpd_jump() */
305 } else if (tok
[0] == '/') { /* /file hack */
306 return (hostfile_match(tok
, host
));
307 } else if (STR_EQ(tok
, "KNOWN")) { /* check address and name */
308 char *name
= eval_hostname(host
);
309 return (STR_NE(eval_hostaddr(host
), unknown
) && HOSTNAME_KNOWN(name
));
310 } else if (STR_EQ(tok
, "LOCAL")) { /* local: no dots in name */
311 char *name
= eval_hostname(host
);
312 return (strchr(name
, '.') == 0 && HOSTNAME_KNOWN(name
));
313 } else if ((mask
= split_at(tok
, '/')) != 0) { /* net/mask */
314 return (masked_match(tok
, mask
, eval_hostaddr(host
)));
315 } else { /* anything else */
316 return (string_match(tok
, eval_hostaddr(host
))
317 || (NOT_INADDR(tok
) && string_match(tok
, eval_hostname(host
))));
321 /* string_match - match string against pattern */
323 static int string_match(tok
, string
)
330 /* convert IPv4 mapped IPv6 address to IPv4 address */
331 if (STRN_EQ(string
, "::ffff:", 7)
332 && dot_quad_addr(string
+ 7) != INADDR_NONE
) {
336 if (tok
[0] == '.') { /* suffix */
337 n
= strlen(string
) - strlen(tok
);
338 return (n
> 0 && STR_EQ(tok
, string
+ n
));
339 } else if (STR_EQ(tok
, "ALL")) { /* all: match any */
341 } else if (STR_EQ(tok
, "KNOWN")) { /* not unknown */
342 return (STR_NE(string
, unknown
));
343 } else if (tok
[(n
= strlen(tok
)) - 1] == '.') { /* prefix */
344 return (STRN_EQ(tok
, string
, n
));
345 } else { /* exact match */
347 struct addrinfo hints
, *res
;
348 struct sockaddr_in6 pat
, addr
;
353 if (*tok
== '[' && tok
[len
- 1] == ']') {
356 memset(&hints
, 0, sizeof(hints
));
357 hints
.ai_family
= AF_INET6
;
358 hints
.ai_socktype
= SOCK_STREAM
;
359 hints
.ai_flags
= AI_PASSIVE
| AI_NUMERICHOST
;
360 if ((ret
= getaddrinfo(tok
+ 1, NULL
, &hints
, &res
)) == 0) {
361 memcpy(&pat
, res
->ai_addr
, sizeof(pat
));
365 if (ret
!= 0 || getaddrinfo(string
, NULL
, &hints
, &res
) != 0)
367 memcpy(&addr
, res
->ai_addr
, sizeof(addr
));
369 #ifdef NI_WITHSCOPEID
370 if (pat
.sin6_scope_id
!= 0 &&
371 addr
.sin6_scope_id
!= pat
.sin6_scope_id
)
374 return (!memcmp(&pat
.sin6_addr
, &addr
.sin6_addr
,
375 sizeof(struct in6_addr
)));
379 return (STR_EQ(tok
, string
));
383 /* masked_match - match address against netnumber/netmask */
386 static int masked_match(net_tok
, mask_tok
, string
)
391 return (masked_match4(net_tok
, mask_tok
, string
) ||
392 masked_match6(net_tok
, mask_tok
, string
));
395 static int masked_match4(net_tok
, mask_tok
, string
)
397 static int masked_match(net_tok
, mask_tok
, string
)
414 * Disallow forms other than dotted quad: the treatment that inet_addr()
415 * gives to forms with less than four components is inconsistent with the
416 * access control language. John P. Rouillard <rouilj@cs.umb.edu>.
419 if ((addr
= dot_quad_addr(string
)) == INADDR_NONE
)
421 if ((net
= dot_quad_addr(net_tok
)) == INADDR_NONE
422 || (mask
= dot_quad_addr(mask_tok
)) == INADDR_NONE
) {
424 tcpd_warn("bad net/mask expression: %s/%s", net_tok
, mask_tok
);
426 return (NO
); /* not tcpd_jump() */
428 return ((addr
& mask
) == net
);
432 static int masked_match6(net_tok
, mask_tok
, string
)
437 struct addrinfo hints
, *res
;
438 struct sockaddr_in6 net
, addr
;
440 int len
, mask_len
, i
= 0;
443 memset(&hints
, 0, sizeof(hints
));
444 hints
.ai_family
= AF_INET6
;
445 hints
.ai_socktype
= SOCK_STREAM
;
446 hints
.ai_flags
= AI_PASSIVE
| AI_NUMERICHOST
;
447 if (getaddrinfo(string
, NULL
, &hints
, &res
) != 0)
449 memcpy(&addr
, res
->ai_addr
, sizeof(addr
));
452 if (IN6_IS_ADDR_V4MAPPED(&addr
.sin6_addr
)) {
453 if ((*(u_int32_t
*)&net
.sin6_addr
.s6_addr
[12] = dot_quad_addr(net_tok
)) == INADDR_NONE
454 || (mask
= dot_quad_addr(mask_tok
)) == INADDR_NONE
)
456 return ((*(u_int32_t
*)&addr
.sin6_addr
.s6_addr
[12] & mask
) == *(u_int32_t
*)&net
.sin6_addr
.s6_addr
[12]);
459 /* match IPv6 address against netnumber/prefixlen */
460 len
= strlen(net_tok
);
461 if (*net_tok
!= '[' || net_tok
[len
- 1] != ']')
463 ch
= net_tok
[len
- 1];
464 net_tok
[len
- 1] = '\0';
465 if (getaddrinfo(net_tok
+ 1, NULL
, &hints
, &res
) != 0) {
466 net_tok
[len
- 1] = ch
;
469 memcpy(&net
, res
->ai_addr
, sizeof(net
));
471 net_tok
[len
- 1] = ch
;
472 if ((mask_len
= atoi(mask_tok
)) < 0 || mask_len
> 128)
475 #ifdef NI_WITHSCOPEID
476 if (net
.sin6_scope_id
!= 0 && addr
.sin6_scope_id
!= net
.sin6_scope_id
)
479 while (mask_len
> 0) {
481 mask
= htonl(~(0xffffffff >> mask_len
));
482 if ((*(u_int32_t
*)&addr
.sin6_addr
.s6_addr
[i
] & mask
) != (*(u_int32_t
*)&net
.sin6_addr
.s6_addr
[i
] & mask
))
486 if (*(u_int32_t
*)&addr
.sin6_addr
.s6_addr
[i
] != *(u_int32_t
*)&net
.sin6_addr
.s6_addr
[i
])