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 * ----------------------------------------------------------------------------
11 * Copyright (c) 2006 Victor Balada Diaz <victor@bsdes.net>
12 * All rights reserved.
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * $FreeBSD: src/sys/kern/kern_jail.c,v 1.6.2.3 2001/08/17 01:00:26 rwatson Exp $
39 * $DragonFly: src/sys/kern/kern_jail.c,v 1.19 2008/05/17 18:20:33 dillon Exp $
42 #include "opt_inet6.h"
44 #include <sys/param.h>
45 #include <sys/types.h>
46 #include <sys/kernel.h>
47 #include <sys/systm.h>
48 #include <sys/errno.h>
49 #include <sys/sysproto.h>
50 #include <sys/malloc.h>
51 #include <sys/nlookup.h>
52 #include <sys/namecache.h>
56 #include <sys/socket.h>
57 #include <sys/sysctl.h>
58 #include <sys/kern_syscall.h>
60 #include <netinet/in.h>
61 #include <netinet6/in6_var.h>
63 static struct prison
*prison_find(int);
64 static void prison_ipcache_init(struct prison
*);
66 MALLOC_DEFINE(M_PRISON
, "prison", "Prison structures");
68 SYSCTL_NODE(, OID_AUTO
, jail
, CTLFLAG_RW
, 0,
71 int jail_set_hostname_allowed
= 1;
72 SYSCTL_INT(_jail
, OID_AUTO
, set_hostname_allowed
, CTLFLAG_RW
,
73 &jail_set_hostname_allowed
, 0,
74 "Processes in jail can set their hostnames");
76 int jail_socket_unixiproute_only
= 1;
77 SYSCTL_INT(_jail
, OID_AUTO
, socket_unixiproute_only
, CTLFLAG_RW
,
78 &jail_socket_unixiproute_only
, 0,
79 "Processes in jail are limited to creating UNIX/IPv[46]/route sockets only");
81 int jail_sysvipc_allowed
= 0;
82 SYSCTL_INT(_jail
, OID_AUTO
, sysvipc_allowed
, CTLFLAG_RW
,
83 &jail_sysvipc_allowed
, 0,
84 "Processes in jail can use System V IPC primitives");
86 int jail_chflags_allowed
= 0;
87 SYSCTL_INT(_jail
, OID_AUTO
, chflags_allowed
, CTLFLAG_RW
,
88 &jail_chflags_allowed
, 0,
89 "Process in jail can set chflags(1)");
91 int jail_allow_raw_sockets
= 0;
92 SYSCTL_INT(_jail
, OID_AUTO
, allow_raw_sockets
, CTLFLAG_RW
,
93 &jail_allow_raw_sockets
, 0,
94 "Process in jail can create raw sockets");
99 LIST_HEAD(prisonlist
, prison
);
100 struct prisonlist allprison
= LIST_HEAD_INITIALIZER(&allprison
);
103 kern_jail_attach(int jid
)
105 struct proc
*p
= curthread
->td_proc
;
109 pr
= prison_find(jid
);
113 error
= kern_chroot(&pr
->pr_root
);
119 p
->p_ucred
->cr_prison
= pr
;
120 p
->p_flag
|= P_JAILED
;
126 assign_prison_id(struct prison
*pr
)
131 tryprid
= lastprid
+ 1;
132 if (tryprid
== JAIL_MAX
)
135 LIST_FOREACH(tpr
, &allprison
, pr_list
) {
136 if (tpr
->pr_id
!= tryprid
)
139 if (tryprid
== JAIL_MAX
) {
144 pr
->pr_id
= lastprid
= tryprid
;
150 kern_jail(struct prison
*pr
, struct jail
*j
)
153 struct nlookupdata nd
;
155 error
= nlookup_init(&nd
, j
->path
, UIO_USERSPACE
, NLC_FOLLOW
);
160 error
= nlookup(&nd
);
165 cache_copy(&nd
.nl_nch
, &pr
->pr_root
);
167 varsymset_init(&pr
->pr_varsymset
, NULL
);
168 prison_ipcache_init(pr
);
170 error
= assign_prison_id(pr
);
172 varsymset_clean(&pr
->pr_varsymset
);
177 LIST_INSERT_HEAD(&allprison
, pr
, pr_list
);
180 error
= kern_jail_attach(pr
->pr_id
);
182 LIST_REMOVE(pr
, pr_list
);
183 varsymset_clean(&pr
->pr_varsymset
);
192 * jail_args(syscallarg(struct jail *) jail)
195 sys_jail(struct jail_args
*uap
)
197 struct thread
*td
= curthread
;
199 struct jail_ip_storage
*jip
;
204 uap
->sysmsg_result
= -1;
206 error
= priv_check(td
, PRIV_JAIL_CREATE
);
210 error
= copyin(uap
->jail
, &jversion
, sizeof(jversion
));
214 pr
= kmalloc(sizeof(*pr
), M_PRISON
, M_WAITOK
| M_ZERO
);
215 SLIST_INIT(&pr
->pr_ips
);
219 /* Single IPv4 jails. */
222 struct sockaddr_in ip4addr
;
224 error
= copyin(uap
->jail
, &jv0
, sizeof(jv0
));
229 j
.hostname
= jv0
.hostname
;
231 jip
= kmalloc(sizeof(*jip
), M_PRISON
, M_WAITOK
| M_ZERO
);
232 ip4addr
.sin_family
= AF_INET
;
233 ip4addr
.sin_addr
.s_addr
= htonl(jv0
.ip_number
);
234 memcpy(&jip
->ip
, &ip4addr
, sizeof(ip4addr
));
235 SLIST_INSERT_HEAD(&pr
->pr_ips
, jip
, entries
);
241 * DragonFly multi noIP/IPv4/IPv6 jails
243 * NOTE: This version is unsupported by FreeBSD
244 * (which uses version 2 instead).
247 error
= copyin(uap
->jail
, &j
, sizeof(j
));
251 for (int i
= 0; i
< j
.n_ips
; i
++) {
252 jip
= kmalloc(sizeof(*jip
), M_PRISON
,
254 SLIST_INSERT_HEAD(&pr
->pr_ips
, jip
, entries
);
255 error
= copyin(&j
.ips
[i
], &jip
->ip
,
256 sizeof(struct sockaddr_storage
));
266 error
= copyinstr(j
.hostname
, &pr
->pr_host
, sizeof(pr
->pr_host
), 0);
270 error
= kern_jail(pr
, &j
);
274 uap
->sysmsg_result
= pr
->pr_id
;
279 while (!SLIST_EMPTY(&pr
->pr_ips
)) {
280 jip
= SLIST_FIRST(&pr
->pr_ips
);
281 SLIST_REMOVE_HEAD(&pr
->pr_ips
, entries
);
282 kfree(jip
, M_PRISON
);
289 * int jail_attach(int jid);
292 sys_jail_attach(struct jail_attach_args
*uap
)
294 struct thread
*td
= curthread
;
297 error
= priv_check(td
, PRIV_JAIL_ATTACH
);
301 return(kern_jail_attach(uap
->jid
));
305 prison_ipcache_init(struct prison
*pr
)
307 struct jail_ip_storage
*jis
;
308 struct sockaddr_in
*ip4
;
309 struct sockaddr_in6
*ip6
;
311 SLIST_FOREACH(jis
, &pr
->pr_ips
, entries
) {
312 switch (jis
->ip
.ss_family
) {
314 ip4
= (struct sockaddr_in
*)&jis
->ip
;
315 if ((ntohl(ip4
->sin_addr
.s_addr
) >> IN_CLASSA_NSHIFT
) ==
317 /* loopback address */
318 if (pr
->local_ip4
== NULL
)
322 if (pr
->nonlocal_ip4
== NULL
)
323 pr
->nonlocal_ip4
= ip4
;
328 ip6
= (struct sockaddr_in6
*)&jis
->ip
;
329 if (IN6_IS_ADDR_LOOPBACK(&ip6
->sin6_addr
)) {
330 /* loopback address */
331 if (pr
->local_ip6
== NULL
)
335 if (pr
->nonlocal_ip6
== NULL
)
336 pr
->nonlocal_ip6
= ip6
;
344 * Changes INADDR_LOOPBACK for a valid jail address.
345 * ip is in network byte order.
346 * Returns 1 if the ip is among jail valid ips.
347 * Returns 0 if is not among jail valid ips or
348 * if couldn't replace INADDR_LOOPBACK for a valid
352 prison_replace_wildcards(struct thread
*td
, struct sockaddr
*ip
)
354 struct sockaddr_in
*ip4
= (struct sockaddr_in
*)ip
;
355 struct sockaddr_in6
*ip6
= (struct sockaddr_in6
*)ip
;
358 if (td
->td_proc
== NULL
)
360 if ((pr
= td
->td_proc
->p_ucred
->cr_prison
) == NULL
)
363 if ((ip
->sa_family
== AF_INET
&&
364 ip4
->sin_addr
.s_addr
== htonl(INADDR_ANY
)) ||
365 (ip
->sa_family
== AF_INET6
&&
366 IN6_IS_ADDR_UNSPECIFIED(&ip6
->sin6_addr
)))
368 if ((ip
->sa_family
== AF_INET
&&
369 ip4
->sin_addr
.s_addr
== htonl(INADDR_LOOPBACK
)) ||
370 (ip
->sa_family
== AF_INET6
&&
371 IN6_IS_ADDR_LOOPBACK(&ip6
->sin6_addr
))) {
372 if (!prison_get_local(pr
, ip
->sa_family
, ip
) &&
373 !prison_get_nonlocal(pr
, ip
->sa_family
, ip
))
378 if (jailed_ip(pr
, ip
))
384 prison_remote_ip(struct thread
*td
, struct sockaddr
*ip
)
386 struct sockaddr_in
*ip4
= (struct sockaddr_in
*)ip
;
387 struct sockaddr_in6
*ip6
= (struct sockaddr_in6
*)ip
;
390 if (td
== NULL
|| td
->td_proc
== NULL
)
392 if ((pr
= td
->td_proc
->p_ucred
->cr_prison
) == NULL
)
394 if ((ip
->sa_family
== AF_INET
&&
395 ip4
->sin_addr
.s_addr
== htonl(INADDR_LOOPBACK
)) ||
396 (ip
->sa_family
== AF_INET6
&&
397 IN6_IS_ADDR_LOOPBACK(&ip6
->sin6_addr
))) {
398 if (!prison_get_local(pr
, ip
->sa_family
, ip
) &&
399 !prison_get_nonlocal(pr
, ip
->sa_family
, ip
))
408 * Prison get non loopback ip:
409 * - af is the address family of the ip we want (AF_INET|AF_INET6).
410 * - If ip != NULL, put the first IP address that is not a loopback address
413 * ip is in network by order and we don't touch it unless we find a valid ip.
414 * No matter if ip == NULL or not, we return either a valid struct sockaddr *,
415 * or NULL. This struct may not be modified.
418 prison_get_nonlocal(struct prison
*pr
, sa_family_t af
, struct sockaddr
*ip
)
420 struct sockaddr_in
*ip4
= (struct sockaddr_in
*)ip
;
421 struct sockaddr_in6
*ip6
= (struct sockaddr_in6
*)ip
;
423 /* Check if it is cached */
426 if (ip4
!= NULL
&& pr
->nonlocal_ip4
!= NULL
)
427 ip4
->sin_addr
.s_addr
= pr
->nonlocal_ip4
->sin_addr
.s_addr
;
428 return (struct sockaddr
*)pr
->nonlocal_ip4
;
431 if (ip6
!= NULL
&& pr
->nonlocal_ip6
!= NULL
)
432 ip6
->sin6_addr
= pr
->nonlocal_ip6
->sin6_addr
;
433 return (struct sockaddr
*)pr
->nonlocal_ip6
;
441 * Prison get loopback ip.
442 * - af is the address family of the ip we want (AF_INET|AF_INET6).
443 * - If ip != NULL, put the first IP address that is not a loopback address
446 * ip is in network by order and we don't touch it unless we find a valid ip.
447 * No matter if ip == NULL or not, we return either a valid struct sockaddr *,
448 * or NULL. This struct may not be modified.
451 prison_get_local(struct prison
*pr
, sa_family_t af
, struct sockaddr
*ip
)
453 struct sockaddr_in
*ip4
= (struct sockaddr_in
*)ip
;
454 struct sockaddr_in6
*ip6
= (struct sockaddr_in6
*)ip
;
456 /* Check if it is cached */
459 if (ip4
!= NULL
&& pr
->local_ip4
!= NULL
)
460 ip4
->sin_addr
.s_addr
= pr
->local_ip4
->sin_addr
.s_addr
;
461 return (struct sockaddr
*)pr
->local_ip4
;
464 if (ip6
!= NULL
&& pr
->local_ip6
!= NULL
)
465 ip6
->sin6_addr
= pr
->local_ip6
->sin6_addr
;
466 return (struct sockaddr
*)pr
->local_ip6
;
473 /* Check if the IP is among ours, if it is return 1, else 0 */
475 jailed_ip(struct prison
*pr
, struct sockaddr
*ip
)
477 struct jail_ip_storage
*jis
;
478 struct sockaddr_in
*jip4
, *ip4
;
479 struct sockaddr_in6
*jip6
, *ip6
;
483 ip4
= (struct sockaddr_in
*)ip
;
484 ip6
= (struct sockaddr_in6
*)ip
;
485 SLIST_FOREACH(jis
, &pr
->pr_ips
, entries
) {
486 switch (ip
->sa_family
) {
488 jip4
= (struct sockaddr_in
*) &jis
->ip
;
489 if (jip4
->sin_family
== AF_INET
&&
490 ip4
->sin_addr
.s_addr
== jip4
->sin_addr
.s_addr
)
494 jip6
= (struct sockaddr_in6
*) &jis
->ip
;
495 if (jip6
->sin6_family
== AF_INET6
&&
496 IN6_ARE_ADDR_EQUAL(&ip6
->sin6_addr
,
507 prison_if(struct ucred
*cred
, struct sockaddr
*sa
)
510 struct sockaddr_in
*sai
= (struct sockaddr_in
*) sa
;
512 pr
= cred
->cr_prison
;
514 if (((sai
->sin_family
!= AF_INET
) && (sai
->sin_family
!= AF_INET6
))
515 && jail_socket_unixiproute_only
)
517 else if ((sai
->sin_family
!= AF_INET
) && (sai
->sin_family
!= AF_INET6
))
519 else if (jailed_ip(pr
, sa
))
525 * Returns a prison instance, or NULL on failure.
527 static struct prison
*
528 prison_find(int prid
)
532 LIST_FOREACH(pr
, &allprison
, pr_list
) {
533 if (pr
->pr_id
== prid
)
540 sysctl_jail_list(SYSCTL_HANDLER_ARGS
)
542 struct jail_ip_storage
*jip
;
544 struct sockaddr_in6
*jsin6
;
546 struct sockaddr_in
*jsin
;
549 unsigned int jlssize
, jlsused
;
551 char *jls
; /* Jail list */
552 char *oip
; /* Output ip */
553 char *fullpath
, *freepath
;
556 p
= curthread
->td_proc
;
558 if (jailed(p
->p_ucred
))
566 jlssize
= (count
* 1024);
567 jls
= kmalloc(jlssize
+ 1, M_TEMP
, M_WAITOK
| M_ZERO
);
568 if (count
< prisoncount
) {
574 LIST_FOREACH(pr
, &allprison
, pr_list
) {
575 error
= cache_fullpath(p
, &pr
->pr_root
, &fullpath
, &freepath
);
578 if (jlsused
&& jlsused
< jlssize
)
579 jls
[jlsused
++] = '\n';
580 count
= ksnprintf(jls
+ jlsused
, (jlssize
- jlsused
),
582 pr
->pr_id
, pr
->pr_host
, fullpath
);
583 kfree(freepath
, M_TEMP
);
589 SLIST_FOREACH(jip
, &pr
->pr_ips
, entries
) {
590 jsin
= (struct sockaddr_in
*)&jip
->ip
;
592 switch(jsin
->sin_family
) {
594 oip
= inet_ntoa(jsin
->sin_addr
);
598 jsin6
= (struct sockaddr_in6
*)&jip
->ip
;
599 oip
= ip6_sprintf(&jsin6
->sin6_addr
);
607 if ((jlssize
- jlsused
) < (strlen(oip
) + 1)) {
611 count
= ksnprintf(jls
+ jlsused
, (jlssize
- jlsused
),
621 * pr_id <SPC> hostname1 <SPC> PATH1 <SPC> IP1 <SPC> IP2\npr_id...
623 error
= SYSCTL_OUT(req
, jls
, jlsused
);
629 SYSCTL_OID(_jail
, OID_AUTO
, list
, CTLTYPE_STRING
| CTLFLAG_RD
, NULL
, 0,
630 sysctl_jail_list
, "A", "List of active jails");
633 prison_hold(struct prison
*pr
)
639 prison_free(struct prison
*pr
)
641 struct jail_ip_storage
*jls
;
642 KKASSERT(pr
->pr_ref
>= 1);
644 if (--pr
->pr_ref
> 0)
648 while (!SLIST_EMPTY(&pr
->pr_ips
)) {
649 jls
= SLIST_FIRST(&pr
->pr_ips
);
650 SLIST_REMOVE_HEAD(&pr
->pr_ips
, entries
);
651 kfree(jls
, M_PRISON
);
653 LIST_REMOVE(pr
, pr_list
);
656 if (pr
->pr_linux
!= NULL
)
657 kfree(pr
->pr_linux
, M_PRISON
);
658 varsymset_clean(&pr
->pr_varsymset
);
659 cache_drop(&pr
->pr_root
);
664 * Check if permisson for a specific privilege is granted within jail.
669 prison_priv_check(struct ucred
*cred
, int priv
)
675 case PRIV_CRED_SETUID
:
676 case PRIV_CRED_SETEUID
:
677 case PRIV_CRED_SETGID
:
678 case PRIV_CRED_SETEGID
:
679 case PRIV_CRED_SETGROUPS
:
680 case PRIV_CRED_SETREUID
:
681 case PRIV_CRED_SETREGID
:
682 case PRIV_CRED_SETRESUID
:
683 case PRIV_CRED_SETRESGID
:
685 case PRIV_VFS_SYSFLAGS
:
688 case PRIV_VFS_CHROOT
:
690 case PRIV_VFS_CHFLAGS_DEV
:
691 case PRIV_VFS_REVOKE
:
692 case PRIV_VFS_MKNOD_BAD
:
693 case PRIV_VFS_MKNOD_WHT
:
694 case PRIV_VFS_MKNOD_DIR
:
695 case PRIV_VFS_SETATTR
:
696 case PRIV_VFS_SETGID
:
698 case PRIV_PROC_SETRLIMIT
:
699 case PRIV_PROC_SETLOGIN
:
701 case PRIV_SYSCTL_WRITEJAIL
:
703 case PRIV_VARSYM_SYS
:
705 case PRIV_SETHOSTNAME
:
707 case PRIV_PROC_TRESPASS
:
711 case PRIV_UFS_QUOTAON
:
712 case PRIV_UFS_QUOTAOFF
:
713 case PRIV_VFS_SETQUOTA
:
714 case PRIV_UFS_SETUSE
:
715 case PRIV_VFS_GETQUOTA
:
719 case PRIV_DEBUG_UNPRIV
:
724 * Allow jailed root to bind reserved ports.
726 case PRIV_NETINET_RESERVEDPORT
:
731 * Conditionally allow creating raw sockets in jail.
733 case PRIV_NETINET_RAW
:
734 if (jail_allow_raw_sockets
)
739 case PRIV_HAMMER_IOCTL
: