xref: /freebsd/usr.sbin/jail/jail.8 (revision 4b15965daa99044daf184221b7c283bf7f2d7e66)
1.\" Copyright (c) 2000, 2003 Robert N. M. Watson
2.\" Copyright (c) 2008-2012 James Gritton
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.Dd August 7, 2025
27.Dt JAIL 8
28.Os
29.Sh NAME
30.Nm jail
31.Nd "manage system jails"
32.Sh SYNOPSIS
33.Ss From Configuration File
34.Nm
35.Op Fl cm
36.Op Fl Cdqv
37.Op Fl f Ar conf_file
38.Op Fl p Ar limit
39.Op Ar jail
40.Nm
41.Op Fl r
42.Op Fl Cqv
43.Op Fl f Ar conf_file
44.Op Fl p Ar limit
45.Op Cm * | Ar jail ...
46.Ss Without Configuration File
47.Nm
48.Op Fl cm
49.Op Fl dhilqv
50.Op Fl J Ar jid_file
51.Op Fl u Ar username
52.Op Fl U Ar username
53.Ar param Ns = Ns Ar value ...
54.Op Cm command Ns = Ns Ar command ...
55.Nm
56.Op Fl rR
57.Op Fl qv
58.Op Cm * | Ar jail ...
59.Ss Show Parameters
60.Nm
61.Op Fl f Ar conf_file
62.Fl e
63.Ar separator
64.Ss Backward Compatibility
65.Nm
66.Op Fl dhilqv
67.Op Fl J Ar jid_file
68.Op Fl u Ar username
69.Op Fl U Ar username
70.Op Fl n Ar jailname
71.Op Fl s Ar securelevel
72.Ar path hostname ip Ns Op Cm \&, Ns Ar ...
73.Ar command ...
74.Sh DESCRIPTION
75The
76.Nm
77utility creates new jails, or modifies or removes existing jails.
78It can also print a list of configured jails and their parameters.
79A jail
80.Pq or Dq prison
81is specified via parameters on the command line, or in the
82.Xr jail.conf 5
83file.
84.Pp
85At least one of the options
86.Fl c ,
87.Fl e ,
88.Fl m
89or
90.Fl r
91must be specified.
92These options are used alone or in combination to describe the operation to
93perform:
94.Bl -tag -width indent
95.It Fl c
96Create a new jail.
97The jail
98.Va jid
99and
100.Va name
101parameters (if specified on the command line)
102must not refer to an existing jail.
103.It Fl e Ar separator
104Exhibit a list of all configured non-wildcard jails and their parameters.
105No jail creation, modification or removal performed if this option is used.
106The
107.Ar separator
108string is used to separate parameters.
109Use
110.Xr jls 8
111utility to list running jails.
112.It Fl m
113Modify an existing jail.
114One of the
115.Va jid
116or
117.Va name
118parameters must exist and refer to an existing jail.
119Some parameters may not be changed on a running jail.
120.It Fl r
121Remove the
122.Ar jail
123specified by jid or name.
124All jailed processes are killed, and all jails that are
125children of this jail are also
126removed.
127.It Fl rc
128Restart an existing jail.
129The jail is first removed and then re-created, as if
130.Dq Nm Fl r
131and
132.Dq Nm Fl c
133were run in succession.
134.It Fl cm
135Create a jail if it does not exist, or modify the jail if it does exist.
136.It Fl mr
137Modify an existing jail.
138The jail may be restarted if necessary to modify parameters than could
139not otherwise be changed.
140.It Fl cmr
141Create a jail if it doesn't exist, or modify (and possibly restart) the
142jail if it does exist.
143.El
144.Pp
145Other available options are:
146.Bl -tag -width indent
147.It Fl C
148Clean up after an already-removed jail, running commands and operations
149that are typically run following jail removal.
150.It Fl f Ar conf_file
151Use configuration file
152.Ar conf_file
153instead of the default
154.Pa /etc/jail.conf .
155.It Fl h
156Resolve the
157.Va host.hostname
158parameter (or
159.Va hostname )
160and add all IP addresses returned by the resolver
161to the list of addresses for this jail.
162This is equivalent to the
163.Va ip_hostname
164parameter.
165.It Fl i
166Output (only) the jail identifier of the newly created jail(s).
167This implies the
168.Fl q
169option.
170.It Fl J Ar jid_file
171Write a
172.Ar jid_file
173file, containing the parameters used to start the jail.
174.It Fl l
175Run commands in a clean environment.
176This is deprecated and is equivalent to the exec.clean parameter.
177.It Fl n Ar jailname
178Set the jail's name.
179This is deprecated and is equivalent to the
180.Va name
181parameter.
182.It Fl p Ar limit
183Limit the number of commands from
184.Va  exec.*
185that can run simultaneously.
186.It Fl q
187Suppress the message printed whenever a jail is created, modified or removed.
188Only error messages will be printed.
189.It Fl R
190A variation of the
191.Fl r
192option that removes an existing jail without using the configuration file.
193No removal-related parameters for this jail will be used \(em the jail will
194simply be removed.
195.It Fl s Ar securelevel
196Set the
197.Va kern.securelevel
198MIB entry to the specified value inside the newly created jail.
199This is deprecated and is equivalent to the
200.Va securelevel
201parameter.
202.It Fl u Ar username
203The user name from host environment as whom jailed commands should run.
204This is deprecated and is equivalent to the
205.Va exec.jail_user
206and
207.Va exec.system_jail_user
208parameters.
209.It Fl U Ar username
210The user name from the jailed environment as whom jailed commands should run.
211This is deprecated and is equivalent to the
212.Va exec.jail_user
213parameter.
214.It Fl v
215Print a message on every operation, such as running commands and
216mounting filesystems.
217.It Fl d
218This is deprecated and is equivalent to the
219.Va allow.dying
220parameter, which is also deprecated.
221It used to allow making changes to a
222.Va dying
223jail.
224Now such jails are always replaced when a new jail is created with the same
225.Va jid
226or
227.Va name .
228.El
229.Pp
230If no arguments are given after the options, the operation (except
231remove) will be performed on all jails specified in the
232.Xr jail.conf 5
233file.
234A single argument of a jail name will operate only on the specified jail.
235The
236.Fl r
237and
238.Fl R
239options can also remove running jails that aren't in the
240.Xr jail.conf 5
241file, specified by name or jid.
242.Pp
243An argument of
244.Dq *
245is a wildcard that will operate on all jails, regardless of whether
246they appear in
247.Xr jail.conf 5 ;
248this is the surest way for
249.Fl r
250to remove all jails.
251If hierarchical jails exist, a partial-matching wildcard definition may
252be specified.
253For example, an argument of
254.Dq foo.*
255would apply to jails with names like
256.Dq foo.bar
257and
258.Dq foo.bar.baz .
259.Pp
260A jail may also be specified via parameters directly on the command line in
261.Dq name=value
262form, ignoring the contents of
263.Xr jail.conf 5 .
264For backward compatibility, the command line may also have four fixed
265parameters, without names:
266.Ar path ,
267.Ar hostname ,
268.Ar ip ,
269and
270.Ar command .
271.Ss Jail Parameters
272Parameters in the
273.Xr jail.conf 5
274file, or on the command line, are generally of the form
275.Dq name=value .
276Some parameters are boolean, and do not have a value but are set by the
277name alone with or without a
278.Dq no
279prefix, e.g.
280.Va persist
281or
282.Va nopersist .
283They can also be given the values
284.Dq true
285and
286.Dq false .
287Other parameters may have more than one value, specified as a
288comma-separated list, or with
289.Dq +=
290in the configuration file (see
291.Xr jail.conf 5
292for details).
293List-based parameters may also be specified multiple times on the command
294line, i.e.,
295.Dq name=value1,value2
296and
297.Dq name=value1 name=value2
298are equivalent for such parameters.
299.Pp
300The
301.Nm
302utility recognizes two classes of parameters.
303There are the true jail
304parameters that are passed to the kernel when the jail is created,
305which can be seen with
306.Xr jls 8 ,
307and can (usually) be changed with
308.Dq Nm Fl m .
309Then there are pseudo-parameters that are only used by
310.Nm
311itself.
312.Pp
313Jails have a set of core parameters, and kernel modules can add their own
314jail parameters.
315The current set of available parameters can be retrieved via
316.Dq Nm sysctl Fl d Va security.jail.param .
317Any parameters not set will be given default values, often based on the
318current environment.
319The core parameters are:
320.Bl -tag -width indent
321.It Va jid
322The jail identifier.
323This will be assigned automatically to a new jail (or can be explicitly
324set), and can be used to identify the jail for later modification, or
325for such commands as
326.Xr jls 8
327or
328.Xr jexec 8 .
329.It Va name
330The jail name.
331This is an arbitrary string that identifies a jail (except it may not
332contain a
333.Sq \&. ) .
334Like the
335.Va jid ,
336it can be passed to later
337.Nm
338commands, or to
339.Xr jls 8
340or
341.Xr jexec 8 .
342If no
343.Va name
344is supplied, a default is assumed that is the same as the
345.Va jid .
346The
347.Va name
348parameter is implied by the
349.Xr jail.conf 5
350file format, and need not be explicitly set when using the configuration
351file.
352.It Va path
353The directory which is to be the root of the jail.
354Any commands run inside the jail, either by
355.Nm
356or from
357.Xr jexec 8 ,
358are run from this directory.
359.It Va ip4.addr
360A list of IPv4 addresses assigned to the jail.
361If this is set, the jail is restricted to using only these addresses.
362Any attempts to use other addresses fail, and attempts to use wildcard
363addresses silently use the jailed address instead.
364For IPv4 the first address given will be used as the source address
365when source address selection on unbound sockets cannot find a better
366match.
367It is only possible to start multiple jails with the same IP address
368if none of the jails has more than this single overlapping IP address
369assigned to itself.
370.It Va ip4.saddrsel
371A boolean option to change the formerly mentioned behaviour and disable
372IPv4 source address selection for the jail in favour of the primary
373IPv4 address of the jail.
374Source address selection is enabled by default for all jails and the
375.Va ip4.nosaddrsel
376setting of a parent jail is not inherited for any child jails.
377.It Va ip4
378Control the availability of IPv4 addresses.
379Possible values are
380.Dq inherit
381to allow unrestricted access to all system addresses,
382.Dq new
383to restrict addresses via
384.Va ip4.addr ,
385and
386.Dq disable
387to stop the jail from using IPv4 entirely.
388Setting the
389.Va ip4.addr
390parameter implies a value of
391.Dq new .
392.It Va ip6.addr , Va ip6.saddrsel , Va ip6
393A set of IPv6 options for the jail, the counterparts to
394.Va ip4.addr ,
395.Va ip4.saddrsel
396and
397.Va ip4
398above.
399.It Va vnet
400Create the jail with its own virtual network stack,
401with its own network interfaces, addresses, routing table, etc.
402The kernel must have been compiled with the
403.Sy VIMAGE option
404for this to be available.
405Possible values are
406.Dq inherit
407to use the system network stack, possibly with restricted IP addresses,
408and
409.Dq new
410to create a new network stack.
411.It Va host.hostname
412The hostname of the jail.
413Other similar parameters are
414.Va host.domainname ,
415.Va host.hostuuid
416and
417.Va host.hostid .
418.It Va host
419Set the origin of hostname and related information.
420Possible values are
421.Dq inherit
422to use the system information and
423.Dq new
424for the jail to use the information from the above fields.
425Setting any of the above fields implies a value of
426.Dq new .
427.It Va securelevel
428The value of the jail's
429.Va kern.securelevel
430sysctl.
431A jail never has a lower securelevel than its parent system, but by
432setting this parameter it may have a higher one.
433If the system securelevel is changed, any jail securelevels will be at
434least as secure.
435.It Va devfs_ruleset
436The number of the devfs ruleset that is enforced for mounting devfs in
437this jail.
438A value of zero (default) means no ruleset is enforced.
439Descendant jails inherit the parent jail's devfs ruleset enforcement.
440Mounting devfs inside a jail is possible only if the
441.Va allow.mount
442and
443.Va allow.mount.devfs
444permissions are effective and
445.Va enforce_statfs
446is set to a value lower than 2.
447Devfs rules and rulesets cannot be viewed or modified from inside a jail.
448.Pp
449NOTE: It is important that only appropriate device nodes in devfs be
450exposed to a jail; access to disk devices in the jail may permit processes
451in the jail to bypass the jail sandboxing by modifying files outside of
452the jail.
453See
454.Xr devfs 8
455for information on how to use devfs rules to limit access to entries
456in the per-jail devfs.
457A simple devfs ruleset for jails is available as ruleset #4 in
458.Pa /etc/defaults/devfs.rules .
459.It Va children.max
460The number of child jails allowed to be created by this jail (or by
461other jails under this jail).
462This limit is zero by default, indicating the jail is not allowed to
463create child jails.
464See the
465.Sx "Hierarchical Jails"
466section for more information.
467.It Va children.cur
468The number of descendants of this jail, including its own child jails
469and any jails created under them.
470.It Va enforce_statfs
471This determines what information processes in a jail are able to get
472about mount points.
473It affects the behaviour of the following syscalls:
474.Xr statfs 2 ,
475.Xr fstatfs 2 ,
476.Xr getfsstat 2 ,
477and
478.Xr fhstatfs 2
479(as well as similar compatibility syscalls).
480When set to 0, all mount points are available without any restrictions.
481When set to 1, only mount points below the jail's chroot directory are
482visible.
483In addition to that, the path to the jail's chroot directory is removed
484from the front of their pathnames.
485When set to 2 (default), above syscalls can operate only on a mount-point
486where the jail's chroot directory is located.
487.It Va persist
488Setting this boolean parameter allows a jail to exist without any
489processes.
490Normally, a command is run as part of jail creation, and then the jail
491is destroyed as its last process exits.
492A new jail must have either the
493.Va persist
494parameter or
495.Va exec.start
496or
497.Va command
498pseudo-parameter set.
499.It Va cpuset.id
500The ID of the cpuset associated with this jail (read-only).
501.It Va dying
502This is true if the jail is in the process of shutting down (read-only).
503.It Va parent
504The
505.Va jid
506of the parent of this jail, or zero if this is a top-level jail
507(read-only).
508.It Va osrelease
509The string for the jail's
510.Va kern.osrelease
511sysctl and uname -r.
512.It Va osreldate
513The number for the jail's
514.Va kern.osreldate
515and uname -K.
516.It Va meta , Va env
517An arbitrary string associated with the jail.
518Its maximum buffer size is controlled by the global
519.Va security.jail.meta_maxbufsize
520sysctl, which can only be adjusted by the non-jailed root user.
521While the
522.Va meta
523is hidden from the jail, the
524.Va env
525is readable through the
526.Va security.jail.env
527sysctl.
528.Pp
529Each buffer can be treated as a set of key=value\\n strings.
530In order to add or replace a specific key the
531.Va meta.keyname=value
532or
533.Va env.keyname=value
534parameter notations must be used.
535While
536.Va meta.keyname=
537or
538.Va env.keyname=
539reset the value to an empty string, the
540.Va meta.keyname
541or
542.Va env.keyname
543notations, without the equal sign, remove the given key.
544Respectively, the same
545.Va meta.keyname
546or
547.Va env.keyname
548notations are used to query a specific key while reading jail parameters
549using such commands as
550.Xr jls 8 .
551Multiple keys can be queried or modified with a single command.
552.It Va allow.*
553Some restrictions of the jail environment may be set on a per-jail
554basis.
555With the exception of
556.Va allow.set_hostname
557and
558.Va allow.reserved_ports ,
559these boolean parameters are off by default.
560.Bl -tag -width indent
561.It Va allow.set_hostname
562The jail's hostname may be changed via
563.Xr hostname 1
564or
565.Xr sethostname 3 .
566.It Va allow.sysvipc
567A process within the jail has access to System V IPC primitives.
568This is deprecated in favor of the per-module parameters (see below).
569When this parameter is set, it is equivalent to setting
570.Va sysvmsg ,
571.Va sysvsem ,
572and
573.Va sysvshm
574all to
575.Dq inherit .
576.It Va allow.raw_sockets
577The jail root is allowed to create raw sockets.
578Setting this parameter allows utilities like
579.Xr ping 8
580and
581.Xr traceroute 8
582to operate inside the jail.
583If this is set, the source IP addresses are enforced to comply
584with the IP address bound to the jail, regardless of whether or not
585the
586.Dv IP_HDRINCL
587flag has been set on the socket.
588Since raw sockets can be used to configure and interact with various
589network subsystems, extra caution should be used where privileged access
590to jails is given out to untrusted parties.
591.It Va allow.chflags
592Normally, privileged users inside a jail are treated as unprivileged by
593.Xr chflags 2 .
594When this parameter is set, such users are treated as privileged, and
595may manipulate system file flags subject to the usual constraints on
596.Va kern.securelevel .
597.It Va allow.mount
598privileged users inside the jail will be able to mount and unmount file
599system types marked as jail-friendly.
600The
601.Xr lsvfs 1
602command can be used to find file system types available for mount from
603within a jail.
604This permission is effective only if
605.Va enforce_statfs
606is set to a value lower than 2.
607.It Va allow.mount.devfs
608privileged users inside the jail will be able to mount and unmount the
609devfs file system.
610This permission is effective only together with
611.Va allow.mount
612and only when
613.Va enforce_statfs
614is set to a value lower than 2.
615The devfs ruleset should be restricted from the default by using the
616.Va devfs_ruleset
617option.
618.It Va allow.quotas
619The jail root may administer quotas on the jail's filesystem(s).
620This includes filesystems that the jail may share with other jails or
621with non-jailed parts of the system.
622.It Va allow.read_msgbuf
623Jailed users may read the kernel message buffer.
624If the
625.Va security.bsd.unprivileged_read_msgbuf
626MIB entry is zero, this will be restricted to the root user.
627.It Va allow.socket_af
628Sockets within a jail are normally restricted to IPv4, IPv6, local
629(UNIX), and route.
630This allows access to other protocol stacks that have not had jail
631functionality added to them.
632.It Va allow.mlock
633Locking or unlocking physical pages in memory are normally not available
634within a jail.
635When this parameter is set, users may
636.Xr mlock 2
637or
638.Xr munlock 2
639memory subject to
640.Va security.bsd.unprivileged_mlock
641and resource limits.
642.It Va allow.nfsd
643The
644.Xr mountd 8 ,
645.Xr nfsd 8 ,
646.Xr nfsuserd 8 ,
647.Xr gssd 8
648and
649.Xr rpc.tlsservd 8
650daemons are permitted to run inside a properly configured vnet-enabled jail.
651The jail's root must be a file system mount point and
652.Va enforce_statfs
653must not be set to 0, so that
654.Xr mountd 8
655can export file systems visible within the jail.
656.Va enforce_statfs
657must be set to 1 if file systems mounted under the
658jail's file system need to be exported by
659.Xr mount 8 .
660For exporting only the jail's file system, a setting of 2
661is sufficient.
662If the kernel configuration does not include the
663.Sy NFSD
664option,
665.Pa nfsd.ko
666must be loaded outside of the jails.
667This is normally done by adding
668.Dq nfsd
669to
670.Va kld_list
671in the
672.Xr rc.conf 5
673file outside of the jails.
674Similarily, if the
675.Xr gssd 8
676is to be run in a jail, either the kernel
677.Sy KGSSAPI
678option needs to be specified or
679.Dq kgssapi
680and
681.Dq kgssapi_krb5
682need to be in
683.Va kld_list
684in the
685.Xr rc.conf 5
686file outside of the jails.
687.It Va allow.reserved_ports
688The jail root may bind to ports lower than 1024.
689.It Va allow.unprivileged_parent_tampering
690Unprivileged processes in the jail's parent may tamper with processes of the
691same UID in the jail.
692This includes the ability to signal, debug, and
693.Xr cpuset 1
694processes that belong to the jail.
695.It Va allow.unprivileged_proc_debug
696Unprivileged processes in the jail may use debugging facilities.
697.It Va allow.suser
698The value of the jail's
699.Va security.bsd.suser_enabled
700sysctl.
701The super-user will be disabled automatically if its parent system has it
702disabled.
703The super-user is enabled by default.
704.It Va allow.extattr
705Allow privileged process in the jail to manipulate filesystem extended
706attributes in the system namespace.
707.It Va allow.adjtime
708Allow privileged process in the jail to slowly adjusting global operating system
709time.
710For example through utilities like
711.Xr ntpd 8 .
712.It Va allow.settime
713Allow privileged process in the jail to set global operating system data
714and time.
715For example through utilities like
716.Xr date 1 .
717This permission includes also
718.Va allow.adjtime .
719.It Va allow.routing
720Allow privileged process in the non-VNET jail to modify the system routing
721table.
722.El
723.El
724.Pp
725Kernel modules may add their own parameters, which only exist when the
726module is loaded.
727These are typically headed under a parameter named after the module,
728with values of
729.Dq inherit
730to give the jail full use of the module,
731.Dq new
732to encapsulate the jail in some module-specific way,
733and
734.Dq disable
735to make the module unavailable to the jail.
736There also may be other parameters to define jail behavior within the module.
737Module-specific parameters include:
738.Bl -tag -width indent
739.It Va allow.mount.fdescfs
740privileged users inside the jail will be able to mount and unmount the
741fdescfs file system.
742This permission is effective only together with
743.Va allow.mount
744and only when
745.Va enforce_statfs
746is set to a value lower than 2.
747.It Va allow.mount.fusefs
748privileged users inside the jail will be able to mount and unmount
749fuse-based file systems.
750This permission is effective only together with
751.Va allow.mount
752and only when
753.Va enforce_statfs
754is set to a value lower than 2.
755.It Va allow.mount.nullfs
756privileged users inside the jail will be able to mount and unmount the
757nullfs file system.
758This permission is effective only together with
759.Va allow.mount
760and only when
761.Va enforce_statfs
762is set to a value lower than 2.
763.It Va allow.mount.procfs
764privileged users inside the jail will be able to mount and unmount the
765procfs file system.
766This permission is effective only together with
767.Va allow.mount
768and only when
769.Va enforce_statfs
770is set to a value lower than 2.
771.It Va allow.mount.linprocfs
772privileged users inside the jail will be able to mount and unmount the
773linprocfs file system.
774This permission is effective only together with
775.Va allow.mount
776and only when
777.Va enforce_statfs
778is set to a value lower than 2.
779.It Va allow.mount.linsysfs
780privileged users inside the jail will be able to mount and unmount the
781linsysfs file system.
782This permission is effective only together with
783.Va allow.mount
784and only when
785.Va enforce_statfs
786is set to a value lower than 2.
787.It Va allow.mount.tmpfs
788privileged users inside the jail will be able to mount and unmount the
789tmpfs file system.
790This permission is effective only together with
791.Va allow.mount
792and only when
793.Va enforce_statfs
794is set to a value lower than 2.
795.It Va allow.mount.zfs
796privileged users inside the jail will be able to mount and unmount the
797ZFS file system.
798This permission is effective only together with
799.Va allow.mount
800and only when
801.Va enforce_statfs
802is set to a value lower than 2.
803See
804.Xr zfs-jail 8
805for information on how to configure the ZFS filesystem to operate from
806within a jail.
807.It Va allow.vmm
808The jail may access
809.Xr vmm 4 .
810This flag is only available when the
811.Xr vmm 4
812kernel module is loaded.
813.It Va linux
814Determine how a jail's Linux emulation environment appears.
815A value of
816.Dq inherit
817will keep the same environment, and
818.Dq new
819will give the jail its own environment (still originally inherited when
820the jail is created).
821.It Va linux.osname , linux.osrelease , linux.oss_version
822The Linux OS name, OS release, and OSS version associated with this jail.
823.It Va sysvmsg
824Allow access to SYSV IPC message primitives.
825If set to
826.Dq inherit ,
827all IPC objects on the system are visible to this jail, whether they
828were created by the jail itself, the base system, or other jails.
829If set to
830.Dq new ,
831the jail will have its own key namespace, and can only see the objects
832that it has created;
833the system (or parent jail) has access to the jail's objects, but not to
834its keys.
835If set to
836.Dq disable ,
837the jail cannot perform any sysvmsg-related system calls.
838.It Va sysvsem, sysvshm
839Allow access to SYSV IPC semaphore and shared memory primitives, in the
840same manner as
841.Va sysvmsg .
842.It Va zfs.mount_snapshot
843When set to 1, jailed users may access the contents of ZFS snapshots
844under the filesystem's
845.Pa .zfs
846directory.
847If
848.Va allow.mount.zfs
849is set, the snapshots may also be mounted.
850.El
851.Pp
852There are pseudo-parameters that are not passed to the kernel, but are
853used by
854.Nm
855to set up the jail environment, often by running specified commands
856when jails are created or removed.
857The
858.Va exec.*
859command parameters are
860.Xr sh 1
861command lines that are run in either the system or jail environment.
862They may be given multiple values, which would run the specified
863commands in sequence.
864All commands must succeed (return a zero exit status), or the jail will
865not be created or removed, as appropriate.
866.Pp
867The following variables are added to the environment:
868.Bl -tag -width indent -offset indent
869.It Ev JID
870The
871.Va jid ,
872or jail identifier.
873.It Ev JNAME
874The
875.Va name
876of the jail.
877.It Ev JPATH
878The
879.Va path
880of the jail.
881.El
882.Pp
883The pseudo-parameters are:
884.Bl -tag -width indent
885.It Va exec.prepare
886Command(s) to run in the system environment to prepare a jail for creation.
887These commands are executed before assigning IP addresses and mounting
888filesystems, so they may be used to create a new jail filesystem if it does
889not already exist.
890.It Va exec.prestart
891Command(s) to run in the system environment before a jail is created.
892.It Va exec.created
893Command(s) to run in the system environment right after a jail has been
894created, but before commands (or services) get executed in the jail.
895.It Va exec.start
896Command(s) to run in the jail environment when a jail is created.
897A typical command to run is
898.Dq sh /etc/rc .
899.It Va command
900A synonym for
901.Va exec.start
902for use when specifying a jail directly on the command line.
903Unlike other parameters whose value is a single string,
904.Va command
905uses the remainder of the
906.Nm
907command line as its own arguments.
908.It Va exec.poststart
909Command(s) to run in the system environment after a jail is created,
910and after any
911.Va exec.start
912commands have completed.
913.It Va exec.prestop
914Command(s) to run in the system environment before a jail is removed.
915.It Va exec.stop
916Command(s) to run in the jail environment before a jail is removed,
917and after any
918.Va exec.prestop
919commands have completed.
920A typical command to run is
921.Dq sh /etc/rc.shutdown jail .
922.It Va exec.poststop
923Command(s) to run in the system environment after a jail is removed.
924.It Va exec.release
925Command(s) to run in the system environment after all other actions are done.
926These commands are executed after unmounting filesystems and removing IP
927addresses, so they may be used to remove a jail filesystem if it is no longer
928needed.
929.It Va exec.clean
930Run commands in a clean environment.
931The environment is discarded except for
932.Ev HOME , SHELL , TERM
933and
934.Ev USER .
935.Ev HOME
936and
937.Ev SHELL
938are set to the target login's default values.
939.Ev USER
940is set to the target login.
941.Ev TERM
942is imported from the current environment.
943.Ev PATH
944is set to "/bin:/usr/bin".
945The environment variables from the login class capability database for the
946target login are also set.
947.Ev JID ,
948.Ev JNAME ,
949and
950.Ev JPATH
951are not set.
952If a user is specified (as with
953.Va exec.jail_user ) ,
954commands are run from that (possibly jailed) user's directory.
955.It Va exec.jail_user
956The user to run commands as, when running in the jail environment.
957The default is to run the commands as the current user.
958.It Va exec.system_jail_user
959This boolean option looks for the
960.Va exec.jail_user
961in the system
962.Xr passwd 5
963file, instead of in the jail's file.
964.It Va exec.system_user
965The user to run commands as, when running in the system environment.
966The default is to run the commands as the current user.
967.It Va exec.timeout
968The maximum amount of time to wait for a command to complete, in
969seconds.
970If a command is still running after this timeout has passed,
971the jail will not be created or removed, as appropriate.
972.It Va exec.consolelog
973A file to direct command output (stdout and stderr) to.
974.It Va exec.fib
975The FIB (routing table) to set when running commands inside the jail.
976.It Va stop.timeout
977The maximum amount of time to wait for a jail's processes to exit
978after sending them a
979.Dv SIGTERM
980signal (which happens after the
981.Va exec.stop
982commands have completed).
983After this many seconds have passed, the jail will be removed, which
984will kill any remaining processes.
985If this is set to zero, no
986.Dv SIGTERM
987is sent and the jail is immediately removed.
988The default is 10 seconds.
989.It Va interface
990A network interface to add the jail's IP addresses
991.Va ( ip4.addr
992and
993.Va ip6.addr )
994to.
995An alias for each address will be added to the interface before the
996jail is created, and will be removed from the interface after the
997jail is removed.
998.It Va ip4.addr
999In addition to the IP addresses that are passed to the kernel, an
1000interface, netmask and additional parameters (as supported by
1001.Xr ifconfig 8 Ns )
1002may also be specified, in the form
1003.Dq Ar interface Ns | Ns Ar ip-address Ns / Ns Ar netmask param ... .
1004If an interface is given before the IP address, an alias for the address
1005will be added to that interface, as it is with the
1006.Va interface
1007parameter.
1008If a netmask in either dotted-quad or CIDR form is given
1009after an IP address, it will be used when adding the IP alias.
1010If additional parameters are specified then they will also be used when
1011adding the IP alias.
1012.It Va ip6.addr
1013In addition to the IP addresses that are passed to the kernel,
1014an interface, prefix and additional parameters (as supported by
1015.Xr ifconfig 8 Ns )
1016may also be specified, in the form
1017.Dq Ar interface Ns | Ns Ar ip-address Ns / Ns Ar prefix param ... .
1018.It Va vnet.interface
1019A list of network interfaces to give to a vnet-enabled jail after is it created.
1020The interfaces will automatically be released when the jail is removed.
1021.It Va zfs.dataset
1022A list of ZFS datasets to be attached to the jail.
1023This requires
1024.Va allow.mount.zfs
1025to be set.
1026See
1027.Xr zfs-jail 8
1028for information on how to configure a ZFS dataset to be operated from
1029within a jail.
1030.It Va ip_hostname
1031Resolve the
1032.Va host.hostname
1033parameter and add all IP addresses returned by the resolver
1034to the list of addresses
1035.Po Va ip4.addr
1036or
1037.Va ip6.addr Pc
1038for this jail.
1039This may affect default address selection for outgoing IPv4 connections
1040from jails.
1041The address first returned by the resolver for each address family
1042will be used as the primary address.
1043.It Va mount
1044A filesystem to mount before creating the jail (and to unmount after
1045removing it), given as a single
1046.Xr fstab 5
1047line.
1048.It Va mount.fstab
1049An
1050.Xr fstab 5
1051format file containing filesystems to mount before creating a jail.
1052.It Va mount.devfs
1053Mount a
1054.Xr devfs 4
1055filesystem on the chrooted
1056.Pa /dev
1057directory, and apply the ruleset in the
1058.Va devfs_ruleset
1059parameter (or a default of ruleset 4: devfsrules_jail)
1060to restrict the devices visible inside the jail.
1061.It Va mount.fdescfs
1062Mount a
1063.Xr fdescfs 4
1064filesystem on the chrooted
1065.Pa /dev/fd
1066directory.
1067.It Va mount.procfs
1068Mount a
1069.Xr procfs 4
1070filesystem on the chrooted
1071.Pa /proc
1072directory.
1073.It Va allow.dying
1074This is deprecated and has no effect.
1075It used to allow making changes to a
1076.Va dying
1077jail.
1078Now such jails are always replaced when a new jail is created with the same
1079.Va jid
1080or
1081.Va name .
1082.It Va depend
1083Specify a jail (or jails) that this jail depends on.
1084When this jail is to be created, any jail(s) it depends on must already exist.
1085If not, they will be created automatically, up to the completion of the last
1086.Va exec.poststart
1087command, before any action will taken to create this jail.
1088When jails are removed the opposite is true:
1089this jail will be removed, up to the last
1090.Va exec.poststop
1091command, before any jail(s) it depends on are stopped.
1092.El
1093.Sh EXAMPLES
1094Jails are typically set up using one of two philosophies: either to
1095constrain a specific application (possibly running with privilege), or
1096to create a
1097.Dq "virtual system image"
1098running a variety of daemons and services.
1099In both cases, a fairly complete file system install of
1100.Fx
1101is
1102required, so as to provide the necessary command line tools, daemons,
1103libraries, application configuration files, etc.
1104However, for a virtual server configuration, a fair amount of
1105additional work is required so as to replace the
1106.Dq boot
1107process.
1108This manual page documents the configuration steps necessary to support
1109either of these steps, although the configuration steps may need to be
1110refined based on local requirements.
1111.Ss "Setting up a Jail Directory Tree"
1112To set up a jail directory tree containing an entire
1113.Fx
1114distribution, the following
1115.Xr sh 1
1116command script can be used:
1117.Bd -literal -offset indent
1118D=/here/is/the/jail
1119cd /usr/src
1120mkdir -p $D
1121make world DESTDIR=$D
1122make distribution DESTDIR=$D
1123.Ed
1124.Pp
1125In many cases this example would put far more in the jail than needed.
1126In the other extreme case a jail might contain only one file:
1127the executable to be run in the jail.
1128.Pp
1129We recommend experimentation, and caution that it is a lot easier to
1130start with a
1131.Dq fat
1132jail and remove things until it stops working,
1133than it is to start with a
1134.Dq thin
1135jail and add things until it works.
1136.Ss "Setting Up a Jail"
1137Do what was described in
1138.Sx "Setting Up a Jail Directory Tree"
1139to build the jail directory tree.
1140For the sake of this example, we will
1141assume you built it in
1142.Pa /data/jail/testjail ,
1143for a jail named
1144.Dq testjail .
1145Substitute below as needed with your
1146own directory, IP address, and hostname.
1147.Ss "Setting up the Host Environment"
1148First, set up the real system's environment to be
1149.Dq jail-friendly .
1150For consistency, we will refer to the parent box as the
1151.Dq "host environment" ,
1152and to the jailed virtual machine as the
1153.Dq "jail environment" .
1154Since jails are implemented using IP aliases, one of the first things to do
1155is to disable IP services on the host system that listen on all local
1156IP addresses for a service.
1157If a network service is present in the host environment that binds all
1158available IP addresses rather than specific IP addresses, it may service
1159requests sent to jail IP addresses if the jail did not bind the port.
1160This means changing
1161.Xr inetd 8
1162to only listen on the
1163appropriate IP address, and so forth.
1164Add the following to
1165.Pa /etc/rc.conf
1166in the host environment:
1167.Bd -literal -offset indent
1168sendmail_enable="NO"
1169inetd_flags="-wW -a 192.0.2.23"
1170rpcbind_enable="NO"
1171.Ed
1172.Pp
1173.Li 192.0.2.23
1174is the native IP address for the host system, in this example.
1175Daemons that run out of
1176.Xr inetd 8
1177can be easily configured to use only the specified host IP address.
1178Other daemons
1179will need to be manually configured \(em for some this is possible through
1180.Xr rc.conf 5
1181flags entries; for others it is necessary to modify per-application
1182configuration files, or to recompile the application.
1183The following frequently deployed services must have their individual
1184configuration files modified to limit the application to listening
1185to a specific IP address:
1186.Pp
1187To configure
1188.Xr sshd 8 ,
1189it is necessary to modify
1190.Pa /etc/ssh/sshd_config .
1191.Pp
1192To configure
1193.Xr sendmail 8 ,
1194it is necessary to modify
1195.Pa /etc/mail/sendmail.cf .
1196.Pp
1197In addition, a number of services must be recompiled in order to run
1198them in the host environment.
1199This includes most applications providing services using
1200.Xr rpc 3 ,
1201such as
1202.Xr rpcbind 8 ,
1203.Xr nfsd 8 ,
1204and
1205.Xr mountd 8 .
1206In general, applications for which it is not possible to specify which
1207IP address to bind should not be run in the host environment unless they
1208should also service requests sent to jail IP addresses.
1209Attempting to serve
1210NFS from the host environment may also cause confusion, and cannot be
1211easily reconfigured to use only specific IPs, as some NFS services are
1212hosted directly from the kernel.
1213Any third-party network software running
1214in the host environment should also be checked and configured so that it
1215does not bind all IP addresses, which would result in those services also
1216appearing to be offered by the jail environments.
1217.Pp
1218Once
1219these daemons have been disabled or fixed in the host environment, it is
1220best to reboot so that all daemons are in a known state, to reduce the
1221potential for confusion later (such as finding that when you send mail
1222to a jail, and its sendmail is down, the mail is delivered to the host,
1223etc.).
1224.Ss "Configuring the Jail"
1225Start any jail for the first time without configuring the network
1226interface so that you can clean it up a little and set up accounts.
1227As
1228with any machine (virtual or not), you will need to set a root password, time
1229zone, etc.
1230Some of these steps apply only if you intend to run a full virtual server
1231inside the jail; others apply both for constraining a particular application
1232or for running a virtual server.
1233.Pp
1234Start a shell in the jail:
1235.Bd -literal -offset indent
1236jail -c path=/data/jail/testjail mount.devfs \\
1237	host.hostname=testhostname ip4.addr=192.0.2.100 \\
1238	command=/bin/sh
1239.Ed
1240.Pp
1241Assuming no errors, you will end up with a shell prompt within the jail.
1242You can now run
1243.Xr bsdconfig 8
1244and do the post-install configuration to set various configuration options,
1245or perform these actions manually by editing
1246.Pa /etc/rc.conf ,
1247etc.
1248.Pp
1249.Bl -bullet -offset indent -compact
1250.It
1251Configure
1252.Pa /etc/resolv.conf
1253so that name resolution within the jail will work correctly.
1254.It
1255Run
1256.Xr newaliases 1
1257to quell
1258.Xr sendmail 8
1259warnings.
1260.It
1261Set a root password, probably different from the real host system.
1262.It
1263Set the timezone.
1264.It
1265Add accounts for users in the jail environment.
1266.It
1267Install any packages the environment requires.
1268.El
1269.Pp
1270You may also want to perform any package-specific configuration (web servers,
1271SSH servers, etc), patch up
1272.Pa /etc/syslog.conf
1273so it logs as you would like, etc.
1274If you are not using a virtual server, you may wish to modify
1275.Xr syslogd 8
1276in the host environment to listen on the syslog socket in the jail
1277environment; in this example, the syslog socket would be stored in
1278.Pa /data/jail/testjail/var/run/log .
1279.Pp
1280Exit from the shell, and the jail will be shut down.
1281.Ss "Starting the Jail"
1282You are now ready to restart the jail and bring up the environment with
1283all of its daemons and other programs.
1284Create an entry for the jail in
1285.Pa /etc/jail.conf :
1286.Bd -literal -offset indent
1287testjail {
1288	path = /tmp/jail/testjail;
1289	mount.devfs;
1290	host.hostname = testhostname;
1291	ip4.addr = 192.0.2.100;
1292	interface = em0;
1293	exec.start = "/bin/sh /etc/rc";
1294	exec.stop = "/bin/sh /etc/rc.shutdown jail";
1295}
1296.Ed
1297.Pp
1298To start a virtual server environment,
1299.Pa /etc/rc
1300is run to launch various daemons and services, and
1301.Pa /etc/rc.shutdown
1302is run to shut them down when the jail is removed.
1303If you are running a single application in the jail,
1304substitute the command used to start the application for
1305.Dq /bin/sh /etc/rc ;
1306there may be some script available to cleanly shut down the application,
1307or it may be sufficient to go without a stop command, and have
1308.Nm
1309send
1310.Dv SIGTERM
1311to the application.
1312.Pp
1313Start the jail by running:
1314.Bd -literal -offset indent
1315jail -c testjail
1316.Ed
1317.Pp
1318A few warnings may be produced; however, it should all work properly.
1319You should be able to see
1320.Xr inetd 8 ,
1321.Xr syslogd 8 ,
1322and other processes running within the jail using
1323.Xr ps 1 ,
1324with the
1325.Ql J
1326flag appearing beside jailed processes.
1327To see an active list of jails, use
1328.Xr jls 8 .
1329If
1330.Xr sshd 8
1331is enabled in the jail environment, you should be able to
1332.Xr ssh 1
1333to the hostname or IP address of the jailed environment, and log
1334in using the accounts you created previously.
1335.Pp
1336It is possible to have jails started at boot time.
1337Please refer to the
1338.Dq jail_*
1339variables in
1340.Xr rc.conf 5
1341for more information.
1342.Ss "Managing the Jail"
1343Normal machine shutdown commands, such as
1344.Xr halt 8 ,
1345.Xr reboot 8 ,
1346and
1347.Xr shutdown 8 ,
1348cannot be used successfully within the jail.
1349To kill all processes from within a jail, you may use one of the
1350following commands, depending on what you want to accomplish:
1351.Bd -literal -offset indent
1352kill -TERM -1
1353kill -KILL -1
1354.Ed
1355.Pp
1356This will send the
1357.Dv SIGTERM
1358or
1359.Dv SIGKILL
1360signals to all processes in the jail \(em be careful not to run this from
1361the host environment!
1362Once all of the jail's processes have died, unless the jail was created
1363with the
1364.Va persist
1365parameter, the jail will be removed.
1366Depending on
1367the intended use of the jail, you may also want to run
1368.Pa /etc/rc.shutdown
1369from within the jail.
1370.Pp
1371To shut down the jail from the outside, simply remove it with:
1372.Bd -literal -offset indent
1373jail -r
1374.Ed
1375.Pp
1376which will run any commands specified by
1377.Va exec.stop ,
1378and then send
1379.Dv SIGTERM
1380and eventually
1381.Dv SIGKILL
1382to any remaining jailed processes.
1383.Pp
1384The
1385.Pa /proc/ Ns Ar pid Ns Pa /status
1386file contains, as its last field, the name of the jail in which the
1387process runs, or
1388.Dq Li -
1389to indicate that the process is not running within a jail.
1390The
1391.Xr ps 1
1392command also shows a
1393.Ql J
1394flag for processes in a jail.
1395.Pp
1396You can also list/kill processes based on their jail ID.
1397To show processes and their jail ID, use the following command:
1398.Pp
1399.Dl "ps ax -o pid,jid,args"
1400.Pp
1401To show and then kill processes in jail number 3 use the following commands:
1402.Bd -literal -offset indent
1403pgrep -lfj 3
1404pkill -j 3
1405.Ed
1406or:
1407.Pp
1408.Dl "killall -j 3"
1409.Ss "Jails and File Systems"
1410It is not possible to
1411.Xr mount 8
1412or
1413.Xr umount 8
1414any file system inside a jail unless the file system is marked
1415jail-friendly, the jail's
1416.Va allow.mount
1417parameter is set, and the jail's
1418.Va enforce_statfs
1419parameter is lower than 2.
1420.Pp
1421Multiple jails sharing the same file system can influence each other.
1422For example, a user in one jail can fill the file system,
1423leaving no space for processes in the other jail.
1424Trying to use
1425.Xr quota 1
1426to prevent this will not work either, as the file system quotas
1427are not aware of jails but only look at the user and group IDs.
1428This means the same user ID in two jails share a single file
1429system quota.
1430One would need to use one file system per jail to make this work.
1431.Ss "Sysctl MIB Entries"
1432The read-only entry
1433.Va security.jail.jailed
1434can be used to determine if a process is running inside a jail (value
1435is one) or not (value is zero).
1436.Pp
1437The variable
1438.Va security.jail.jail_max_af_ips
1439determines how may address per address family a jail may have.
1440The default is 255.
1441.Pp
1442Some MIB variables have per-jail settings.
1443Changes to these variables by a jailed process do not affect the host
1444environment, only the jail environment.
1445These variables are
1446.Va kern.securelevel ,
1447.Va security.bsd.suser_enabled ,
1448.Va kern.hostname ,
1449.Va kern.domainname ,
1450.Va kern.hostid ,
1451and
1452.Va kern.hostuuid .
1453.Ss "Hierarchical Jails"
1454By setting a jail's
1455.Va children.max
1456parameter, processes within a jail may be able to create jails of their own.
1457These child jails are kept in a hierarchy, with jails only able to see and/or
1458modify the jails they created (or those jails' children).
1459Each jail has a read-only
1460.Va parent
1461parameter, containing the
1462.Va jid
1463of the jail that created it; a
1464.Va jid
1465of 0 indicates the jail is a child of the current jail (or is a top-level
1466jail if the current process isn't jailed).
1467.Pp
1468Jailed processes are not allowed to confer greater permissions than they
1469themselves are given, e.g., if a jail is created with
1470.Va allow.nomount ,
1471it is not able to create a jail with
1472.Va allow.mount
1473set.
1474Similarly, such restrictions as
1475.Va ip4.addr
1476and
1477.Va securelevel
1478may not be bypassed in child jails.
1479.Pp
1480A child jail may in turn create its own child jails if its own
1481.Va children.max
1482parameter is set (remember it is zero by default).
1483These jails are visible to and can be modified by their parent and all
1484ancestors.
1485.Pp
1486Jail names reflect this hierarchy, with a full name being an MIB-type string
1487separated by dots.
1488For example, if a base system process creates a jail
1489.Dq foo ,
1490and a process under that jail creates another jail
1491.Dq bar ,
1492then the second jail will be seen as
1493.Dq foo.bar
1494in the base system (though it is only seen as
1495.Dq bar
1496to any processes inside jail
1497.Dq foo ) .
1498Jids on the other hand exist in a single space, and each jail must have a
1499unique jid.
1500.Pp
1501Like the names, a child jail's
1502.Va path
1503appears relative to its creator's own
1504.Va path .
1505This is by virtue of the child jail being created in the chrooted
1506environment of the first jail.
1507.Sh SEE ALSO
1508.Xr date 1 ,
1509.Xr killall 1 ,
1510.Xr lsvfs 1 ,
1511.Xr newaliases 1 ,
1512.Xr pgrep 1 ,
1513.Xr pkill 1 ,
1514.Xr ps 1 ,
1515.Xr quota 1 ,
1516.Xr adjtime 2 ,
1517.Xr clock_settime 2 ,
1518.Xr jail_set 2 ,
1519.Xr ntp_adjtime 2 ,
1520.Xr devfs 4 ,
1521.Xr fdescfs 4 ,
1522.Xr linprocfs 4 ,
1523.Xr linsysfs 4 ,
1524.Xr procfs 4 ,
1525.Xr vmm 4 ,
1526.Xr jail.conf 5 ,
1527.Xr rc.conf 5 ,
1528.Xr sysctl.conf 5 ,
1529.Xr bsdconfig 8 ,
1530.Xr chroot 8 ,
1531.Xr devfs 8 ,
1532.Xr halt 8 ,
1533.Xr ifconfig 8 ,
1534.Xr inetd 8 ,
1535.Xr jexec 8 ,
1536.Xr jls 8 ,
1537.Xr mount 8 ,
1538.Xr mountd 8 ,
1539.Xr nfsd 8 ,
1540.Xr ntpd 8 ,
1541.Xr reboot 8 ,
1542.Xr rpcbind 8 ,
1543.Xr sendmail 8 ,
1544.Xr shutdown 8 ,
1545.Xr sysctl 8 ,
1546.Xr syslogd 8 ,
1547.Xr umount 8 ,
1548.Xr zfs-jail 8 ,
1549.Xr extattr 9
1550.Sh HISTORY
1551The
1552.Nm
1553utility appeared in
1554.Fx 4.0 .
1555Hierarchical/extensible jails were introduced in
1556.Fx 8.0 .
1557The configuration file was introduced in
1558.Fx 9.1 .
1559.Sh AUTHORS
1560.An -nosplit
1561The jail feature was written by
1562.An Poul-Henning Kamp
1563for R&D Associates
1564who contributed it to
1565.Fx .
1566.Pp
1567.An Robert Watson
1568wrote the extended documentation, found a few bugs, added
1569a few new features, and cleaned up the userland jail environment.
1570.Pp
1571.An Bjoern A. Zeeb
1572added multi-IP jail support for IPv4 and IPv6 based on a patch
1573originally done by
1574.An Pawel Jakub Dawidek
1575for IPv4.
1576.Pp
1577.An James Gritton
1578added the extensible jail parameters, hierarchical jails,
1579and the configuration file.
1580.Sh BUGS
1581It might be a good idea to add an
1582address alias flag such that daemons listening on all IPs
1583.Pq Dv INADDR_ANY
1584will not bind on that address, which would facilitate building a safe
1585host environment such that host daemons do not impose on services offered
1586from within jails.
1587Currently, the simplest answer is to minimize services
1588offered on the host, possibly limiting it to services offered from
1589.Xr inetd 8
1590which is easily configurable.
1591.Sh NOTES
1592Great care should be taken when managing directories visible within the jail.
1593For example, if a jailed process has its current working directory set to a
1594directory that is moved out of the jail's chroot, then the process may gain
1595access to the file space outside of the jail.
1596It is recommended that directories always be copied, rather than moved, out
1597of a jail.
1598.Pp
1599In addition, there are several ways in which an unprivileged user
1600outside the jail can cooperate with a privileged user inside the jail
1601and thereby obtain elevated privileges in the host environment.
1602Most of these attacks can be mitigated by ensuring that the jail root
1603is not accessible to unprivileged users in the host environment.
1604Regardless, as a general rule, untrusted users with privileged access
1605to a jail should not be given access to the host environment.
1606