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