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