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