1.\" 2.\" Copyright (c) 2000, 2003 Robert N. M. Watson 3.\" Copyright (c) 2008 James Gritton 4.\" All rights reserved. 5.\" 6.\" Redistribution and use in source and binary forms, with or without 7.\" modification, are permitted provided that the following conditions 8.\" are met: 9.\" 1. Redistributions of source code must retain the above copyright 10.\" notice, this list of conditions and the following disclaimer. 11.\" 2. Redistributions in binary form must reproduce the above copyright 12.\" notice, this list of conditions and the following disclaimer in the 13.\" documentation and/or other materials provided with the distribution. 14.\" 15.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25.\" SUCH DAMAGE. 26.\" 27.\" 28.\" ---------------------------------------------------------------------------- 29.\" "THE BEER-WARE LICENSE" (Revision 42): 30.\" <phk@FreeBSD.org> wrote this file. As long as you retain this notice you 31.\" can do whatever you want with this stuff. If we meet some day, and you think 32.\" this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp 33.\" ---------------------------------------------------------------------------- 34.\" 35.\" $FreeBSD$ 36.\" 37.Dd February 29, 2012 38.Dt JAIL 8 39.Os 40.Sh NAME 41.Nm jail 42.Nd "create or modify a system jail" 43.Sh SYNOPSIS 44.Nm 45.Op Fl dhi 46.Op Fl J Ar jid_file 47.Op Fl l u Ar username | Fl U Ar username 48.Op Fl c | m 49.Op Ar parameter=value ... 50.Nm 51.Op Fl hi 52.Op Fl n Ar jailname 53.Op Fl J Ar jid_file 54.Op Fl s Ar securelevel 55.Op Fl l u Ar username | Fl U Ar username 56.Op Ar path hostname [ip[,..]] command ... 57.Nm 58.Op Fl r Ar jail 59.Sh DESCRIPTION 60The 61.Nm 62utility creates a new jail or modifies an existing jail, optionally 63imprisoning the current process (and future descendants) inside it. 64.Pp 65The options are as follows: 66.Bl -tag -width indent 67.It Fl d 68Allow making changes to a dying jail. 69.It Fl h 70Resolve the 71.Va host.hostname 72parameter (or 73.Va hostname ) 74and add all IP addresses returned by the resolver 75to the list of 76.Va ip 77addresses for this prison. 78This may affect default address selection for outgoing IPv4 connections 79of prisons. 80The address first returned by the resolver for each address family 81will be used as primary address. 82See the 83.Va ip4.addr 84and 85.Va ip6.addr 86parameters further down for details. 87.It Fl i 88Output the jail identifier of the newly created jail. 89.It Fl n Ar jailname 90Set the jail's name. 91This is deprecated and is equivalent to setting the 92.Va name 93parameter. 94.It Fl J Ar jid_file 95Write a 96.Ar jid_file 97file, containing jail identifier, path, hostname, IP and 98command used to start the jail. 99.It Fl l 100Run program in the clean environment. 101The environment is discarded except for 102.Ev HOME , SHELL , TERM 103and 104.Ev USER . 105.Ev HOME 106and 107.Ev SHELL 108are set to the target login's default values. 109.Ev USER 110is set to the target login. 111.Ev TERM 112is imported from the current environment. 113The environment variables from the login class capability database for the 114target login are also set. 115.It Fl s Ar securelevel 116Set the 117.Va kern.securelevel 118MIB entry to the specified value inside the newly created jail. 119This is deprecated and is equivalent to setting the 120.Va securelevel 121parameter. 122.It Fl u Ar username 123The user name from host environment as whom the 124.Ar command 125should run. 126.It Fl U Ar username 127The user name from jailed environment as whom the 128.Ar command 129should run. 130.It Fl c 131Create a new jail. 132The 133.Va jid 134and 135.Va name 136parameters (if specified) must not refer to an existing jail. 137.It Fl m 138Modify an existing jail. 139One of the 140.Va jid 141or 142.Va name 143parameters must exist and refer to an existing jail. 144.It Fl cm 145Create a jail if it does not exist, or modify a jail if it does exist. 146.It Fl r 147Remove the 148.Ar jail 149specified by jid or name. 150All jailed processes are killed, and all children of this jail are also 151removed. 152.El 153.Pp 154At least one of the 155.Fl c , 156.Fl m 157or 158.Fl r 159options must be specified. 160.Pp 161.Ar Parameters 162are listed in 163.Dq name=value 164form, following the options. 165Some parameters are boolean, and do not have a value but are set by the 166name alone with or without a 167.Dq no 168prefix, e.g. 169.Va persist 170or 171.Va nopersist . 172Any parameters not set will be given default values, often based on the 173current environment. 174.Pp 175The pseudo-parameter 176.Va command 177specifies that the current process should enter the new (or modified) jail, 178and run the specified command. 179It must be the last parameter specified, because it includes not only 180the value following the 181.Sq = 182sign, but also passes the rest of the arguments to the command. 183.Pp 184Instead of supplying named 185.Ar parameters , 186four fixed parameters may be supplied in order on the command line: 187.Ar path , 188.Ar hostname , 189.Ar ip , 190and 191.Ar command . 192As the 193.Va jid 194and 195.Va name 196parameters aren't in this list, this mode will always create a new jail, and 197the 198.Fl c 199and 200.Fl m 201options don't apply (and must not exist). 202.Pp 203Jails have a set a core parameters, and modules can add their own jail 204parameters. 205The current set of available parameters can be retrieved via 206.Dq Nm sysctl Fl d Va security.jail.param . 207The core parameters are: 208.Bl -tag -width indent 209.It Va jid 210The jail identifier. 211This will be assigned automatically to a new jail (or can be explicitly 212set), and can be used to identify the jail for later modification, or 213for such commands as 214.Xr jls 8 215or 216.Xr jexec 8 . 217.It Va name 218The jail name. 219This is an arbitrary string that identifies a jail (except it may not 220contain a 221.Sq \&. ) . 222Like the 223.Va jid , 224it can be passed to later 225.Nm 226commands, or to 227.Xr jls 8 228or 229.Xr jexec 8 . 230If no 231.Va name 232is supplied, a default is assumed that is the same as the 233.Va jid . 234.It Va path 235Directory which is to be the root of the prison. 236The 237.Va command 238(if any) is run from this directory, as are commands from 239.Xr jexec 8 . 240.It Va ip4.addr 241A comma-separated list of IPv4 addresses assigned to the prison. 242If this is set, the jail is restricted to using only these addresses. 243Any attempts to use other addresses fail, and attempts to use wildcard 244addresses silently use the jailed address instead. 245For IPv4 the first address given will be kept used as the source address 246in case source address selection on unbound sockets cannot find a better 247match. 248It is only possible to start multiple jails with the same IP address, 249if none of the jails has more than this single overlapping IP address 250assigned to itself. 251.It Va ip4.saddrsel 252A boolean option to change the formerly mentioned behaviour and disable 253IPv4 source address selection for the prison in favour of the primary 254IPv4 address of the jail. 255Source address selection is enabled by default for all jails and a 256.Va ip4.nosaddrsel 257setting of a parent jail is not inherited for any child jails. 258.It Va ip4 259Control the availability of IPv4 addresses. 260Possible values are 261.Dq inherit 262to allow unrestricted access to all system addresses, 263.Dq new 264to restrict addresses via 265.Va ip4.addr 266above, and 267.Dq disable 268to stop the jail from using IPv4 entirely. 269Setting the 270.Va ip4.addr 271parameter implies a value of 272.Dq new . 273.It Va ip6.addr , Va ip6.saddrsel , Va ip6 274A set of IPv6 options for the prison, the counterparts to 275.Va ip4.addr , 276.Va ip4.saddrsel 277and 278.Va ip4 279above. 280.It Va host.hostname 281Hostname of the prison. 282Other similar parameters are 283.Va host.domainname , 284.Va host.hostuuid 285and 286.Va host.hostid . 287.It Va host 288Set the origin of hostname and related information. 289Possible values are 290.Dq inherit 291to use the system information and 292.Dq new 293for the jail to use the information from the above fields. 294Setting any of the above fields implies a value of 295.Dq new . 296.It Va securelevel 297The value of the jail's 298.Va kern.securelevel 299sysctl. 300A jail never has a lower securelevel than the default system, but by 301setting this parameter it may have a higher one. 302If the system securelevel is changed, any jail securelevels will be at 303least as secure. 304.It Va devfs_ruleset 305The number of the devfs ruleset that is enforced for mounting devfs in 306this jail. 307A value of zero (default) means no ruleset is enforced. 308Descendant jails inherit the parent jail's devfs ruleset enforcement. 309Mounting devfs inside a jail is possible only if the 310.Va allow.mount 311and 312.Va allow.mount.devfs 313permissions are effective and 314.Va enforce_statfs 315is set to a value lower than 2. 316Devfs rules and rulesets cannot be viewed or modified from inside a jail. 317.It Va children.max 318The number of child jails allowed to be created by this jail (or by 319other jails under this jail). 320This limit is zero by default, indicating the jail is not allowed to 321create child jails. 322See the 323.Va "Hierarchical Jails" 324section for more information. 325.It Va children.cur 326The number of descendents of this jail, including its own child jails 327and any jails created under them. 328.It Va enforce_statfs 329This determines which information processes in a jail are able to get 330about mount points. 331It affects the behaviour of the following syscalls: 332.Xr statfs 2 , 333.Xr fstatfs 2 , 334.Xr getfsstat 2 335and 336.Xr fhstatfs 2 337(as well as similar compatibility syscalls). 338When set to 0, all mount points are available without any restrictions. 339When set to 1, only mount points below the jail's chroot directory are 340visible. 341In addition to that, the path to the jail's chroot directory is removed 342from the front of their pathnames. 343When set to 2 (default), above syscalls can operate only on a mount-point 344where the jail's chroot directory is located. 345.It Va persist 346Setting this boolean parameter allows a jail to exist without any 347processes. 348Normally, a jail is destroyed as its last process exits. 349A new jail must have either the 350.Va persist 351parameter or 352.Va command 353pseudo-parameter set. 354.It Va cpuset.id 355The ID of the cpuset associated with this jail (read-only). 356.It Va dying 357This is true if the jail is in the process of shutting down (read-only). 358.It Va parent 359The 360.Va jid 361of the parent of this jail, or zero if this is a top-level jail 362(read-only). 363.It Va allow.* 364Some restrictions of the jail environment may be set on a per-jail 365basis. 366With the exception of 367.Va allow.set_hostname , 368these boolean parameters are off by default. 369.Bl -tag -width indent 370.It Va allow.set_hostname 371The jail's hostname may be changed via 372.Xr hostname 1 373or 374.Xr sethostname 3 . 375.It Va allow.sysvipc 376A process within the jail has access to System V IPC primitives. 377In the current jail implementation, System V primitives share a single 378namespace across the host and jail environments, meaning that processes 379within a jail would be able to communicate with (and potentially interfere 380with) processes outside of the jail, and in other jails. 381.It Va allow.raw_sockets 382The prison root is allowed to create raw sockets. 383Setting this parameter allows utilities like 384.Xr ping 8 385and 386.Xr traceroute 8 387to operate inside the prison. 388If this is set, the source IP addresses are enforced to comply 389with the IP address bound to the jail, regardless of whether or not 390the 391.Dv IP_HDRINCL 392flag has been set on the socket. 393Since raw sockets can be used to configure and interact with various 394network subsystems, extra caution should be used where privileged access 395to jails is given out to untrusted parties. 396.It Va allow.chflags 397Normally, privileged users inside a jail are treated as unprivileged by 398.Xr chflags 2 . 399When this parameter is set, such users are treated as privileged, and 400may manipulate system file flags subject to the usual constraints on 401.Va kern.securelevel . 402.It Va allow.mount 403privileged users inside the jail will be able to mount and unmount file 404system types marked as jail-friendly. 405The 406.Xr lsvfs 1 407command can be used to find file system types available for mount from 408within a jail. 409This permission is effective only if 410.Va enforce_statfs 411is set to a value lower than 2. 412.It Va allow.mount.devfs 413privileged users inside the jail will be able to mount and unmount the 414devfs file system. 415This permission is effective only together with 416.Va allow.mount 417and if 418.Va enforce_statfs 419is set to a value lower than 2. 420Please consider restricting the devfs ruleset with the 421.Va devfs_ruleset 422option. 423.It Va allow.mount.nullfs 424privileged users inside the jail will be able to mount and unmount the 425nullfs file system. 426This permission is effective only together with 427.Va allow.mount 428and if 429.Va enforce_statfs 430is set to a value lower than 2. 431.It Va allow.mount.procfs 432privileged users inside the jail will be able to mount and unmount the 433procfs file system. 434This permission is effective only together with 435.Va allow.mount 436and if 437.Va enforce_statfs 438is set to a value lower than 2. 439.It Va allow.mount.zfs 440privileged users inside the jail will be able to mount and unmount the 441ZFS file system. 442This permission is effective only together with 443.Va allow.mount 444and if 445.Va enforce_statfs 446is set to a value lower than 2. 447See 448.Xr zfs 8 449for information on how to configure the ZFS filesystem to operate from 450within a jail. 451.It Va allow.quotas 452The prison root may administer quotas on the jail's filesystem(s). 453This includes filesystems that the jail may share with other jails or 454with non-jailed parts of the system. 455.It Va allow.socket_af 456Sockets within a jail are normally restricted to IPv4, IPv6, local 457(UNIX), and route. This allows access to other protocol stacks that 458have not had jail functionality added to them. 459.El 460.El 461.Pp 462Jails are typically set up using one of two philosophies: either to 463constrain a specific application (possibly running with privilege), or 464to create a 465.Dq "virtual system image" 466running a variety of daemons and services. 467In both cases, a fairly complete file system install of 468.Fx 469is 470required, so as to provide the necessary command line tools, daemons, 471libraries, application configuration files, etc. 472However, for a virtual server configuration, a fair amount of 473additional work is required so as to configure the 474.Dq boot 475process. 476This manual page documents the configuration steps necessary to support 477either of these steps, although the configuration steps may be 478refined based on local requirements. 479.Sh EXAMPLES 480.Ss "Setting up a Jail Directory Tree" 481To set up a jail directory tree containing an entire 482.Fx 483distribution, the following 484.Xr sh 1 485command script can be used: 486.Bd -literal 487D=/here/is/the/jail 488cd /usr/src 489mkdir -p $D 490make world DESTDIR=$D 491make distribution DESTDIR=$D 492mount -t devfs devfs $D/dev 493.Ed 494.Pp 495NOTE: It is important that only appropriate device nodes in devfs be 496exposed to a jail; access to disk devices in the jail may permit processes 497in the jail to bypass the jail sandboxing by modifying files outside of 498the jail. 499See 500.Xr devfs 8 501for information on how to use devfs rules to limit access to entries 502in the per-jail devfs. 503A simple devfs ruleset for jails is available as ruleset #4 in 504.Pa /etc/defaults/devfs.rules . 505.Pp 506In many cases this example would put far more in the jail than needed. 507In the other extreme case a jail might contain only one file: 508the executable to be run in the jail. 509.Pp 510We recommend experimentation and caution that it is a lot easier to 511start with a 512.Dq fat 513jail and remove things until it stops working, 514than it is to start with a 515.Dq thin 516jail and add things until it works. 517.Ss "Setting Up a Jail" 518Do what was described in 519.Sx "Setting Up a Jail Directory Tree" 520to build the jail directory tree. 521For the sake of this example, we will 522assume you built it in 523.Pa /data/jail/192.0.2.100 , 524named for the jailed IP address. 525Substitute below as needed with your 526own directory, IP address, and hostname. 527.Ss "Setting up the Host Environment" 528First, you will want to set up your real system's environment to be 529.Dq jail-friendly . 530For consistency, we will refer to the parent box as the 531.Dq "host environment" , 532and to the jailed virtual machine as the 533.Dq "jail environment" . 534Since jail is implemented using IP aliases, one of the first things to do 535is to disable IP services on the host system that listen on all local 536IP addresses for a service. 537If a network service is present in the host environment that binds all 538available IP addresses rather than specific IP addresses, it may service 539requests sent to jail IP addresses if the jail did not bind the port. 540This means changing 541.Xr inetd 8 542to only listen on the 543appropriate IP address, and so forth. 544Add the following to 545.Pa /etc/rc.conf 546in the host environment: 547.Bd -literal -offset indent 548sendmail_enable="NO" 549inetd_flags="-wW -a 192.0.2.23" 550rpcbind_enable="NO" 551.Ed 552.Pp 553.Li 192.0.2.23 554is the native IP address for the host system, in this example. 555Daemons that run out of 556.Xr inetd 8 557can be easily set to use only the specified host IP address. 558Other daemons 559will need to be manually configured\(emfor some this is possible through 560the 561.Xr rc.conf 5 562flags entries; for others it is necessary to modify per-application 563configuration files, or to recompile the applications. 564The following frequently deployed services must have their individual 565configuration files modified to limit the application to listening 566to a specific IP address: 567.Pp 568To configure 569.Xr sshd 8 , 570it is necessary to modify 571.Pa /etc/ssh/sshd_config . 572.Pp 573To configure 574.Xr sendmail 8 , 575it is necessary to modify 576.Pa /etc/mail/sendmail.cf . 577.Pp 578For 579.Xr named 8 , 580it is necessary to modify 581.Pa /etc/namedb/named.conf . 582.Pp 583In addition, a number of services must be recompiled in order to run 584them in the host environment. 585This includes most applications providing services using 586.Xr rpc 3 , 587such as 588.Xr rpcbind 8 , 589.Xr nfsd 8 , 590and 591.Xr mountd 8 . 592In general, applications for which it is not possible to specify which 593IP address to bind should not be run in the host environment unless they 594should also service requests sent to jail IP addresses. 595Attempting to serve 596NFS from the host environment may also cause confusion, and cannot be 597easily reconfigured to use only specific IPs, as some NFS services are 598hosted directly from the kernel. 599Any third-party network software running 600in the host environment should also be checked and configured so that it 601does not bind all IP addresses, which would result in those services' also 602appearing to be offered by the jail environments. 603.Pp 604Once 605these daemons have been disabled or fixed in the host environment, it is 606best to reboot so that all daemons are in a known state, to reduce the 607potential for confusion later (such as finding that when you send mail 608to a jail, and its sendmail is down, the mail is delivered to the host, 609etc.). 610.Ss "Configuring the Jail" 611Start any jail for the first time without configuring the network 612interface so that you can clean it up a little and set up accounts. 613As 614with any machine (virtual or not) you will need to set a root password, time 615zone, etc. 616Some of these steps apply only if you intend to run a full virtual server 617inside the jail; others apply both for constraining a particular application 618or for running a virtual server. 619.Pp 620Start a shell in the jail: 621.Bd -literal -offset indent 622jail -c path=/data/jail/192.0.2.100 host.hostname=testhostname \\ 623 ip4.addr=192.0.2.100 command=/bin/sh 624.Ed 625.Pp 626Assuming no errors, you will end up with a shell prompt within the jail. 627You can now run 628.Pa /usr/sbin/sysinstall 629and do the post-install configuration to set various configuration options, 630or perform these actions manually by editing 631.Pa /etc/rc.conf , 632etc. 633.Pp 634.Bl -bullet -offset indent -compact 635.It 636Create an empty 637.Pa /etc/fstab 638to quell startup warnings about missing fstab (virtual server only) 639.It 640Disable the port mapper 641.Pa ( /etc/rc.conf : 642.Li rpcbind_enable="NO" ) 643(virtual server only) 644.It 645Configure 646.Pa /etc/resolv.conf 647so that name resolution within the jail will work correctly 648.It 649Run 650.Xr newaliases 1 651to quell 652.Xr sendmail 8 653warnings. 654.It 655Disable interface configuration to quell startup warnings about 656.Xr ifconfig 8 657.Pq Li network_interfaces="" 658(virtual server only) 659.It 660Set a root password, probably different from the real host system 661.It 662Set the timezone 663.It 664Add accounts for users in the jail environment 665.It 666Install any packages the environment requires 667.El 668.Pp 669You may also want to perform any package-specific configuration (web servers, 670SSH servers, etc), patch up 671.Pa /etc/syslog.conf 672so it logs as you would like, etc. 673If you are not using a virtual server, you may wish to modify 674.Xr syslogd 8 675in the host environment to listen on the syslog socket in the jail 676environment; in this example, the syslog socket would be stored in 677.Pa /data/jail/192.0.2.100/var/run/log . 678.Pp 679Exit from the shell, and the jail will be shut down. 680.Ss "Starting the Jail" 681You are now ready to restart the jail and bring up the environment with 682all of its daemons and other programs. 683If you are running a single application in the jail, substitute the 684command used to start the application for 685.Pa /etc/rc 686in the examples below. 687To start a virtual server environment, 688.Pa /etc/rc 689is run to launch various daemons and services. 690To do this, first bring up the 691virtual host interface, and then start the jail's 692.Pa /etc/rc 693script from within the jail. 694.Bd -literal -offset indent 695ifconfig ed0 inet alias 192.0.2.100/32 696mount -t procfs proc /data/jail/192.0.2.100/proc 697jail -c path=/data/jail/192.0.2.100 host.hostname=testhostname \\ 698 ip4.addr=192.0.2.100 command=/bin/sh /etc/rc 699.Ed 700.Pp 701A few warnings will be produced, because most 702.Xr sysctl 8 703configuration variables cannot be set from within the jail, as they are 704global across all jails and the host environment. 705However, it should all 706work properly. 707You should be able to see 708.Xr inetd 8 , 709.Xr syslogd 8 , 710and other processes running within the jail using 711.Xr ps 1 , 712with the 713.Ql J 714flag appearing beside jailed processes. 715To see an active list of jails, use the 716.Xr jls 8 717utility. 718You should also be able to 719.Xr telnet 1 720to the hostname or IP address of the jailed environment, and log 721in using the accounts you created previously. 722.Pp 723It is possible to have jails started at boot time. 724Please refer to the 725.Dq jail_* 726variables in 727.Xr rc.conf 5 728for more information. 729The 730.Xr rc 8 731jail script provides a flexible system to start/stop jails: 732.Bd -literal 733/etc/rc.d/jail start 734/etc/rc.d/jail stop 735/etc/rc.d/jail start myjail 736/etc/rc.d/jail stop myjail 737.Ed 738.Ss "Managing the Jail" 739Normal machine shutdown commands, such as 740.Xr halt 8 , 741.Xr reboot 8 , 742and 743.Xr shutdown 8 , 744cannot be used successfully within the jail. 745To kill all processes in a 746jail, you may log into the jail and, as root, use one of the following 747commands, depending on what you want to accomplish: 748.Bd -literal -offset indent 749kill -TERM -1 750kill -KILL -1 751.Ed 752.Pp 753This will send the 754.Dv SIGTERM 755or 756.Dv SIGKILL 757signals to all processes in the jail from within the jail. 758Depending on 759the intended use of the jail, you may also want to run 760.Pa /etc/rc.shutdown 761from within the jail. 762To kill processes from outside the jail, use the 763.Xr jexec 8 764utility in conjunction with the one of the 765.Xr kill 1 766commands above. 767You may also remove the jail with 768.Nm 769.Ar -r , 770which will killall the jail's processes with 771.Dv SIGKILL . 772.Pp 773The 774.Pa /proc/ Ns Ar pid Ns Pa /status 775file contains, as its last field, the name of the jail in which the 776process runs, or 777.Dq Li - 778to indicate that the process is not running within a jail. 779The 780.Xr ps 1 781command also shows a 782.Ql J 783flag for processes in a jail. 784.Pp 785You can also list/kill processes based on their jail ID. 786To show processes and their jail ID, use the following command: 787.Pp 788.Dl "ps ax -o pid,jid,args" 789.Pp 790To show and then kill processes in jail number 3 use the following commands: 791.Bd -literal -offset indent 792pgrep -lfj 3 793pkill -j 3 794.Ed 795or: 796.Pp 797.Dl "killall -j 3" 798.Ss "Jails and File Systems" 799It is not possible to 800.Xr mount 8 801or 802.Xr umount 8 803any file system inside a jail unless the file system is marked 804jail-friendly, the jail's 805.Va allow.mount 806parameter is set and the jail's 807.Va enforce_statfs 808parameter is lower than 2. 809.Pp 810Multiple jails sharing the same file system can influence each other. 811For example a user in one jail can fill the file system also 812leaving no space for processes in the other jail. 813Trying to use 814.Xr quota 1 815to prevent this will not work either as the file system quotas 816are not aware of jails but only look at the user and group IDs. 817This means the same user ID in two jails share the same file 818system quota. 819One would need to use one file system per jail to make this work. 820.Ss "Sysctl MIB Entries" 821The read-only entry 822.Va security.jail.jailed 823can be used to determine if a process is running inside a jail (value 824is one) or not (value is zero). 825.Pp 826The variable 827.Va security.jail.max_af_ips 828determines how may address per address family a prison may have. 829The default is 255. 830.Pp 831Some MIB variables have per-jail settings. 832Changes to these variables by a jailed process do not effect the host 833environment, only the jail environment. 834These variables are 835.Va kern.securelevel , 836.Va kern.hostname , 837.Va kern.domainname , 838.Va kern.hostid , 839and 840.Va kern.hostuuid . 841.Ss "Hierarchical Jails" 842By setting a jail's 843.Va children.max 844parameter, processes within a jail may be able to create jails of their own. 845These child jails are kept in a hierarchy, with jails only able to see and/or 846modify the jails they created (or those jails' children). 847Each jail has a read-only 848.Va parent 849parameter, containing the 850.Va jid 851of the jail that created it; a 852.Va jid 853of 0 indicates the jail is a child of the current jail (or is a top-level 854jail if the current process isn't jailed). 855.Pp 856Jailed processes are not allowed to confer greater permissions than they 857themselves are given, e.g. if a jail is created with 858.Va allow.nomount , 859it is not able to create a jail with 860.Va allow.mount 861set. 862Similarly, such restrictions as 863.Va ip4.addr 864and 865.Va securelevel 866may not be bypassed in child jails. 867.Pp 868A child jail may in turn create its own child jails if its own 869.Va children.max 870parameter is set (remember it is zero by default). 871These jails are visible to and can be modified by their parent and all 872ancestors. 873.Pp 874Jail names reflect this hierarchy, with a full name being an MIB-type string 875separated by dots. 876For example, if a base system process creates a jail 877.Dq foo , 878and a process under that jail creates another jail 879.Dq bar , 880then the second jail will be seen as 881.Dq foo.bar 882in the base system (though it is only seen as 883.Dq bar 884to any processes inside jail 885.Dq foo ) . 886Jids on the other hand exist in a single space, and each jail must have a 887unique jid. 888.Pp 889Like the names, a child jail's 890.Va path 891is relative to its creator's own 892.Va path . 893This is by virtue of the child jail being created in the chrooted 894environment of the first jail. 895.Sh SEE ALSO 896.Xr killall 1 , 897.Xr lsvfs 1 , 898.Xr newaliases 1 , 899.Xr pgrep 1 , 900.Xr pkill 1 , 901.Xr ps 1 , 902.Xr quota 1 , 903.Xr chroot 2 , 904.Xr jail_set 2 , 905.Xr jail_attach 2 , 906.Xr procfs 5 , 907.Xr rc.conf 5 , 908.Xr sysctl.conf 5 , 909.Xr devfs 8 , 910.Xr halt 8 , 911.Xr inetd 8 , 912.Xr jexec 8 , 913.Xr jls 8 , 914.Xr mount 8 , 915.Xr named 8 , 916.Xr reboot 8 , 917.Xr rpcbind 8 , 918.Xr sendmail 8 , 919.Xr shutdown 8 , 920.Xr sysctl 8 , 921.Xr syslogd 8 , 922.Xr umount 8 923.Sh HISTORY 924The 925.Nm 926utility appeared in 927.Fx 4.0 . 928Hierarchical/extensible jails were introduced in 929.Fx 8.0 . 930.Sh AUTHORS 931.An -nosplit 932The jail feature was written by 933.An Poul-Henning Kamp 934for R&D Associates 935.Pa http://www.rndassociates.com/ 936who contributed it to 937.Fx . 938.Pp 939.An Robert Watson 940wrote the extended documentation, found a few bugs, added 941a few new features, and cleaned up the userland jail environment. 942.Pp 943.An Bjoern A. Zeeb 944added multi-IP jail support for IPv4 and IPv6 based on a patch 945originally done by 946.An Pawel Jakub Dawidek 947for IPv4. 948.Pp 949.An James Gritton 950added the extensible jail parameters and hierarchical jails. 951.Sh BUGS 952Jail currently lacks the ability to allow access to 953specific jail information via 954.Xr ps 1 955as opposed to 956.Xr procfs 5 . 957Similarly, it might be a good idea to add an 958address alias flag such that daemons listening on all IPs 959.Pq Dv INADDR_ANY 960will not bind on that address, which would facilitate building a safe 961host environment such that host daemons do not impose on services offered 962from within jails. 963Currently, the simplest answer is to minimize services 964offered on the host, possibly limiting it to services offered from 965.Xr inetd 8 966which is easily configurable. 967.Sh NOTES 968Great care should be taken when managing directories visible within the jail. 969For example, if a jailed process has its current working directory set to a 970directory that is moved out of the jail's chroot, then the process may gain 971access to the file space outside of the jail. 972It is recommended that directories always be copied, rather than moved, out 973of a jail. 974