1.\" 2.\" Copyright (c) 2000 Robert N. M. Watson 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.\" 27.\" ---------------------------------------------------------------------------- 28.\" "THE BEER-WARE LICENSE" (Revision 42): 29.\" <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you 30.\" can do whatever you want with this stuff. If we meet some day, and you think 31.\" this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp 32.\" ---------------------------------------------------------------------------- 33.\" 34.\" $FreeBSD$ 35.\" 36.Dd April 8, 2003 37.Dt JAIL 8 38.Os 39.Sh NAME 40.Nm jail 41.Nd "imprison process and its descendants" 42.Sh SYNOPSIS 43.Nm 44.Op Fl i 45.Op Fl u Ar username 46.Ar path hostname ip-number command ... 47.Sh DESCRIPTION 48The 49.Nm 50utility imprisons a process and all future descendants. 51.Pp 52The options are as follows: 53.Bl -tag -width ".Fl u Ar username" 54.It Fl i 55Output the jail identifier of the newly created jail. 56.It Fl u Ar username 57The user name as whom the 58.Ar command 59should run. 60.It Ar path 61Directory which is to be the root of the prison. 62.It Ar hostname 63Hostname of the prison. 64.It Ar ip-number 65IP number assigned to the prison. 66.It Ar command 67Pathname of the program which is to be executed. 68.El 69.Pp 70Please see the 71.Xr jail 2 72man page for further details. 73.Sh EXAMPLES 74.Ss "Setting up a Jail Directory Tree" 75This example shows how to setup a jail directory tree 76containing an entire 77.Fx 78distribution: 79.Bd -literal 80D=/here/is/the/jail 81cd /usr/src 82mkdir -p $D 83make world DESTDIR=$D 84cd etc 85make distribution DESTDIR=$D 86mount_devfs devfs $D/dev 87cd $D 88ln -sf dev/null kernel 89.Ed 90.Pp 91In many cases this example would put far more stuff in the jail than is needed. 92In the other extreme case a jail might contain only one single file: 93the executable to be run in the jail. 94.Pp 95We recommend experimentation and caution that it is a lot easier to 96start with a 97.Dq fat 98jail and remove things until it stops working, 99than it is to start with a 100.Dq thin 101jail and add things until it works. 102.Ss "Setting Up a Jail" 103Do what was described in 104.Sx "Setting Up a Jail Directory Tree" 105to build the jail directory tree. 106For the sake of this example, we will 107assume you built it in 108.Pa /data/jail/192.168.11.100 , 109named for the jailed IP address. 110Substitute below as needed with your 111own directory, IP address, and hostname. 112.Pp 113First, you will want to set up your real system's environment to be 114.Dq jail-friendly . 115For consistency, we will refer to the parent box as the 116.Dq "host environment" , 117and to the jailed virtual machine as the 118.Dq "jail environment" . 119Because jail is implemented using IP aliases, one of the first things to do 120is to disable IP services on the host system that listen on all local 121IP addresses for a service. 122This means changing 123.Xr inetd 8 124to only listen on the 125appropriate IP address, and so forth. 126Add the following to 127.Pa /etc/rc.conf 128in the host environment: 129.Bd -literal -offset indent 130sendmail_enable="NO" 131inetd_flags="-wW -a 192.168.11.23" 132rpcbind_enable="NO" 133.Ed 134.Pp 135.Li 192.168.11.23 136is the native IP address for the host system, in this example. 137Daemons that run out of 138.Xr inetd 8 139can be easily set to use only the specified host IP address. 140Other daemons 141will need to be manually configured\(emfor some this is possible through 142the 143.Xr rc.conf 5 144flags entries, for others it is not possible without munging 145the per-application configuration files, or even recompiling. 146For those 147applications that cannot specify the IP they run on, it is better to disable 148them, if possible. 149.Pp 150A number of daemons ship with the base system that may have problems when 151run from outside of a jail in a jail-centric environment. 152This includes 153.Xr sendmail 8 , 154.Xr named 8 , 155and 156.Xr rpcbind 8 . 157While 158.Xr sendmail 8 159and 160.Xr named 8 161can be configured to listen only on a specific 162IP using their configuration files, in most cases it is easier to simply 163run the daemons in jails only, and not in the host environment. 164Attempting to serve 165NFS from the host environment may also cause confusion, and cannot be 166easily reconfigured to use only specific IPs, as some NFS services are 167hosted directly from the kernel. 168Any third party network software running 169in the host environment should also be checked and configured so that it 170does not bind all IP addresses, which would result in those services also 171appearing to be offered by the jail environments. 172.Pp 173Once 174these daemons have been disabled or fixed in the host environment, it is 175best to reboot so that all daemons are in a known state, to reduce the 176potential for confusion later (such as finding that when you send mail 177to a jail, and its sendmail is down, the mail is delivered to the host, 178etc.) 179.Pp 180Start any jails for the first time without configuring the network 181interface so that you can clean it up a little and set up accounts. 182As 183with any machine (virtual or not) you will need to set a root password, time 184zone, etc. 185Before beginning, you may want to copy 186.Xr sysinstall 8 187into the tree so that you can use it to set things up easily. 188Do this using: 189.Bd -literal -offset indent 190mkdir /data/jail/192.168.11.100/stand 191cp /stand/sysinstall /data/jail/192.168.11.100/stand 192.Ed 193.Pp 194Now start the jail: 195.Pp 196.Dl "jail /data/jail/192.168.11.100 testhostname 192.168.11.100 /bin/sh" 197.Pp 198You will end up with a shell prompt, assuming no errors, within the jail. 199You can now run 200.Pa /stand/sysinstall 201and do the post-install configuration to set various configuration options, 202or perform these actions manually by editing 203.Pa /etc/rc.conf , 204etc. 205.Pp 206.Bl -bullet -offset indent -compact 207.It 208Create an empty 209.Pa /etc/fstab 210to quell startup warnings about missing fstab 211.It 212Disable the port mapper 213.Pa ( /etc/rc.conf : 214.Li rpcbind_enable="NO" ) 215.It 216Run 217.Xr newaliases 1 218to quell 219.Xr sendmail 8 220warnings. 221.It 222Disable interface configuration to quell startup warnings about 223.Xr ifconfig 8 224.Pq Li network_interfaces="" 225.It 226Configure 227.Pa /etc/resolv.conf 228so that name resolution within the jail will work correctly 229.It 230Set a root password, probably different from the real host system 231.It 232Set the timezone 233.It 234Add accounts for users in the jail environment 235.It 236Install any packages that you think the environment requires 237.El 238.Pp 239You may also want to perform any package-specific configuration (web servers, 240SSH servers, etc), patch up 241.Pa /etc/syslog.conf 242so it logs as you would like, etc. 243.Pp 244Exit from the shell, and the jail will be shut down. 245.Ss "Starting the Jail" 246You are now ready to restart the jail and bring up the environment with 247all of its daemons and other programs. 248To do this, first bring up the 249virtual host interface, and then start the jail's 250.Pa /etc/rc 251script from within the jail. 252.Pp 253NOTE: If you plan to allow untrusted users to have root access inside the 254jail, you may wish to consider setting the 255.Va security.jail.set_hostname_allowed 256to 0. 257Please see the management reasons why this is a good idea. 258If you do decide to set this variable, 259it must be set before starting any jails, and once each boot. 260.Bd -literal -offset indent 261ifconfig ed0 inet alias 192.168.11.100/32 262mount -t procfs proc /data/jail/192.168.11.100/proc 263jail /data/jail/192.168.11.100 testhostname 192.168.11.100 \\ 264 /bin/sh /etc/rc 265.Ed 266.Pp 267A few warnings will be produced, because most 268.Xr sysctl 8 269configuration variables cannot be set from within the jail, as they are 270global across all jails and the host environment. 271However, it should all 272work properly. 273You should be able to see 274.Xr inetd 8 , 275.Xr syslogd 8 , 276and other processes running within the jail using 277.Xr ps 1 , 278with the 279.Ql J 280flag appearing beside jailed processes. 281To see an active list of jails, use the 282.Xr jls 8 283utility. 284You should also be able to 285.Xr telnet 1 286to the hostname or IP address of the jailed environment, and log 287in using the accounts you created previously. 288.Ss "Managing the Jail" 289Normal machine shutdown commands, such as 290.Xr halt 8 , 291.Xr reboot 8 , 292and 293.Xr shutdown 8 , 294cannot be used successfully within the jail. 295To kill all processes in a 296jail, you may log into the jail and, as root, use one of the following 297commands, depending on what you want to accomplish: 298.Pp 299.Bd -literal -offset indent 300kill -TERM -1 301kill -KILL -1 302.Ed 303.Pp 304This will send the 305.Dv SIGTERM 306or 307.Dv SIGKILL 308signals to all processes in the jail from within the jail. 309Depending on 310the intended use of the jail, you may also want to run 311.Pa /etc/rc.shutdown 312from within the jail. 313To kill processes from outside the jail, use the 314.Xr jexec 8 315utility in conjuction with the one of the 316.Xr kill 1 317commands above, or use the 318.Xr killall 1 319utility with the 320.Fl j 321option. 322.Pp 323The 324.Pa /proc/ Ns Ar pid Ns Pa /status 325file contains, as its last field, the hostname of the jail in which the 326process runs, or 327.Dq Li - 328to indicate that the process is not running within a jail. 329The 330.Xr ps 1 331command also shows a 332.Ql J 333flag for processes in a jail. 334However, the hostname for a jail may be, by 335default, modified from within the jail, so the 336.Pa /proc 337status entry is unreliable by default. 338To disable the setting of the hostname 339from within a jail, set the 340.Va security.jail.set_hostname_allowed 341sysctl variable in the host environment to 0, which will affect all jails. 342You can have this sysctl set on each boot using 343.Xr sysctl.conf 5 . 344Just add the following line to 345.Pa /etc/sysctl.conf : 346.Pp 347.Dl security.jail.set_hostname_allowed=0 348.Ss "Sysctl MIB Entries" 349Certain aspects of the jail containments environment may be modified from 350the host environment using 351.Xr sysctl 8 352MIB variables. 353Currently, these variables affect all jails on the system, although in 354the future this functionality may be finer grained. 355.Bl -tag -width XXX 356.It Va security.jail.set_hostname_allowed 357This MIB entry determines whether or not processes within a jail are 358allowed to change their hostname via 359.Xr hostname 1 360or 361.Xr sethostname 3 . 362In the current jail implementation, the ability to set the hostname from 363within the jail can impact management tools relying on the accuracy of jail 364information in 365.Pa /proc . 366As such, this should be disabled in environments where privileged access to 367jails is given out to untrusted parties. 368.It Va security.jail.socket_unixiproute_only 369The jail functionality binds an IPv4 address to each jail, and limits 370access to other network addresses in the IPv4 space that may be available 371in the host environment. 372However, jail is not currently able to limit access to other network 373protocol stacks that have not had jail functionality added to them. 374As such, by default, processes within jails may only access protocols 375in the following domains: 376.Dv PF_LOCAL , PF_INET , 377and 378.Dv PF_ROUTE , 379permitting them access to 380.Ux 381domain sockets, 382IPv4 addresses, and routing sockets. 383To enable access to other domains, this MIB variable may be set to 3840. 385.It Va security.jail.sysvipc_allowed 386This MIB entry determines whether or not processes within a jail have access 387to System V IPC primitives. 388In the current jail implementation, System V primitives share a single 389namespace across the host and jail environments, meaning that processes 390within a jail would be able to communicate with (and potentially interfere 391with) processes outside of the jail, and in other jails. 392As such, this functionality is disabled by default, but can be enabled 393by setting this MIB entry to 1. 394.El 395.Sh SEE ALSO 396.Xr killall 1 , 397.Xr newaliases 1 , 398.Xr ps 1 , 399.Xr chroot 2 , 400.Xr jail 2 , 401.Xr jail_attach 2 , 402.Xr procfs 5 , 403.Xr rc.conf 5 , 404.Xr sysctl.conf 5 , 405.Xr halt 8 , 406.Xr inetd 8 , 407.Xr jexec 8 , 408.Xr jls 8 , 409.Xr mount_devfs 8 , 410.Xr named 8 , 411.Xr reboot 8 , 412.Xr rpcbind 8 , 413.Xr sendmail 8 , 414.Xr shutdown 8 , 415.Xr sysctl 8 , 416.Xr syslogd 8 417.Sh HISTORY 418The 419.Nm 420utility appeared in 421.Fx 4.0 . 422.Sh AUTHORS 423.An -nosplit 424The jail feature was written by 425.An Poul-Henning Kamp 426for R&D Associates 427.Pa http://www.rndassociates.com/ 428who contributed it to 429.Fx . 430.Pp 431.An Robert Watson 432wrote the extended documentation, found a few bugs, added 433a few new features, and cleaned up the userland jail environment. 434.Sh BUGS 435Jail currently lacks the ability to allow access to 436specific jail information via 437.Xr ps 1 438as opposed to 439.Xr procfs 5 . 440Similarly, it might be a good idea to add an 441address alias flag such that daemons listening on all IPs 442.Pq Dv INADDR_ANY 443will not bind on that address, which would facilitate building a safe 444host environment such that host daemons do not impose on services offered 445from within jails. 446Currently, the simplist answer is to minimize services 447offered on the host, possibly limiting it to services offered from 448.Xr inetd 8 449which is easily configurable. 450