xref: /freebsd/usr.sbin/jail/jail.8 (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1.\"
2.\"Copyright (c) 2000 Robert N. M. Watson
3.\"All rights reserved.
4.\"
5.\"Redistribution and use in source and binary forms, with or without
6.\"modification, are permitted provided that the following conditions
7.\"are met:
8.\"1. Redistributions of source code must retain the above copyright
9.\"   notice, this list of conditions and the following disclaimer.
10.\"2. Redistributions in binary form must reproduce the above copyright
11.\"   notice, this list of conditions and the following disclaimer in the
12.\"   documentation and/or other materials provided with the distribution.
13.\"
14.\"THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15.\"ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16.\"IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17.\"ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18.\"FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19.\"DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20.\"OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21.\"HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22.\"LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23.\"OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24.\"SUCH DAMAGE.
25.\"
26.\"
27.\"----------------------------------------------------------------------------
28.\""THE BEER-WARE LICENSE" (Revision 42):
29.\"<phk@FreeBSD.ORG> wrote this file.  As long as you retain this notice you
30.\"can do whatever you want with this stuff. If we meet some day, and you think
31.\"this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
32.\"----------------------------------------------------------------------------
33.\"
34.\"$FreeBSD$
35.\"
36.Dd April 28, 1999
37.Dt JAIL 8
38.Os FreeBSD
39.Sh NAME
40.Nm jail
41.Nd imprison process and its descendants
42.Sh SYNOPSIS
43.Nm
44.Ar path
45.Ar hostname
46.Ar ip-number
47.Ar command
48.Ar ...
49.Sh DESCRIPTION
50The
51.Nm
52command imprisons a process and all future descendants.
53.Pp
54Please see the
55.Xr jail 2
56man page for further details.
57.Sh EXAMPLES
58.Ss Setting up a Jail Directory Tree
59This shows how to setup a jail directory tree:
60.Bd -literal
61D=/here/is/the/jail
62cd /usr/src
63make world DESTDIR=$D
64cd etc
65make distribution DESTDIR=$D NO_MAKEDEV_RUN=yes
66cd $D/dev
67sh MAKEDEV jail
68cd $D
69ln -sf dev/null kernel
70.Ed
71.Ss Setting Up a Jail
72Do what was described in
73.Sx Setting Up a Jail Directory Tree
74to build the jail directory tree.  For the sake of this example, we will
75assume you built it in
76.Pa /data/jail/192.168.11.100 ,
77named for the jailed IP address.  Substitute below as needed with your
78own directory, IP address, and hostname.
79.Pp
80First, you will want to set up your real system's environment to be
81.Dq jail-friendly .
82For consistency, we will refer to the parent box as the
83.Dq host environment ,
84and to the jailed virtual machine as the
85.Dq jail environment .
86Because jail is implemented using IP aliases, one of the first things to do
87is to disable IP services on the host system that listen on all local
88IP addresses for a service.  This means changing
89.Xr inetd 8
90to only listen on the
91appropriate IP address, and so forth.  Add the following to
92.Pa /etc/rc.conf
93in the host environment:
94.Bd -literal -offset indent
95sendmail_enable="NO"
96inetd_flags="-wW -a 192.168.11.23"
97portmap_enable="NO"
98syslogd_flags="-ss"
99.Ed
100.Pp
101.Li 192.169.11.23
102is the native IP address for the host system, in this example.  Daemons that
103run out of
104.Xr inetd 8
105can be easily set to use only the specified host IP address.  Other daemons
106will need to be manually configured--for some this is possible through
107the
108.Xr rc.conf 5
109flags entries, for others it is not possible without munging
110the per-application configuration files, or even recompiling.  For those
111applications that cannot specify the IP they run on, it is better to disable
112them, if possible.
113.Pp
114A number of daemons ship with the base system that may have problems when
115run from outside of a jail in a jail-centric environment.  This includes
116.Xr syslogd 8 ,
117.Xr sendmail 8 ,
118.Xr named 8 ,
119and
120.Xr rpcbind 8 .
121While sendmail and named can be configured to listen only on a specific
122IP using their configuration files, in most cases it is easier to simply
123run the daemons in jails only, and not in the host environment.  Syslogd
124cannot be configured to bind only a single IP, but can be configured to
125not bind a network port, using the ``-ss'' argument.  Attempting to serve
126NFS from the host environment may also cause confusion, and cannot be
127easily reconfigured to use only specific IPs, as some NFS services are
128hosted directly from the kernel.  Any third party network software running
129in the host environment should also be checked and configured so that it
130does not bind all IP addresses, which would result in those services also
131appearing to be offered by the jail environments.
132.Pp
133Once
134these daemons have been disabled or fixed in the host environment, it is
135best to reboot so that all daemons are in a known state, to reduce the
136potential for confusion later (such as finding that when you send mail
137to a jail, and its sendmail is down, the mail is delivered to the host,
138etc.)
139.Pp
140Start any jails for the first time without configuring the network
141interface so that you can clean it up a little and set up accounts.  As
142with any machine (virtual or not) you will need to set a root password, time
143zone, etc.  Before beginning, you may want to copy
144.Xr sysinstall 8
145into the tree so that you can use it to set things up easily.  Do this using:
146.Bd -literal -offset indent
147# mkdir /data/jail/192.168.11.100/stand
148# cp /stand/sysinstall /data/jail/192.168.11.100/stand
149.Ed
150.Pp
151Now start the jail:
152.Bd -literal -offset indent
153# jail /data/jail/192.168.11.100 testhostname 192.168.11.100 /bin/sh
154.Ed
155.Pp
156You will end up with a shell prompt, assuming no errors, within the jail.  You
157can now run
158.Pa /stand/sysinstall
159and do the post-install configuration to set various configuration options,
160or perform these actions manually by editing rc.conf, etc.
161.Pp
162.Bl -bullet -offset indent -compact
163.It
164Create an empty /etc/fstab to quell startup warnings about missing fstab
165.It
166Disable the port mapper (rc.conf: portmap_enable="NO")
167.It
168Run
169.Xr newaliases 1
170to quell sendmail warnings.
171.It
172Disable interface configuration to quell startup warnings about ifconfig
173(network_interfaces="")
174.It
175Configure /etc/resolv.conf
176so that name resolution within the jail will work correctly
177.It
178Set a root password, probably different from the real host system
179.It
180Set the timezone
181.It
182Add accounts for users in the jail environment
183.It
184Install any packages that you think the environment requires
185.El
186.Pp
187You may also want to perform any package-specific configuration (web servers,
188SSH servers, etc), patch up /etc/syslog.conf so it logs as you'd like, etc.
189.Pp
190Exit from the shell, and the jail will be shut down.
191.Ss Starting the Jail
192You are now ready to restart the jail and bring up the environment with
193all of its daemons and other programs.  To do this, first bring up the
194virtual host interface, and then start the jail's
195.Pa /etc/rc
196script from within the jail.
197.Pp
198NOTE: If you plan to allow untrusted users to have root access inside the
199jail, you may wish to consider setting the jail.set_hostname_allowed to
2000.  Please see the management reasons why this is a good idea.  If you
201do decide to set this variable, it must be set before starting any jails,
202and once each boot.
203.Bd -literal -offset indent
204# ifconfig ed0 inet alias 192.168.11.100 netmask 255.255.255.255
205# mount -t procfs proc /data/jail/192.168.11.100/proc
206# jail /data/jail/192.168.11.100 testhostname 192.168.11.100 \\
207	/bin/sh /etc/rc
208.Ed
209.Pp
210A few warnings will be produced, because most
211.Xr sysctl 8
212configuration variables cannot be set from within the jail, as they are
213global across all jails and the host environment.
214However, it should all
215work properly.
216You should be able to see
217.Xr inetd 8 ,
218.Xr syslogd 8 ,
219and other processes running within the jail using
220.Xr ps 1 ,
221with the
222.Dq J
223flag appearing beside jailed processes.  You should also be able to
224telnet to the hostname or IP address of the jailed environment, and log
225in using the accounts you created previously.
226.Ss Managing the jail
227Normal machine shutdown commands, such as
228.Xr halt 8 ,
229.Xr reboot 8 ,
230and
231.Xr shutdown 8 ,
232cannot be used successfully within the jail.  To kill all processes in a
233jail, you may log into the jail and, as root, use one of the following
234commands, depending on what you want to accomplish:
235.Pp
236.Bl -bullet -offset indent -compact
237.It
238.Li kill -TERM -1
239.It
240.Li kill -KILL -1
241.El
242.Pp
243This will send the
244.Dq TERM
245or
246.Dq KILL
247signals to all processes in the jail from within the jail.  Depending on
248the intended use of the jail, you may also want to run
249.Pa /etc/rc.shutdown
250from within the jail.  Currently there is no way to insert new processes
251into a jail, so you must first log into the jail before performing these
252actions.
253.Pp
254To kill processes from outside the jail, you must individually identify the
255PID of each process to be killed.  The
256.Pa /proc/ Ns Va pid Ns Pa /status
257file contains, as its last field, the hostname of the jail in which the
258process runs, or
259.Dq -
260to indicate that the process is not running within a jail.  The
261.Xr ps 1
262command also shows a
263.Dq J
264flag for processes in a jail.  However, the hostname for a jail may be, by
265default, modified from within the jail, so the
266.Pa /proc
267status entry is unreliable by default.  To disable the setting of the hostname
268from within a jail, set the
269.Dq Va jail.set_hostname_allowed
270sysctl variable in the host environment to 0, which will affect all jails.
271You can have this sysctl set each boot using
272.Xr sysctl.conf 5 .
273Just add the following line to sysctl.conf:
274.Bd -literal -offset indent
275jail.set_hostname_allowed=0
276.Ed
277.Pp
278In a future version of
279.Fx ,
280the mechanisms for managing jails will be
281more refined.
282.Ss Sysctl MIB Entries
283Certain aspects of the jail containments environment may be modified from
284the host environment using
285.Xr sysctl 8
286MIB variables.
287Currently, these variables affect all jails on the system, although in
288the future this functionality may be finer grained.
289.Bl -tag -width XXX
290.It jail.set_hostname_allowed
291This MIB entry determines whether or not processes within a jail are
292allowed to change their hostname via
293.Xr hostname 1
294or
295.Xr sethostname 3 .
296In the current jail implementation, the ability to set the hostname from
297within the jail can impact management tools relying on the accuracy of jail
298information in
299.Pa /proc .
300As such, this should be disabled in environments where privileged access to
301jails is given out to untrusted parties.
302.It jail.socket_unixiproute_only
303The jail functionality binds an IPv4 address to each jail, and limits
304access to other network addresses in the IPv4 space that may be available
305in the host environment.
306However, jail is not currently able to limit access to other network
307protocol stacks that have not had jail functionality added to them.
308As such, by default, processes within jails may only access protocols
309in the following domains:
310.Dv PF_LOCAL ,
311.Dv PF_INET ,
312and
313.Dv PF_ROUTE ,
314permitting them access to UNIX domain sockets,
315IPv4 addresses, and routing sockets.
316To enable access to other domains, this MIB variable may be set to
3170.
318.It jail.sysvipc_allowed
319This MIB entry determines whether or not processes within a jail have access
320to System V IPC primitives.
321In the current jail implementation, System V primitives share a single
322namespace across the host and jail environments, meaning that processes
323within a jail would be able to communicate with (and potentially interfere
324with) processes outside of the jail, and in other jails.
325As such, this functionality is disabled by default, but can be enabled
326by setting this MIB entry to 1.
327.El
328.Sh SEE ALSO
329.Xr newaliases 1 ,
330.Xr ps 1 ,
331.Xr chroot 2 ,
332.Xr jail 2 ,
333.Xr procfs 5 ,
334.Xr rc.conf 5 ,
335.Xr sysctl.conf 5 ,
336.Xr halt 8 ,
337.Xr inetd 8 ,
338.Xr named 8 ,
339.Xr reboot 8 ,
340.Xr rpcbind 8 ,
341.Xr sendmail 8 ,
342.Xr shutdown 8 ,
343.Xr sysctl 8 ,
344.Xr syslogd 8
345.Sh HISTORY
346The
347.Fn jail
348function call appeared in
349.Fx 4.0 .
350.Sh AUTHORS
351The jail feature was written by
352.An Poul-Henning Kamp
353for R&D Associates
354.Dq Li http://www.rndassociates.com/
355who contributed it to
356.Fx .
357.Pp
358Robert Watson wrote the extended documentation, found a few bugs, added
359a few new features, and cleaned up the userland jail environment.
360.Sh BUGS
361Jail currently lacks strong management functionality, such as the ability
362to deliver signals to all processes in a jail, and to allow access to
363specific jail information via
364.Xr ps 1
365as opposed to
366.Xr procfs 5 .
367Similarly, it might be a good idea to add an
368address alias flag such that daemons listening on all IPs (INADDR_ANY)
369will not bind on that address, which would facilitate building a safe
370host environment such that host daemons do not impose on services offered
371from within jails.  Currently, the simplist answer is to minimize services
372offered on the host, possibly limiting it to services offered from
373.Xr inetd 8
374which is easily configurable.
375