xref: /freebsd/usr.sbin/jail/jail.8 (revision d056fa046c6a91b90cd98165face0e42a33a5173)
1.\"
2.\" Copyright (c) 2000, 2003 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 June 11, 2006
37.Dt JAIL 8
38.Os
39.Sh NAME
40.Nm jail
41.Nd "imprison process and its descendants"
42.Sh SYNOPSIS
43.Nm
44.Op Fl i
45.Op Fl J Ar jid_file
46.Op Fl s Ar securelevel
47.Op Fl l u Ar username | Fl U Ar username
48.Ar path hostname ip-number command ...
49.Sh DESCRIPTION
50The
51.Nm
52utility imprisons a process and all future descendants.
53.Pp
54The options are as follows:
55.Bl -tag -width ".Fl u Ar username"
56.It Fl i
57Output the jail identifier of the newly created jail.
58.It Fl J Ar jid_file
59Write a JidFile, like a PidFile, containing jailid, path, hostname, ip and
60command used to start the jail.
61.It Fl l
62Run program in the clean environment.
63The environment is discarded except for
64.Ev HOME , SHELL , TERM
65and
66.Ev USER .
67.Ev HOME
68and
69.Ev SHELL
70are set to the target login's default values.
71.Ev USER
72is set to the target login.
73.Ev TERM
74is imported from the current environment.
75The environment variables from the login class capability database for the
76target login are also set.
77.It Fl s Ar securelevel
78Sets
79.Va kern.securelevel
80to the specified value inside the newly created jail.
81.It Fl u Ar username
82The user name from host environment as whom the
83.Ar command
84should run.
85.It Fl U Ar username
86The user name from jailed environment as whom the
87.Ar command
88should run.
89.It Ar path
90Directory which is to be the root of the prison.
91.It Ar hostname
92Hostname of the prison.
93.It Ar ip-number
94IP number assigned to the prison.
95.It Ar command
96Pathname of the program which is to be executed.
97.El
98.Pp
99Jails are typically set up using one of two philosophies: either to
100constrain a specific application (possibly running with privilege), or
101to create a
102.Dq "virtual system image"
103running a variety of daemons and services.
104In both cases, a fairly complete file system install of
105.Fx
106is
107required, so as to provide the necessary command line tools, daemons,
108libraries, application configuration files, etc.
109However, for a virtual server configuration, a fair amount of
110additional work is required so as to configure the
111.Dq boot
112process.
113This manual page documents the configuration steps necessary to support
114either of these steps, although the configuration steps may be
115refined based on local requirements.
116.Pp
117Please see the
118.Xr jail 2
119man page for further details.
120.Sh EXAMPLES
121.Ss "Setting up a Jail Directory Tree"
122To set up a jail directory tree containing an entire
123.Fx
124distribution, the following
125.Xr sh 1
126command script can be used:
127.Bd -literal
128D=/here/is/the/jail
129cd /usr/src
130mkdir -p $D
131make world DESTDIR=$D
132make distribution DESTDIR=$D
133mount_devfs devfs $D/dev
134.Ed
135.Pp
136NOTE: It is important that only appropriate device nodes in devfs be
137exposed to a jail; access to disk devices in the jail may permit processes
138in the jail to bypass the jail sandboxing by modifying files outside of
139the jail.
140See
141.Xr devfs 8
142for information on how to use devfs rules to limit access to entries
143in the per-jail devfs.
144A simple devfs ruleset for jails is available as ruleset #4 in
145.Pa /etc/defaults/devfs.rules .
146.Pp
147In many cases this example would put far more in the jail than needed.
148In the other extreme case a jail might contain only one file:
149the executable to be run in the jail.
150.Pp
151We recommend experimentation and caution that it is a lot easier to
152start with a
153.Dq fat
154jail and remove things until it stops working,
155than it is to start with a
156.Dq thin
157jail and add things until it works.
158.Ss "Setting Up a Jail"
159Do what was described in
160.Sx "Setting Up a Jail Directory Tree"
161to build the jail directory tree.
162For the sake of this example, we will
163assume you built it in
164.Pa /data/jail/192.0.2.100 ,
165named for the jailed IP address.
166Substitute below as needed with your
167own directory, IP address, and hostname.
168.Ss "Setting up the Host Environment"
169First, you will want to set up your real system's environment to be
170.Dq jail-friendly .
171For consistency, we will refer to the parent box as the
172.Dq "host environment" ,
173and to the jailed virtual machine as the
174.Dq "jail environment" .
175Since jail is implemented using IP aliases, one of the first things to do
176is to disable IP services on the host system that listen on all local
177IP addresses for a service.
178If a network service is present in the host environment that binds all
179available IP addresses rather than specific IP addresses, it may service
180requests sent to jail IP addresses.
181This means changing
182.Xr inetd 8
183to only listen on the
184appropriate IP address, and so forth.
185Add the following to
186.Pa /etc/rc.conf
187in the host environment:
188.Bd -literal -offset indent
189sendmail_enable="NO"
190inetd_flags="-wW -a 192.0.2.23"
191rpcbind_enable="NO"
192.Ed
193.Pp
194.Li 192.0.2.23
195is the native IP address for the host system, in this example.
196Daemons that run out of
197.Xr inetd 8
198can be easily set to use only the specified host IP address.
199Other daemons
200will need to be manually configured\(emfor some this is possible through
201the
202.Xr rc.conf 5
203flags entries; for others it is necessary to modify per-application
204configuration files, or to recompile the applications.
205The following frequently deployed services must have their individual
206configuration files modified to limit the application to listening
207to a specific IP address:
208.Pp
209To configure
210.Xr sshd 8 ,
211it is necessary to modify
212.Pa /etc/ssh/sshd_config .
213.Pp
214To configure
215.Xr sendmail 8 ,
216it is necessary to modify
217.Pa /etc/mail/sendmail.cf .
218.Pp
219For
220.Xr named 8 ,
221it is necessary to modify
222.Pa /etc/namedb/named.conf .
223.Pp
224In addition, a number of services must be recompiled in order to run
225them in the host environment.
226This includes most applications providing services using
227.Xr rpc 3 ,
228such as
229.Xr rpcbind 8 ,
230.Xr nfsd 8 ,
231and
232.Xr mountd 8 .
233In general, applications for which it is not possible to specify which
234IP address to bind should not be run in the host environment unless they
235should also service requests sent to jail IP addresses.
236Attempting to serve
237NFS from the host environment may also cause confusion, and cannot be
238easily reconfigured to use only specific IPs, as some NFS services are
239hosted directly from the kernel.
240Any third-party network software running
241in the host environment should also be checked and configured so that it
242does not bind all IP addresses, which would result in those services' also
243appearing to be offered by the jail environments.
244.Pp
245Once
246these daemons have been disabled or fixed in the host environment, it is
247best to reboot so that all daemons are in a known state, to reduce the
248potential for confusion later (such as finding that when you send mail
249to a jail, and its sendmail is down, the mail is delivered to the host,
250etc.).
251.Ss "Configuring the Jail"
252Start any jail for the first time without configuring the network
253interface so that you can clean it up a little and set up accounts.
254As
255with any machine (virtual or not) you will need to set a root password, time
256zone, etc.
257Some of these steps apply only if you intend to run a full virtual server
258inside the jail; others apply both for constraining a particular application
259or for running a virtual server.
260.Pp
261Start a shell in the jail:
262.Pp
263.Dl "jail /data/jail/192.0.2.100 testhostname 192.0.2.100 /bin/sh"
264.Pp
265Assuming no errors, you will end up with a shell prompt within the jail.
266You can now run
267.Pa /usr/sbin/sysinstall
268and do the post-install configuration to set various configuration options,
269or perform these actions manually by editing
270.Pa /etc/rc.conf ,
271etc.
272.Pp
273.Bl -bullet -offset indent -compact
274.It
275Create an empty
276.Pa /etc/fstab
277to quell startup warnings about missing fstab (virtual server only)
278.It
279Disable the port mapper
280.Pa ( /etc/rc.conf :
281.Li rpcbind_enable="NO" )
282(virtual server only)
283.It
284Configure
285.Pa /etc/resolv.conf
286so that name resolution within the jail will work correctly
287.It
288Run
289.Xr newaliases 1
290to quell
291.Xr sendmail 8
292warnings.
293.It
294Disable interface configuration to quell startup warnings about
295.Xr ifconfig 8
296.Pq Li network_interfaces=""
297(virtual server only)
298.It
299Set a root password, probably different from the real host system
300.It
301Set the timezone
302.It
303Add accounts for users in the jail environment
304.It
305Install any packages the environment requires
306.El
307.Pp
308You may also want to perform any package-specific configuration (web servers,
309SSH servers, etc), patch up
310.Pa /etc/syslog.conf
311so it logs as you would like, etc.
312If you are not using a virtual server, you may wish to modify
313.Xr syslogd 8
314in the host environment to listen on the syslog socket in the jail
315environment; in this example, the syslog socket would be stored in
316.Pa /data/jail/192.0.2.100/var/run/log .
317.Pp
318Exit from the shell, and the jail will be shut down.
319.Ss "Starting the Jail"
320You are now ready to restart the jail and bring up the environment with
321all of its daemons and other programs.
322If you are running a single application in the jail, substitute the
323command used to start the application for
324.Pa /etc/rc
325in the examples below.
326To start a virtual server environment,
327.Pa /etc/rc
328is run to launch various daemons and services.
329To do this, first bring up the
330virtual host interface, and then start the jail's
331.Pa /etc/rc
332script from within the jail.
333.Pp
334NOTE: If you plan to allow untrusted users to have root access inside the
335jail, you may wish to consider setting the
336.Va security.jail.set_hostname_allowed
337sysctl variable to 0.
338Please see the management discussion later in this document as to why this
339may be a good idea.
340If you do decide to set this variable,
341it must be set before starting any jails, and once each boot.
342.Bd -literal -offset indent
343ifconfig ed0 inet alias 192.0.2.100/32
344mount -t procfs proc /data/jail/192.0.2.100/proc
345jail /data/jail/192.0.2.100 testhostname 192.0.2.100 \\
346	/bin/sh /etc/rc
347.Ed
348.Pp
349A few warnings will be produced, because most
350.Xr sysctl 8
351configuration variables cannot be set from within the jail, as they are
352global across all jails and the host environment.
353However, it should all
354work properly.
355You should be able to see
356.Xr inetd 8 ,
357.Xr syslogd 8 ,
358and other processes running within the jail using
359.Xr ps 1 ,
360with the
361.Ql J
362flag appearing beside jailed processes.
363To see an active list of jails, use the
364.Xr jls 8
365utility.
366You should also be able to
367.Xr telnet 1
368to the hostname or IP address of the jailed environment, and log
369in using the accounts you created previously.
370.Pp
371It is possible to have jails started at boot time.
372Please refer to the
373.Dq jail_*
374variables in
375.Xr rc.conf 5
376for more information.
377The
378.Xr rc 8
379jail script provides a flexible system to start/stop jails:
380.Bd -literal
381/etc/rc.d/jail start
382/etc/rc.d/jail stop
383/etc/rc.d/jail start myjail
384/etc/rc.d/jail stop myjail
385.Ed
386.Ss "Managing the Jail"
387Normal machine shutdown commands, such as
388.Xr halt 8 ,
389.Xr reboot 8 ,
390and
391.Xr shutdown 8 ,
392cannot be used successfully within the jail.
393To kill all processes in a
394jail, you may log into the jail and, as root, use one of the following
395commands, depending on what you want to accomplish:
396.Pp
397.Bd -literal -offset indent
398kill -TERM -1
399kill -KILL -1
400.Ed
401.Pp
402This will send the
403.Dv SIGTERM
404or
405.Dv SIGKILL
406signals to all processes in the jail from within the jail.
407Depending on
408the intended use of the jail, you may also want to run
409.Pa /etc/rc.shutdown
410from within the jail.
411To kill processes from outside the jail, use the
412.Xr jexec 8
413utility in conjunction with the one of the
414.Xr kill 1
415commands above.
416.Pp
417The
418.Pa /proc/ Ns Ar pid Ns Pa /status
419file contains, as its last field, the hostname of the jail in which the
420process runs, or
421.Dq Li -
422to indicate that the process is not running within a jail.
423The
424.Xr ps 1
425command also shows a
426.Ql J
427flag for processes in a jail.
428However, the hostname for a jail may be, by
429default, modified from within the jail, so the
430.Pa /proc
431status entry is unreliable by default.
432To disable the setting of the hostname
433from within a jail, set the
434.Va security.jail.set_hostname_allowed
435sysctl variable in the host environment to 0, which will affect all jails.
436You can have this sysctl set on each boot using
437.Xr sysctl.conf 5 .
438Just add the following line to
439.Pa /etc/sysctl.conf :
440.Pp
441.Dl security.jail.set_hostname_allowed=0
442.Pp
443You can also list/kill processes based on their jail ID.
444To show processes and their jail ID, use the following command:
445.Pp
446.Dl "ps ax -o pid,jid,args"
447.Pp
448To show and then kill processes in jail number 3 use the following commands:
449.Bd -literal -offset indent
450pgrep -lfj 3
451pkill -j 3
452.Ed
453or:
454.Pp
455.Dl "killall -j 3"
456.Ss "Sysctl MIB Entries"
457Certain aspects of the jail containments environment may be modified from
458the host environment using
459.Xr sysctl 8
460MIB variables.
461Currently, these variables affect all jails on the system, although in
462the future this functionality may be finer grained.
463.Bl -tag -width XXX
464.It Va security.jail.allow_raw_sockets
465This MIB entry determines whether or not prison root is allowed to
466create raw sockets.
467Setting this MIB to 1 allows utilities like
468.Xr ping 8
469and
470.Xr traceroute 8
471to operate inside the prison.
472If this MIB
473is set, the source IP addresses are enforced to comply
474with the IP address bound to the jail, regardless of whether or not
475the
476.Dv IP_HDRINCL
477flag has been set on the socket.
478Since raw sockets can be used to configure
479and interact with various network subsystems, extra caution should be used
480where privileged access to jails is given out to untrusted parties.
481As such,
482by default this option is disabled.
483.It Va security.jail.enforce_statfs
484This MIB entry determines which information processes in a jail are
485able to get about mount-points.
486It affects the behaviour of the following syscalls:
487.Xr statfs 2 ,
488.Xr fstatfs 2 ,
489.Xr getfsstat 2
490and
491.Xr fhstatfs 2
492(as well as similar compatibility syscalls).
493When set to 0, all mount-points are available without any restrictions.
494When set to 1, only mount-points below the jail's chroot directory are
495visible.
496In addition to that, the path to the jail's chroot directory is removed
497from the front of their pathnames.
498When set to 2 (default), above syscalls can operate only on a mount-point
499where the jail's chroot directory is located.
500.It Va security.jail.set_hostname_allowed
501This MIB entry determines whether or not processes within a jail are
502allowed to change their hostname via
503.Xr hostname 1
504or
505.Xr sethostname 3 .
506In the current jail implementation, the ability to set the hostname from
507within the jail can impact management tools relying on the accuracy of jail
508information in
509.Pa /proc .
510As such, this should be disabled in environments where privileged access to
511jails is given out to untrusted parties.
512.It Va security.jail.socket_unixiproute_only
513The jail functionality binds an IPv4 address to each jail, and limits
514access to other network addresses in the IPv4 space that may be available
515in the host environment.
516However, jail is not currently able to limit access to other network
517protocol stacks that have not had jail functionality added to them.
518As such, by default, processes within jails may only access protocols
519in the following domains:
520.Dv PF_LOCAL , PF_INET ,
521and
522.Dv PF_ROUTE ,
523permitting them access to
524.Ux
525domain sockets,
526IPv4 addresses, and routing sockets.
527To enable access to other domains, this MIB variable may be set to
5280.
529.It Va security.jail.sysvipc_allowed
530This MIB entry determines whether or not processes within a jail have access
531to System V IPC primitives.
532In the current jail implementation, System V primitives share a single
533namespace across the host and jail environments, meaning that processes
534within a jail would be able to communicate with (and potentially interfere
535with) processes outside of the jail, and in other jails.
536As such, this functionality is disabled by default, but can be enabled
537by setting this MIB entry to 1.
538.It Va security.jail.chflags_allowed
539This MIB entry determines how a privileged user inside a jail will be
540treated by
541.Xr chflags 2 .
542If zero, such users are treated as unprivileged, and are unable to set
543or clear system file flags; if non-zero, such users are treated as
544privileged, and may manipulate system file flags subject to the usual
545constraints on
546.Va kern.securelevel .
547.El
548.Pp
549The read-only
550.Va security.jail.jailed
551variable can be used to determine if a process is running inside a jail (value
552is one) or not (value is zero).
553.Pp
554The
555.Va security.jail.list
556MIB entry is read-only and it returns an array of
557.Vt "struct xprison"
558defined in
559.In sys/jail.h .
560It is recommended to use the
561.Xr jls 8
562utility to see current active list of jails.
563.Pp
564There are currently two MIB related variables that have per-jail settings.
565Changes to these variables by a jailed process do not effect the host
566environment, only the jail environment.
567The variables are
568.Va kern.securelevel
569and
570.Va kern.hostname .
571.Sh SEE ALSO
572.Xr killall 1 ,
573.Xr newaliases 1 ,
574.Xr pgrep 1 ,
575.Xr pkill 1 ,
576.Xr ps 1 ,
577.Xr chroot 2 ,
578.Xr jail 2 ,
579.Xr jail_attach 2 ,
580.Xr procfs 5 ,
581.Xr rc.conf 5 ,
582.Xr sysctl.conf 5 ,
583.Xr devfs 8 ,
584.Xr halt 8 ,
585.Xr inetd 8 ,
586.Xr jexec 8 ,
587.Xr jls 8 ,
588.Xr mount_devfs 8 ,
589.Xr named 8 ,
590.Xr reboot 8 ,
591.Xr rpcbind 8 ,
592.Xr sendmail 8 ,
593.Xr shutdown 8 ,
594.Xr sysctl 8 ,
595.Xr syslogd 8
596.Sh HISTORY
597The
598.Nm
599utility appeared in
600.Fx 4.0 .
601.Sh AUTHORS
602.An -nosplit
603The jail feature was written by
604.An Poul-Henning Kamp
605for R&D Associates
606.Pa http://www.rndassociates.com/
607who contributed it to
608.Fx .
609.Pp
610.An Robert Watson
611wrote the extended documentation, found a few bugs, added
612a few new features, and cleaned up the userland jail environment.
613.Sh BUGS
614Jail currently lacks the ability to allow access to
615specific jail information via
616.Xr ps 1
617as opposed to
618.Xr procfs 5 .
619Similarly, it might be a good idea to add an
620address alias flag such that daemons listening on all IPs
621.Pq Dv INADDR_ANY
622will not bind on that address, which would facilitate building a safe
623host environment such that host daemons do not impose on services offered
624from within jails.
625Currently, the simplest answer is to minimize services
626offered on the host, possibly limiting it to services offered from
627.Xr inetd 8
628which is easily configurable.
629