xref: /freebsd/usr.sbin/jail/jail.8 (revision daf1cffce2e07931f27c6c6998652e90df6ba87e)
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 4.0
39.Sh NAME
40.Nm jail
41.Nd imprison process and its descendants
42.Sh SYNOPSIS
43.Nm jail
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 decendants.
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 hierarchy DESTDIR=$D
64make obj
65make depend
66make all
67make install DESTDIR=$D
68cd etc
69make distribution DESTDIR=$D NO_MAKEDEV=yes
70cd $D/dev
71sh MAKEDEV jail
72cd $D
73ln -sf dev/null kernel
74.Ed
75.Ss Setting Up a Jail
76Do what was described in
77.Sx Setting Up a Jail Directory Tree
78to build the jail directory tree.  For the sake of this example, we will
79assume you built it in
80.Pa /data/jail/192.168.11.100 ,
81named for the jailed IP address.  Substitute below as needed with your
82own directory, IP address, and hostname.
83.Pp
84First, you will want to set up your real system's environment to be
85.Dq jail-friendly.
86For consistency, we will refer to the parent box as the
87.Dq host environment,
88and to the jailed virtual machine as the
89.Dq jail environment.
90Because jail is implemented using IP aliases, one of the first things to do
91is to disable IP services on the host system that listen on all local
92IP addresses for a service.  This means changing inetd to only listen on the
93appropriate IP address, and so forth.  Add the following to
94.Pa /etc/rc.conf
95in the host environment:
96.Bd -literal -offset indent
97sendmail_enable="NO"
98inetd_flags="-wW -a 192.168.11.23"
99portmap_enable="NO"
100syslogd_flags="-ss"
101.Ed
102.Pp
103.Li 192.169.11.23
104is the native IP address for the host system, in this example.  Daemons that
105run out of
106.Xr inetd 8
107can be easily set to use only the specified host IP address.  Other daemons
108will need to be manually configured--for some this is possible through
109the
110.Xr rc.conf 5
111flags entries, for others it is not possible without munging
112the per-application configuration files, or even recompiling.  For those
113applications that cannot specify the IP they run on, it is better to disable
114them, if possible.
115.Pp
116A number of daemons ship with the base system that may have problems when
117run from outside of a jail in a jail-centric environment.  This includes
118.Xr syslogd 8 ,
119.Xr sendmail 8 ,
120.Xr named 8 ,
121and
122.Xr portmap 8 .
123While sendmail and named can be configured to listen only on a specific
124IP using their configuration files, in most cases it is easier to simply
125run the daemons in jails only, and not in the host environment.  Syslogd
126cannot be configured to bind only a single IP, but can be configured to
127not bind a network port, using the ``-ss'' argument.  Attempting to serve
128NFS from the host environment may also cause confusion, and cannot be
129easily reconfigured to use only specific IPs, as some NFS services are
130hosted directly from the kernel.  Any third party network software running
131in the host environment should also be checked and configured so that it
132does not bind all IP addresses, which would result in those services also
133appearing to be offered by the jail environments.
134.Pp
135Once
136these daemons have been disabled or fixed in the host environment, it is
137best to reboot so that all daemons are in a known state, to reduce the
138potential for confusion later (such as finding that when you send mail
139to a jail, and its sendmail is down, the mail is delivered to the host,
140etc.)
141.Pp
142Start any jails for the first time without configuring the network
143interface so that you can clean it up a little and set up accounts.  As
144with any machine (virtual or not) you will need to set a root password, time
145zone, etc.  Before beginning, you may want to copy
146.Xr sysinstall 8
147into the tree so that you can use it to set things up easily.  Do this using:
148.Bd -literal -offset indent
149# mkdir /data/jail/192.168.11.100/stand
150# cp /stand/sysinstall /data/jail/192.168.11.100/stand
151.Ed
152.Pp
153Now start the jail:
154.Bd -literal -offset indent
155# jail /data/jail/192.168.11.100 testhostname 192.168.11.100 /bin/sh
156.Ed
157.Pp
158You will end up with a shell prompt, assuming no errors, within the jail.  You
159can now run
160.Pa /stand/sysinstall
161and do the post-install configuration to set various configuration options,
162or perform these actions manually by editing rc.conf, etc.
163.Pp
164.Bl -bullet -offset indent -compact
165.It
166Create an empty /etc/fstab to quell startup warnings about missing fstab
167.It
168Disable the port mapper (rc.conf: portmap_enable="NO")
169.It
170Run
171.Xr newaliases 1
172to quell sendmail warnings.
173.It
174Disable interface configuration to quell startup warnings about ifconfig
175(network_interfaces="")
176.It
177Configure /etc/resolv.conf
178so that name resolution within the jail will work correctly
179.It
180Set a root password, probably different from the real host system
181.It
182Set the timezone
183.It
184Add accounts for users in the jail environment
185.It
186Install any packages that you think the environment requires
187.El
188.Pp
189You may also want to perform any package-specific configuration (web servers,
190SSH servers, etc), patch up /etc/syslog.conf so it logs as you'd like, etc.
191.Pp
192Exit from the shell, and the jail will be shut down.
193.Ss Starting the Jail
194You are now ready to restart the jail and bring up the environment with
195all of its daemons and other programs.  To do this, first bring up the
196virtual host interface, and then start the jail's
197.Pa /etc/rc
198script from within the jail.
199.Pp
200NOTE: If you plan to allow untrusted users to have root access inside the
201jail, you may wish to consider setting the jail.set_hostname_allowed to
2020.  Please see the management reasons why this is a good idea.  If you
203do decide to set this variable, it must be set before starting any jails,
204and once each boot.
205.Bd -literal -offset indent
206# ifconfig ed0 inet alias 192.168.11.100 netmask 255.255.255.255
207# mount -t procfs proc /data/jail/192.168.11.100/proc
208# jail /data/jail/192.168.11.100 testhostname 192.168.11.100 \\
209	/bin/sh /etc/rc
210.Ed
211.Pp
212A few warnings will be produced, because most
213.Xr sysctl 8
214configuration variables cannot be set from within the jail, as they are
215global across all jails and the host environment. However, it should all
216work properly. You 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 acounts 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 unreliably 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 FreeBSD, the mechanisms for managing jails will be
279more refined.
280.Sh SEE ALSO
281.Xr newaliases 1 ,
282.Xr ps 1 ,
283.Xr chroot 2 ,
284.Xr jail 2 ,
285.Xr procfs 5 ,
286.Xr rc.conf 5 ,
287.Xr sysctl.conf 5 ,
288.Xr halt 8 ,
289.Xr inetd 8 ,
290.Xr named 8 ,
291.Xr portmap 8 ,
292.Xr reboot 8 ,
293.Xr sendmail 8 ,
294.Xr shutdown 8 ,
295.Xr sysctl 8 ,
296.Xr syslogd 8
297.Sh HISTORY
298The
299.Fn jail
300function call appeared in
301.Fx 4.0 .
302.Sh AUTHORS
303The jail feature was written by Poul-Henning Kamp for
304R&D Associates
305.Dq Li http://www.rndassociates.com/
306who contributed it to FreeBSD.
307.Pp
308Robert Watson wrote the extended documentation, found a few bugs, added
309a few new features, and cleaned up the userland jail environment.
310.Sh BUGS
311Jail currently lacks strong management functionality, such as the ability
312to deliver signals to all processes in a jail, and to allow access to
313specific jail information via
314.Xr ps 1
315as opposed to
316.Xr procfs 5 .
317Similarly, it might be a good idea to add an
318address alias flag such that daemons listening on all IPs (INADDR_ANY)
319will not bind on that address, which would facilitate building a safe
320host environment such that host daemons do not impose on services offered
321from within jails.  Currently, the simplist answer is to minimize services
322offered on the host, possibly limiting it to services offered from inetd
323which is easily configurable.
324