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