2 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
6 #pragma ident "%Z%%M% %I% %E% SMI"
9 * This module implements a simple access control language that is based on
10 * host (or domain) names, NIS (host) netgroup names, IP addresses (or
11 * network numbers) and daemon process names. When a match is found the
12 * search is terminated, and depending on whether PROCESS_OPTIONS is defined,
13 * a list of options is executed or an optional shell command is executed.
15 * Host and user names are looked up on demand, provided that suitable endpoint
16 * information is available as sockaddr_in structures or TLI netbufs. As a
17 * side effect, the pattern matching process may change the contents of
18 * request structure fields.
20 * Diagnostics are reported through syslog(3).
22 * Compile with -DNETGROUP if your library provides support for netgroups.
24 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
27 static char sccsid
[] = "@(#) hosts_access.c 1.21 97/02/12 02:13:22";
29 /* System libraries. */
31 #include <sys/types.h>
32 #include <sys/param.h>
33 #include <netinet/in.h>
34 #include <arpa/inet.h>
35 #include <rpcsvc/ypclnt.h>
50 #define INADDR_NONE (-1) /* XXX should be 0xffffffff */
59 extern jmp_buf tcpd_buf
;
61 /* Delimiters for lists of daemons or clients. */
63 static char sep
[] = ", \t\r\n";
65 /* Constants to be used in assignments only, not in comparisons... */
71 * These variables are globally visible so that they can be redirected in
75 char *hosts_allow_table
= HOSTS_ALLOW
;
76 char *hosts_deny_table
= HOSTS_DENY
;
77 int hosts_access_verbose
= 0;
80 * In a long-running process, we are not at liberty to just go away.
83 int resident
= (-1); /* -1, 0: unknown; +1: yes */
85 /* Forward declarations. */
87 static int table_match();
88 static int list_match();
89 static int server_match();
90 static int client_match();
91 static int host_match();
92 static int string_match();
93 static int masked_match();
95 static void ipv6_mask();
98 /* Size of logical line buffer. */
102 /* hosts_access - host access control facility */
104 int hosts_access(request
)
105 struct request_info
*request
;
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.
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.
126 verdict
= setjmp(tcpd_buf
);
128 return (verdict
== AC_PERMIT
);
129 if (table_match(hosts_allow_table
, request
))
131 if (table_match(hosts_deny_table
, request
))
136 /* table_match - match table entries with (daemon, client) pair */
138 static int table_match(table
, request
)
140 struct request_info
*request
;
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 */
147 struct tcpd_context saved_context
;
149 saved_context
= tcpd_context
; /* stupid compilers */
152 * Between the fopen() and fclose() calls, avoid jumps that may cause
153 * file descriptor leaks.
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");
164 if (sv_list
[0] == '#' || sv_list
[strspn(sv_list
, " \t\r\n")] == 0)
166 if ((cl_list
= split_at(skip_ipv6_addrs(sv_list
), ':')) == 0) {
167 tcpd_warn("missing \":\" separator");
170 sh_cmd
= split_at(skip_ipv6_addrs(cl_list
), ':');
171 match
= list_match(sv_list
, request
, server_match
)
172 && list_match(cl_list
, request
, client_match
);
175 } else if (errno
!= ENOENT
) {
176 tcpd_warn("cannot open %s: %m", table
);
179 if (hosts_access_verbose
> 1)
180 syslog(LOG_DEBUG
, "matched: %s line %d",
181 tcpd_context
.file
, tcpd_context
.line
);
183 #ifdef PROCESS_OPTIONS
184 process_options(sh_cmd
, request
);
187 shell_cmd(percent_x(cmd
, sizeof(cmd
), sh_cmd
, request
));
191 tcpd_context
= saved_context
;
195 /* list_match - match a request against a list of patterns with exceptions */
197 static int list_match(list
, request
, match_fn
)
199 struct request_info
*request
;
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.
211 for (tok
= strtok(list
, sep
); tok
!= 0; tok
= strtok(NULL
, sep
)) {
212 if (STR_EQ(tok
, "EXCEPT")) /* EXCEPT: give up */
214 if (match_fn(tok
, request
)) { /* YES: look for exceptions */
215 while ((tok
= strtok(NULL
, sep
)) && STR_NE(tok
, "EXCEPT"))
217 return (tok
== 0 || list_match((char *) 0, request
, match_fn
) == 0);
223 /* server_match - match server information */
225 static int server_match(tok
, request
)
227 struct request_info
*request
;
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
));
239 /* client_match - match client information */
241 static int client_match(tok
, request
)
243 struct request_info
*request
;
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
)));
255 /* host_match - match host name and/or address against pattern */
257 static int host_match(tok
, host
)
259 struct host_info
*host
;
264 * This code looks a little hairy because we want to avoid unnecessary
267 * The KNOWN pattern requires that both address AND name be known; some
268 * patterns are specific to host names or to host addresses; all other
269 * patterns are satisfied when either the address OR the name match.
272 if (tok
[0] == '@') { /* netgroup: look it up */
274 static char *mydomain
= 0;
276 yp_get_default_domain(&mydomain
);
277 return (innetgr(tok
+ 1, eval_hostname(host
), (char *) 0, mydomain
));
279 tcpd_warn("netgroup support is disabled"); /* not tcpd_jump() */
282 } else if (STR_EQ(tok
, "KNOWN")) { /* check address and name */
283 char *name
= eval_hostname(host
);
284 return (STR_NE(eval_hostaddr(host
), unknown
) && HOSTNAME_KNOWN(name
));
285 } else if (STR_EQ(tok
, "LOCAL")) { /* local: no dots in name */
286 char *name
= eval_hostname(host
);
287 return (strchr(name
, '.') == 0 && HOSTNAME_KNOWN(name
));
289 } else if (tok
[0] == '[') { /* IPv6 address */
290 struct in6_addr in6
, hostin6
, *hip
;
293 int mask
= IPV6_ABITS
;
296 * In some cases we don't get the sockaddr, only the addr.
297 * We use inet_pton to convert it to its binary representation
298 * and match against that.
300 if (host
->sin
== NULL
) {
301 if (host
->addr
== NULL
||
302 inet_pton(AF_INET6
, host
->addr
, &hostin6
) != 1) {
307 if (SGFAM(host
->sin
) != AF_INET6
)
309 hip
= &host
->sin
->sg_sin6
.sin6_addr
;
312 if (cbr
= strchr(tok
, ']'))
316 * A /nnn prefix specifies how many bits of the address we
319 if (slash
= strchr(tok
, '/')) {
321 mask
= atoi(slash
+1);
322 if (mask
< 0 || mask
> IPV6_ABITS
) {
323 tcpd_warn("bad IP6 prefix specification");
326 /* Copy, because we need to modify it below */
327 if (host
->sin
!= NULL
) {
328 hostin6
= host
->sin
->sg_sin6
.sin6_addr
;
333 if (cbr
== NULL
|| inet_pton(AF_INET6
, tok
+1, &in6
) != 1) {
334 tcpd_warn("bad IP6 address specification");
338 * Zero the bits we're not interested in in both addresses
339 * then compare. Note that we take a copy of the host info
342 if (mask
!= IPV6_ABITS
) {
343 ipv6_mask(&in6
, mask
);
344 ipv6_mask(hip
, mask
);
346 if (memcmp(&in6
, hip
, sizeof(in6
)) == 0)
350 } else if ((mask
= split_at(tok
, '/')) != 0) { /* net/mask */
351 return (masked_match(tok
, mask
, eval_hostaddr(host
)));
352 } else { /* anything else */
353 return (string_match(tok
, eval_hostaddr(host
))
354 || (NOT_INADDR(tok
) && string_match(tok
, eval_hostname(host
))));
358 /* string_match - match string against pattern */
360 static int string_match(tok
, string
)
366 if (tok
[0] == '.') { /* suffix */
367 n
= strlen(string
) - strlen(tok
);
368 return (n
> 0 && STR_EQ(tok
, string
+ n
));
369 } else if (STR_EQ(tok
, "ALL")) { /* all: match any */
371 } else if (STR_EQ(tok
, "KNOWN")) { /* not unknown */
372 return (STR_NE(string
, unknown
));
373 } else if (tok
[(n
= strlen(tok
)) - 1] == '.') { /* prefix */
374 return (STRN_EQ(tok
, string
, n
));
375 } else { /* exact match */
376 return (STR_EQ(tok
, string
));
380 /* masked_match - match address against netnumber/netmask */
382 static int masked_match(net_tok
, mask_tok
, string
)
392 * Disallow forms other than dotted quad: the treatment that inet_addr()
393 * gives to forms with less than four components is inconsistent with the
394 * access control language. John P. Rouillard <rouilj@cs.umb.edu>.
397 if ((addr
= dot_quad_addr(string
)) == INADDR_NONE
)
399 if ((net
= dot_quad_addr(net_tok
)) == INADDR_NONE
400 || (mask
= dot_quad_addr(mask_tok
)) == INADDR_NONE
) {
401 tcpd_warn("bad net/mask expression: %s/%s", net_tok
, mask_tok
);
402 return (NO
); /* not tcpd_jump() */
404 return ((addr
& mask
) == net
);
409 * Function that zeros all but the first "maskbits" bits of the IPV6 address
410 * This function can be made generic by specifying an address length as
411 * extra parameter. (So Wietse can implement 1.2.3.4/16)
413 static void ipv6_mask(in6p
, maskbits
)
414 struct in6_addr
*in6p
;
417 uchar_t
*p
= (uchar_t
*) in6p
;
419 if (maskbits
< 0 || maskbits
>= IPV6_ABITS
)
426 *p
++ &= 0xff << (8 - maskbits
);
428 while (p
< (((uchar_t
*) in6p
)) + sizeof(*in6p
))