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