xref: /dragonfly/usr.sbin/jail/jail.8 (revision 43778e29)
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.\"
35.Dd October 24, 2023
36.Dt JAIL 8
37.Os
38.Sh NAME
39.Nm jail
40.Nd "imprison process and its descendants"
41.Sh SYNOPSIS
42.Nm
43.Op Fl i
44.Op Fl l u Ar username | Fl U Ar username
45.Ar path hostname ip-list command ...
46.Sh DESCRIPTION
47The
48.Nm
49command imprisons a process and all future descendants.
50.Pp
51The options are as follows:
52.Bl -tag -width ".Fl u Ar username"
53.It Fl i
54Output the jail identifier of the newly created jail.
55.It Fl l
56Run program in the clean environment.
57The environment is discarded except for
58.Ev HOME , SHELL , TERM
59and
60.Ev USER .
61.Ev HOME
62and
63.Ev SHELL
64are set to the target login's default values.
65.Ev USER
66is set to the target login.
67.Ev TERM
68is imported from the current environment.
69The environment variables from the login class capability database for the
70target login are also set.
71.It Fl u Ar username
72The user name as whom the
73.Ar command
74should run.
75.It Fl U Ar username
76The user name from jailed environment as whom the
77.Ar command
78should run.
79.It Ar path
80Directory which is to be the root of the prison.
81.It Ar hostname
82Hostname of the prison.
83.It Ar ip-list
84Comma separated IP list assigned to the prison.
85.It Ar command
86Pathname of the program which is to be executed.
87.El
88.Pp
89Please see the
90.Xr jail 2
91man page for further details.
92.Sh EXAMPLES
93.Ss "Setting Up a Jail Directory Tree"
94This example shows how to setup a jail directory tree
95containing an entire
96.Dx
97distribution, provided that you built world before already:
98.Bd -literal
99D=/here/is/the/jail
100cd /usr/src
101mkdir -p $D
102make installworld DESTDIR=$D
103cd etc
104make distribution DESTDIR=$D
105cd $D
106ln -sf dev/null boot/kernel
107.Ed
108.Pp
109In many cases this example would put far more stuff in the jail than is needed.
110In the other extreme case a jail might contain only one single file:
111the executable to be run in the jail.
112.Pp
113We recommend experimentation and caution that it is a lot easier to
114start with a
115.Dq fat
116jail and remove things until it stops working,
117than it is to start with a
118.Dq thin
119jail and add things until it works.
120.Ss "Setting Up a Jail"
121Do what was described in
122.Sx "Setting Up a Jail Directory Tree"
123to build the jail directory tree.
124For the sake of this example, we will
125assume you built it in
126.Pa /data/jail/192.168.11.100 ,
127named for the external jail IP address.
128Substitute below as needed with your
129own directory, IP addresses, and hostname.
130.Pp
131First, you will want to set up your real system's environment to be
132.Dq jail-friendly .
133For consistency, we will refer to the parent box as the
134.Dq "host environment" ,
135and to the jailed virtual machine as the
136.Dq "jail environment" .
137Generally speaking making a system jail-friendly does not require much
138work if you have
139.Va jail.defaults.allow_listen_override
140set to 1.
141This will allow all listen sockets inside the jail to overload
142and override wildcard listen sockets on the host.
143This methodology works extremely well as long as you restrict the IPs you
144pass into the jail to avoid any security concerns, which typically means
145making at least two IP aliases for each jail that you create (an external
146IP and a localhost IP).
147.Pp
148If you do not want to allow listener socket overloading, you must modify
149services you intend to leave running on the host system to listen only on
150specific IPs and not all IPs, or generally only run services inside your
151jails that do not conflict with services on the host system.
152This can be difficult and is not recommended.
153.Pp
154Common services include:
155.Xr inetd 8 ,
156.Xr sendmail 8 ,
157.Xr named 8 ,
158.Xr rpcbind 8 ,
159.Xr mountd 8 ,
160.Xr nfsd 8 ,
161.Xr sendmail 1 ,
162and
163.Xr named 8 .
164.Pp
165For the purposes of our examples below,
166.Li 192.168.11.1
167is the host IP and we create aliases
168.Li 192.168.11.X
169for each jail.
170In addition, we leave
171.Li 127.0.0.1
172on the host only and create aliases
173.Li 127.0.0.X
174for each jail.
175.Pp
176Start any jails for the first time without configuring the network
177interface so that you can clean it up a little and set up accounts.
178As
179with any machine (virtual or not) you will need to set a root password, time
180zone, etc.
181.Pp
182To set the jail up for real you need to ifconfig some interface aliases.
183and set jail defaults.  Here is an example:
184.Pp
185.Dl "sysctl jail.defaults.allow_raw_sockets=1"
186.Dl "sysctl jail.defaults.allow_listen_override=1"
187.Dl "ifconfig lo0 127.0.0.2 alias"
188.Dl "ifconfig em0 192.168.11.100 netmask 255.255.255.0 alias"
189.Pp
190From within your jail you can generally run services normally. Just use
191.Dq localhost
192normally.  Do not inform services that localhost is 127.0.0.2.
193The kernel will automatically remap 'localhost' (e.g. 127.0.0.1) to the
194localhost IP you specify for the jail.  The kernel will also map the jail's
195localhost IP back to 127.0.0.1 in the
196.Xr accept 2 ,
197.Xr getsockname 2 ,
198and
199.Xr getpeername 2
200system calls.
201.Pp
202Listen sockets can be overloaded between jails and between the host and its
203jails.  You can continue to use services that listen on the wildcard *.*
204socket normally on both the host and its jails if you set the
205.Va allow_listen_override
206flag to 1, and jailed listen sockets will override any host listen sockets
207listening on the wildcard address for the allowed jail IPs.
208.Pp
209.Dx
210also allows you to overload specific ports, but the jailed service will
211not receive any connections if the host is also specifically listening
212on the addr/port pair that the jail is using.  If multiple jails are listening
213on the same addr/port pair (as specified by the jail's IP list), and the
214host is not, then only one jail will receive connections on that pair.
215.Pp
216In otherwords, it is still a good idea to give each jail its own local
217and non-local IP address rather than have jails share.
218.Pp
219Now start the jail:
220.Pp
221.Dl "jail /data/jail/192.168.11.100 testhostname 127.0.0.2,192.168.11.100 /bin/sh"
222.Pp
223You will end up with a shell prompt, assuming no errors, within the jail.
224You can now do the post-install configuration to set various configuration
225options by editing
226.Pa /etc/rc.conf ,
227etc.
228.Pp
229.Bl -bullet -offset indent -compact
230.It
231Disable the port mapper
232.Pa ( /etc/rc.conf :
233.Li rpcbind_enable="NO" )
234.It
235Run
236.Xr newaliases 1
237to quell
238.Xr sendmail 8
239warnings.
240.It
241Disable interface configuration to quell startup warnings about
242.Xr ifconfig 8
243.Pq Li network_interfaces=""
244.It
245Configure
246.Pa /etc/resolv.conf
247so that name resolution within the jail will work correctly
248.It
249Set a root password, probably different from the real host system
250.It
251Set the timezone with
252.Xr tzsetup 8
253.It
254Add accounts for users in the jail environment
255.It
256Install any packages that you think the environment requires
257.El
258.Pp
259You may also want to perform any package-specific configuration (web servers,
260SSH servers, etc), patch up
261.Pa /etc/syslog.conf
262so it logs as you would like, etc.
263.Pp
264Exit from the shell, and the jail will be shut down.
265.Ss "Starting the Jail"
266You are now ready to restart the jail and bring up the environment with
267all of its daemons and other programs.
268To do this, first bring up the
269virtual host interface, and then start the jail's
270.Pa /etc/rc
271script from within the jail.
272.Pp
273NOTE: If you plan to allow untrusted users to have root access inside the
274jail, you may wish to consider setting the
275.Va jail.defaults.set_hostname_allowed
276to 0.
277Please see the management reasons why this is a good idea.
278If you do decide to set this variable,
279it must be set before starting any jails, and once each boot.
280.Bd -literal -offset indent
281sysctl jail.defaults.allow_raw_sockets=1
282sysctl jail.defaults.allow_listen_override=1
283ifconfig em0 inet alias 192.168.11.100/32
284ifconfig lo0 inet alias 127.0.0.2
285mount -t procfs proc /data/jail/192.168.11.100/proc
286jail /data/jail/192.168.11.100 testhostname 127.0.0.2,192.168.11.100 \\
287	/bin/sh /etc/rc
288.Ed
289.Pp
290A few warnings will be produced, because most
291.Xr sysctl 8
292configuration variables cannot be set from within the jail, as they are
293global across all jails and the host environment.
294However, it should all
295work properly.
296You should be able to see
297.Xr inetd 8 ,
298.Xr syslogd 8 ,
299and other processes running within the jail using
300.Xr ps 1 ,
301with the
302.Ql J
303flag appearing beside jailed processes.
304You should also be able to
305.Xr telnet 1
306to the hostname or IP address of the jailed environment, and log
307in using the accounts you created previously.
308.Ss "Managing the Jail"
309Normal machine shutdown commands, such as
310.Xr halt 8 ,
311.Xr reboot 8 ,
312and
313.Xr shutdown 8 ,
314cannot be used successfully within the jail.
315To kill all processes in a
316jail, you may log into the jail and, as root, use one of the following
317commands, depending on what you want to accomplish:
318.Bd -literal -offset indent
319kill -TERM -1
320kill -KILL -1
321.Ed
322.Pp
323This will send the
324.Dv SIGTERM
325or
326.Dv SIGKILL
327signals to all processes in the jail from within the jail.
328Depending on
329the intended use of the jail, you may also want to run
330.Pa /etc/rc.shutdown
331from within the jail.
332Currently there is no way to insert new processes
333into a jail, so you must first log into the jail before performing these
334actions.
335.Pp
336To kill processes from outside the jail, you must individually identify the
337PID of each process to be killed.
338The
339.Pa /proc/ Ns Ar pid Ns Pa /status
340file contains, as its last field, the hostname of the jail in which the
341process runs, or
342.Dq Li -
343to indicate that the process is not running within a jail.
344The
345.Xr ps 1
346command also shows a
347.Ql J
348flag for processes in a jail.
349However, the hostname for a jail may be, by
350default, modified from within the jail, so the
351.Pa /proc
352status entry is unreliable by default.
353To disable the setting of the hostname
354from within a jail, set the
355.Va jail.set_hostname_allowed
356sysctl variable in the host environment to 0, which will affect all jails.
357You can have this sysctl set on each boot using
358.Xr sysctl.conf 5 .
359Just add the following line to
360.Pa /etc/sysctl.conf :
361.Pp
362.Dl jail.defaults.set_hostname_allowed=0
363.Pp
364In a future version of
365.Dx ,
366the mechanisms for managing jails may be
367more refined.
368.Ss "Sysctl MIB Entries"
369Certain aspects of the jail containments environment may be modified from
370the host environment using
371.Xr sysctl 8
372MIB variables.
373For each jail there will be the same set of MIB variables as shown below but
374under
375.Va jail.<id>
376which allows control of every jail individually.
377The values of the variables under
378.Va jail.defaults
379will be copied to the per-jail MIB variables upon creation thus serving as
380a kind of system-wide template.
381.Bl -tag -width XXX
382.It Va jail.jailed
383This read-only MIB entry can be used to determine if a process is running
384inside a jail (value is 1) or not (value is 0).
385.It Va jail.defaults.allow_raw_sockets
386This MIB entry determines whether or not prison root is allowed to
387create raw sockets.
388Setting this MIB to 1 allows utilities like
389.Xr ping 8
390and
391.Xr traceroute 8
392to operate inside the prison.
393If this MIB is set, the source IP addresses are enforced to comply
394with the IP address bound to the jail, regardless of whether or not the
395.Dv IP_HDRINCL
396flag has been set on the socket. Because raw sockets can be used to configure
397and interact with various network subsystems, extra caution should be used
398where privileged access to jails is given out to untrusted parties.
399As such, this option is disabled by default.
400.It Va jail.defaults.chflags_allowed
401This MIB entry determines how a privileged user inside a jail will be
402treated by
403.Xr chflags 2 .
404If zero, such users are treated as unprivileged, and are unable to set
405or clear system file flags; if non-zero, such users are treated as
406privileged, and may manipulate system file flags subject to the usual
407constraints on
408.Va kern.securelevel .
409.It Va jail.defaults.set_hostname_allowed
410This MIB entry determines whether or not processes within a jail are
411allowed to change their hostname via
412.Xr hostname 1
413or
414.Xr sethostname 3 .
415In the current jail implementation, the ability to set the hostname from
416within the jail can impact management tools relying on the accuracy of jail
417information in
418.Pa /proc .
419As such, this should be disabled in environments where privileged access to
420jails is given out to untrusted parties.
421.It Va jail.defaults.allow_listen_override
422This feature allows both the host and your jails to overload services on
423the same ports.
424If enabled, the services in the jails will override wildcarded services on
425the host for the jail's IP list.
426As a safety mechanism, any services the host specifically binds to an IP
427will not be overridden.  The host has visibility to all jail IPs but
428jails only have visibility to their specific IPs.
429.It Va jail.defaults.socket_unixiproute_only
430The jail functionality binds IPv4 and IPv6 addresses to each jail, and limits
431access to other network addresses in the IPv4 and IPv6 space that may be available
432in the host environment.
433However, jail is not currently able to limit access to other network
434protocol stacks that have not had jail functionality added to them.
435As such, by default, processes within jails may only access protocols
436in the following domains:
437.Dv PF_LOCAL , PF_INET , PF_INET6 ,
438and
439.Dv PF_ROUTE ,
440permitting them access to
441.Ux
442domain sockets,
443IPv4 and IPv6 addresses, and routing sockets.
444To enable access to other domains, this MIB variable may be set to 0.
445.It Va jail.defaults.sysvipc_allowed
446This MIB entry determines whether or not processes within a jail have access
447to System V IPC primitives.
448In the current jail implementation, System V primitives share a single
449namespace across the host and jail environments, meaning that processes
450within a jail would be able to communicate with (and potentially interfere
451with) processes outside of the jail, and in other jails.
452As such, this functionality is disabled by default, but can be enabled
453by setting this MIB entry to 1.
454.El
455.Sh SEE ALSO
456.Xr newaliases 1 ,
457.Xr ps 1 ,
458.Xr chroot 2 ,
459.Xr jail 2 ,
460.Xr procfs 5 ,
461.Xr rc.conf 5 ,
462.Xr sysctl.conf 5 ,
463.Xr halt 8 ,
464.Xr inetd 8 ,
465.Xr jexec 8 ,
466.Xr jls 8 ,
467.Xr named 8 ,
468.Xr pw 8 ,
469.Xr reboot 8 ,
470.Xr rpcbind 8 ,
471.Xr sendmail 8 ,
472.Xr shutdown 8 ,
473.Xr sysctl 8 ,
474.Xr syslogd 8 ,
475.Xr tzsetup 8
476.Sh HISTORY
477The
478.Nm
479command appeared in
480.Fx 4.0 .
481.Pp
482Support for multiple IPs and IPv6 appeared in
483.Dx
4841.7.
485.Sh AUTHORS
486.An -nosplit
487The jail feature was originally written by
488.An Poul-Henning Kamp
489for R&D Associates
490.Pa http://www.rndassociates.com/
491who contributed it to
492.Fx .
493.Pp
494.An Robert Watson
495wrote the extended documentation, found a few bugs, added
496a few new features, and cleaned up the userland jail environment.
497.Pp
498.An Victor Balada Diaz
499wrote the support for multiple IPs and IPv6. Multiple IPs support
500is based on work done by
501.An Pawel Jakub Dawidek .
502.Pp
503.An Matthew Dillon
504added port overloading to make configuration easier.
505.Sh BUGS
506Jail currently lacks strong management functionality, such as the ability
507to deliver signals to all processes in a jail, and to allow access to
508specific jail information via
509.Xr ps 1
510as opposed to
511.Xr procfs 5 .
512Similarly, it might be a good idea to add an
513address alias flag such that daemons listening on all IPs
514.Pq Dv INADDR_ANY
515will not bind on that address, which would facilitate building a safe
516host environment such that host daemons do not impose on services offered
517from within jails.
518Currently, the simplest answer is to minimize services
519offered on the host, possibly limiting it to services offered from
520.Xr inetd 8
521which is easily configurable.
522