8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man4 / hosts_access.4
blob7452c14b07ba535ff75b3ac891a93122a592b39f
1 '\" t
2 .\"
3 .\" Modified for Solaris to to add the Solaris stability classification,
4 .\" and to add a note about source availability.
5 .\"
6 .TH HOSTS_ACCESS 4 "April 9, 2016"
7 .SH NAME
8 hosts_access \- format of host access control files
9 .SH DESCRIPTION
10 This manual page describes a simple access control language that is
11 based on client (host name/address, user name), and server (process
12 name, host name/address) patterns.  Examples are given at the end. The
13 impatient reader is encouraged to skip to the EXAMPLES section for a
14 quick introduction.
15 .PP
16 An extended version of the access control language is described in the
17 \fIhosts_options\fR(4) document. The extensions are turned on at
18 program build time by building with -DPROCESS_OPTIONS.
19 .PP
20 In the following text, \fIdaemon\fR is the process name of a
21 network daemon process, and \fIclient\fR is the name and/or address of
22 a host requesting service. Network daemon process names are specified
23 in the inetd configuration file.
24 .SH ACCESS CONTROL FILES
25 The access control software consults two files. The search stops
26 at the first match:
27 .IP \(bu
28 Access will be granted when a (daemon,client) pair matches an entry in
29 the \fI/etc/hosts.allow\fR file.
30 .IP \(bu
31 Otherwise, access will be denied when a (daemon,client) pair matches an
32 entry in the \fI/etc/hosts.deny\fR file.
33 .IP \(bu
34 Otherwise, access will be granted.
35 .PP
36 A non-existing access control file is treated as if it were an empty
37 file. Thus, access control can be turned off by providing no access
38 control files.
39 .SH ACCESS CONTROL RULES
40 Each access control file consists of zero or more lines of text.  These
41 lines are processed in order of appearance. The search terminates when a
42 match is found.
43 .IP \(bu
44 A newline character is ignored when it is preceded by a backslash
45 character. This permits you to break up long lines so that they are
46 easier to edit.
47 .IP \(bu
48 Blank lines or lines that begin with a `#\' character are ignored.
49 This permits you to insert comments and whitespace so that the tables
50 are easier to read.
51 .IP \(bu
52 All other lines should satisfy the following format, things between []
53 being optional:
54 .sp
55 daemon_list : client_list [ : shell_command ]
56 .PP
57 \fIdaemon_list\fR is a list of one or more daemon process names
58 (argv[0] values) or wildcards (see below).
59 .PP
60 \fIclient_list\fR is a list
61 of one or more host names, host addresses, patterns or wildcards (see
62 below) that will be matched against the client host name or address.
63 .PP
64 The more complex forms \fIdaemon@host\fR and \fIuser@host\fR are
65 explained in the sections on server endpoint patterns and on client
66 username lookups, respectively.
67 .PP
68 List elements should be separated by blanks and/or commas.
69 .PP
70 With the exception of NIS (YP) netgroup lookups, all access control
71 checks are case insensitive.
72 .ne 4
73 .SH HOST ADDRESSES
74 IPv4 client addresses can be denoted in their usual dotted notation, i.e.
75 x.x.x.x, but IPv6 addresses require a square brace around them - e.g.
76 [::1].
77 .SH PATTERNS
78 The access control language implements the following patterns:
79 .IP \(bu
80 A string that begins with a `.\' character. A host name is matched if
81 the last components of its name match the specified pattern.  For
82 example, the pattern `.tue.nl\' matches the host name
83 `wzv.win.tue.nl\'.
84 .IP \(bu
85 A string that ends with a `.\' character. A host address is matched if
86 its first numeric fields match the given string.  For example, the
87 pattern `131.155.\' matches the address of (almost) every host on the
88 Eind\%hoven University network (131.155.x.x).
89 .IP \(bu
90 A string that begins with an `@\' character is treated as an NIS
91 (formerly YP) netgroup name. A host name is matched if it is a host
92 member of the specified netgroup. Netgroup matches are not supported
93 for daemon process names or for client user names.
94 .IP \(bu
95 An expression of the form `n.n.n.n/m.m.m.m\' is interpreted as a
96 `net/mask\' pair. A host address is matched if `net\' is equal to the
97 bitwise AND of the address and the `mask\'. For example, the net/mask
98 pattern `131.155.72.0/255.255.254.0\' matches every address in the
99 range `131.155.72.0\' through `131.155.73.255\'.
100 .IP \(bu
101 Prefixes can be specified for IPv6 address, e.g. [2001:DB8::/32]
102 .SH WILDCARDS
103 The access control language supports explicit wildcards:
104 .IP ALL
105 The universal wildcard, always matches.
106 .IP LOCAL
107 Matches any host whose name does not contain a dot character.
108 .IP UNKNOWN
109 Matches any user whose name is unknown, and matches any host whose name
110 \fIor\fR address are unknown.  This pattern should be used with care:
111 host names may be unavailable due to temporary name server problems. A
112 network address will be unavailable when the software cannot figure out
113 what type of network it is talking to.
114 .IP KNOWN
115 Matches any user whose name is known, and matches any host whose name
116 \fIand\fR address are known. This pattern should be used with care:
117 host names may be unavailable due to temporary name server problems.  A
118 network address will be unavailable when the software cannot figure out
119 what type of network it is talking to.
120 .IP PARANOID
121 Matches any host whose name does not match its address.  When tcpd is
122 built with -DPARANOID (default mode), it drops requests from such
123 clients even before looking at the access control tables.  Build
124 without -DPARANOID when you want more control over such requests.
125 .ne 6
126 .SH OPERATORS
127 .IP EXCEPT
128 Intended use is of the form: `list_1 EXCEPT list_2\'; this construct
129 matches anything that matches \fIlist_1\fR unless it matches
130 \fIlist_2\fR.  The EXCEPT operator can be used in daemon_lists and in
131 client_lists. The EXCEPT operator can be nested: if the control
132 language would permit the use of parentheses, `a EXCEPT b EXCEPT c\'
133 would parse as `(a EXCEPT (b EXCEPT c))\'.
135 .ne 6
136 .SH SHELL COMMANDS
137 If the first-matched access control rule contains a shell command, that
138 command is subjected to %<letter> substitutions (see next section).
139 The result is executed by a \fI/bin/sh\fR child process with standard
140 input, output and error connected to \fI/dev/null\fR.  Specify an `&\'
141 at the end of the command if you do not want to wait until it has
142 completed.
144 Shell commands should not rely on the PATH setting of the inetd.
145 Instead, they should use absolute path names, or they should begin with
146 an explicit PATH=whatever statement.
148 The \fIhosts_options\fR(4) document describes an alternative language
149 that uses the shell command field in a different and incompatible way.
150 .SH % EXPANSIONS
151 The following expansions are available within shell commands:
152 .IP "%a (%A)"
153 The client (server) host address.
154 .IP %c
155 Client information: user@host, user@address, a host name, or just an
156 address, depending on how much information is available.
157 .IP %d
158 The daemon process name (argv[0] value).
159 .IP "%h (%H)"
160 The client (server) host name or address, if the host name is
161 unavailable.
162 .IP "%n (%N)"
163 The client (server) host name (or "unknown" or "paranoid").
164 .IP %p
165 The daemon process id.
166 .IP %s
167 Server information: daemon@host, daemon@address, or just a daemon name,
168 depending on how much information is available.
169 .IP %u
170 The client user name (or "unknown").
171 .IP %%
172 Expands to a single `%\' character.
174 Characters in % expansions that may confuse the shell are replaced by
175 underscores.
176 .SH SERVER ENDPOINT PATTERNS
177 In order to distinguish clients by the network address that they
178 connect to, use patterns of the form:
180 process_name@host_pattern : client_list ...
182 Patterns like these can be used when the machine has different internet
183 addresses with different internet hostnames.  Service providers can use
184 this facility to offer FTP, GOPHER or WWW archives with internet names
185 that may even belong to different organizations. See also the `twist'
186 option in the hosts_options(4) document. Some systems (Solaris,
187 FreeBSD) can have more than one internet address on one physical
188 interface; with other systems you may have to resort to SLIP or PPP
189 pseudo interfaces that live in a dedicated network address space.
191 The host_pattern obeys the same syntax rules as host names and
192 addresses in client_list context. Usually, server endpoint information
193 is available only with connection-oriented services.
194 .SH CLIENT USERNAME LOOKUP
195 When the client host supports the RFC 931 protocol or one of its
196 descendants (TAP, IDENT, RFC 1413) the wrapper programs can retrieve
197 additional information about the owner of a connection. Client username
198 information, when available, is logged together with the client host
199 name, and can be used to match patterns like:
201 daemon_list : ... user_pattern@host_pattern ...
203 The daemon wrappers can be configured at compile time to perform
204 rule-driven username lookups (default) or to always interrogate the
205 client host.  In the case of rule-driven username lookups, the above
206 rule would cause username lookup only when both the \fIdaemon_list\fR
207 and the \fIhost_pattern\fR match.
209 A user pattern has the same syntax as a daemon process pattern, so the
210 same wildcards apply (netgroup membership is not supported).  One
211 should not get carried away with username lookups, though.
212 .IP \(bu
213 The client username information cannot be trusted when it is needed
214 most, i.e. when the client system has been compromised.  In general,
215 ALL and (UN)KNOWN are the only user name patterns that make sense.
216 .IP \(bu
217 Username lookups are possible only with TCP-based services, and only
218 when the client host runs a suitable daemon; in all other cases the
219 result is "unknown".
220 .IP \(bu
221 A well-known UNIX kernel bug may cause loss of service when username
222 lookups are blocked by a firewall. The wrapper README document
223 describes a procedure to find out if your kernel has this bug.
224 .IP \(bu
225 Username lookups may cause noticeable delays for non-UNIX users.  The
226 default timeout for username lookups is 10 seconds: too short to cope
227 with slow networks, but long enough to irritate PC users.
229 Selective username lookups can alleviate the last problem. For example,
230 a rule like:
232 daemon_list : @pcnetgroup ALL@ALL
234 would match members of the pc netgroup without doing username lookups,
235 but would perform username lookups with all other systems.
236 .SH DETECTING ADDRESS SPOOFING ATTACKS
237 A flaw in the sequence number generator of many TCP/IP implementations
238 allows intruders to easily impersonate trusted hosts and to break in
239 via, for example, the remote shell service.  The IDENT (RFC931 etc.)
240 service can be used to detect such and other host address spoofing
241 attacks.
243 Before accepting a client request, the wrappers can use the IDENT
244 service to find out that the client did not send the request at all.
245 When the client host provides IDENT service, a negative IDENT lookup
246 result (the client matches `UNKNOWN@host') is strong evidence of a host
247 spoofing attack.
249 A positive IDENT lookup result (the client matches `KNOWN@host') is
250 less trustworthy. It is possible for an intruder to spoof both the
251 client connection and the IDENT lookup, although doing so is much
252 harder than spoofing just a client connection. It may also be that
253 the client\'s IDENT server is lying.
255 Note: IDENT lookups don\'t work with UDP services.
256 .SH EXAMPLES
257 The language is flexible enough that different types of access control
258 policy can be expressed with a minimum of fuss. Although the language
259 uses two access control tables, the most common policies can be
260 implemented with one of the tables being trivial or even empty.
262 When reading the examples below it is important to realize that the
263 allow table is scanned before the deny table, that the search
264 terminates when a match is found, and that access is granted when no
265 match is found at all.
267 The examples use host and domain names. They can be improved by
268 including address and/or network/netmask information, to reduce the
269 impact of temporary name server lookup failures.
270 .SH MOSTLY CLOSED
271 In this case, access is denied by default. Only explicitly authorized
272 hosts are permitted access.
274 The default policy (no access) is implemented with a trivial deny
275 file:
277 .ne 2
278 /etc/hosts.deny:
279 .in +3
280 ALL: ALL
282 This denies all service to all hosts, unless they are permitted access
283 by entries in the allow file.
285 The explicitly authorized hosts are listed in the allow file.
286 For example:
288 .ne 2
289 /etc/hosts.allow:
290 .in +3
291 ALL: LOCAL @some_netgroup
293 ALL: .foobar.edu EXCEPT terminalserver.foobar.edu
295 The first rule permits access from hosts in the local domain (no `.\'
296 in the host name) and from members of the \fIsome_netgroup\fP
297 netgroup.  The second rule permits access from all hosts in the
298 \fIfoobar.edu\fP domain (notice the leading dot), with the exception of
299 \fIterminalserver.foobar.edu\fP.
300 .SH MOSTLY OPEN
301 Here, access is granted by default; only explicitly specified hosts are
302 refused service.
304 The default policy (access granted) makes the allow file redundant so
305 that it can be omitted.  The explicitly non-authorized hosts are listed
306 in the deny file. For example:
308 /etc/hosts.deny:
309 .in +3
310 ALL: some.host.name, .some.domain
312 ALL EXCEPT in.fingerd: other.host.name, .other.domain
314 The first rule denies some hosts and domains all services; the second
315 rule still permits finger requests from other hosts and domains.
316 .SH BOOBY TRAPS
317 The next example permits tftp requests from hosts in the local domain
318 (notice the leading dot).  Requests from any other hosts are denied.
319 Instead of the requested file, a finger probe is sent to the offending
320 host. The result is mailed to the superuser.
322 .ne 2
323 /etc/hosts.allow:
324 .in +3
326 in.tftpd: LOCAL, .my.domain
328 .ne 2
329 /etc/hosts.deny:
330 .in +3
331 in.tftpd: ALL: (/some/where/safe_finger -l @%h | \\
332         /usr/ucb/mail -s %d-%h root) &
335 The safe_finger command comes with the tcpd wrapper and should be
336 installed in a suitable place. It limits possible damage from data sent
337 by the remote finger server.  It gives better protection than the
338 standard finger command.
340 The expansion of the %h (client host) and %d (service name) sequences
341 is described in the section on shell commands.
343 Warning: do not booby-trap your finger daemon, unless you are prepared
344 for infinite finger loops.
346 On network firewall systems this trick can be carried even further.
347 The typical network firewall only provides a limited set of services to
348 the outer world. All other services can be "bugged" just like the above
349 tftp example. The result is an excellent early-warning system.
351 .ne 4
352 .SH DIAGNOSTICS
353 An error is reported when a syntax error is found in a host access
354 control rule; when the length of an access control rule exceeds the
355 capacity of an internal buffer; when an access control rule is not
356 terminated by a newline character; when the result of %<letter>
357 expansion would overflow an internal buffer; when a system call fails
358 that shouldn\'t.  All problems are reported via the syslog daemon.
359 .SH FILES
362 /etc/hosts.allow, (daemon,client) pairs that are granted access.
363 /etc/hosts.deny, (daemon,client) pairs that are denied access.
366 .SH SEE ALSO
368 tcpd(1M) tcp/ip daemon wrapper program.
369 tcpdchk(1M), tcpdmatch(1M), test programs.
370 .SH BUGS
371 If a name server lookup times out, the host name will not be available
372 to the access control software, even though the host is registered.
374 Domain name server lookups are case insensitive; NIS (formerly YP)
375 netgroup lookups are case sensitive.
376 .SH AUTHOR
378 Wietse Venema (wietse@wzv.win.tue.nl)
379 Department of Mathematics and Computing Science
380 Eindhoven University of Technology
381 Den Dolech 2, P.O. Box 513,
382 5600 MB Eindhoven, The Netherlands
383 \" @(#) hosts_access.5 1.20 95/01/30 19:51:46
384 .\" Begin Sun update
385 .SH ATTRIBUTES
387 .BR attributes (5)
388 for descriptions of the following attributes:
391 box;
392 c | c
393 l | l .
394 ATTRIBUTE TYPE  ATTRIBUTE VALUE
396 Interface Stability     Committed
397 Source for tcp_wrappers is available in the SUNWtcpdS package.
399 .\" End Sun update