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