xref: /dragonfly/lib/libc/sys/jail.2 (revision 333227be)
1.\"
2.\"----------------------------------------------------------------------------
3.\""THE BEER-WARE LICENSE" (Revision 42):
4.\"<phk@FreeBSD.ORG> wrote this file.  As long as you retain this notice you
5.\"can do whatever you want with this stuff. If we meet some day, and you think
6.\"this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
7.\"----------------------------------------------------------------------------
8.\"
9.\"$FreeBSD: src/lib/libc/sys/jail.2,v 1.10.2.10 2002/12/12 05:26:38 trhodes Exp $
10.\"$DragonFly: src/lib/libc/sys/jail.2,v 1.2 2003/06/17 04:26:47 dillon Exp $
11.\"
12.Dd April 28, 1999
13.Dt JAIL 2
14.Os
15.Sh NAME
16.Nm jail
17.Nd imprison current process and future decendants
18.Sh LIBRARY
19.Lb libc
20.Sh SYNOPSIS
21.In sys/types.h
22.In sys/jail.h
23.Ft int
24.Fn jail "struct jail *jail"
25.Sh DESCRIPTION
26The
27.Nm
28system call sets up a jail and locks the current process in it.
29.Pp
30The argument is a pointer to a structure describing the prison:
31.Bd -literal -offset indent
32struct jail {
33	u_int32_t	version;
34        char 		*path;
35        char 		*hostname;
36        u_int32_t	ip_number;
37};
38.Ed
39.Pp
40.Dq Li version
41defines the version of the API in use.  It should be set to zero at this time.
42.Pp
43The
44.Dq Li path
45pointer should be set to the directory which is to be the root of the
46prison.
47.Pp
48The
49.Dq Li hostname
50pointer can be set to the hostname of the prison.  This can be changed
51from the inside of the prison.
52.Pp
53The
54.Dq Li ip_number
55can be set to the IP number assigned to the prison.
56.Sh PRISON?
57Once a process has been put in a prison, it and its decendants cannot escape
58the prison.  It is not possible to add a process to a preexisting prison.
59.Pp
60Inside the prison, the concept of "superuser" is very diluted.  In general,
61it can be assumed that nothing can be mangled from inside a prison which
62does not exist entirely inside that prison.  For instance the directory
63tree below
64.Dq Li path
65can be manipulated all the ways a root can normally do it, including
66.Dq Li "rm -rf /*"
67but new device special nodes cannot be created because they reference
68shared resources (the device drivers in the kernel).
69.Pp
70All IP activity will be forced to happen to/from the IP number specified,
71which should be an alias on one of the network interfaces.
72.Pp
73It is possible to identify a process as jailed by examining
74.Dq Li /proc/<pid>/status :
75it will show a field near the end of the line, either as
76a single hyphen for a process at large, or the hostname currently
77set for the prison for jailed processes.
78.Sh ERRORS
79.Fn jail
80will fail if:
81.Bl -tag -width Er
82.It Bq Er EINVAL
83The version number of the argument is not correct.
84.El
85.Pp
86Further
87.Fn jail
88calls
89.Xr chroot 2
90internally, so it can fail for all the same reasons.
91Please consult the
92.Xr chroot 2
93manual page for details.
94.Sh SEE ALSO
95.Xr chdir 2 ,
96.Xr chroot 2
97.Sh HISTORY
98The
99.Fn jail
100function call appeared in
101.Fx 4.0 .
102.Sh AUTHORS
103The jail feature was written by
104.An Poul-Henning Kamp
105for R&D Associates
106.Dq Li http://www.rndassociates.com/
107who contributed it to
108.Fx .
109