]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_jail.c
MFV r331706:
[FreeBSD/FreeBSD.git] / sys / kern / kern_jail.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 1999 Poul-Henning Kamp.
5  * Copyright (c) 2008 Bjoern A. Zeeb.
6  * Copyright (c) 2009 James Gritton.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 #include "opt_compat.h"
35 #include "opt_ddb.h"
36 #include "opt_inet.h"
37 #include "opt_inet6.h"
38
39 #include <sys/param.h>
40 #include <sys/types.h>
41 #include <sys/kernel.h>
42 #include <sys/systm.h>
43 #include <sys/errno.h>
44 #include <sys/sysproto.h>
45 #include <sys/malloc.h>
46 #include <sys/osd.h>
47 #include <sys/priv.h>
48 #include <sys/proc.h>
49 #include <sys/taskqueue.h>
50 #include <sys/fcntl.h>
51 #include <sys/jail.h>
52 #include <sys/lock.h>
53 #include <sys/mutex.h>
54 #include <sys/racct.h>
55 #include <sys/refcount.h>
56 #include <sys/sx.h>
57 #include <sys/sysent.h>
58 #include <sys/namei.h>
59 #include <sys/mount.h>
60 #include <sys/queue.h>
61 #include <sys/socket.h>
62 #include <sys/syscallsubr.h>
63 #include <sys/sysctl.h>
64 #include <sys/vnode.h>
65
66 #include <net/if.h>
67 #include <net/vnet.h>
68
69 #include <netinet/in.h>
70
71 #ifdef DDB
72 #include <ddb/ddb.h>
73 #endif /* DDB */
74
75 #include <security/mac/mac_framework.h>
76
77 #define DEFAULT_HOSTUUID        "00000000-0000-0000-0000-000000000000"
78
79 MALLOC_DEFINE(M_PRISON, "prison", "Prison structures");
80 static MALLOC_DEFINE(M_PRISON_RACCT, "prison_racct", "Prison racct structures");
81
82 /* Keep struct prison prison0 and some code in kern_jail_set() readable. */
83 #ifdef INET
84 #ifdef INET6
85 #define _PR_IP_SADDRSEL PR_IP4_SADDRSEL|PR_IP6_SADDRSEL
86 #else
87 #define _PR_IP_SADDRSEL PR_IP4_SADDRSEL
88 #endif
89 #else /* !INET */
90 #ifdef INET6
91 #define _PR_IP_SADDRSEL PR_IP6_SADDRSEL
92 #else
93 #define _PR_IP_SADDRSEL 0
94 #endif
95 #endif
96
97 /* prison0 describes what is "real" about the system. */
98 struct prison prison0 = {
99         .pr_id          = 0,
100         .pr_name        = "0",
101         .pr_ref         = 1,
102         .pr_uref        = 1,
103         .pr_path        = "/",
104         .pr_securelevel = -1,
105         .pr_devfs_rsnum = 0,
106         .pr_childmax    = JAIL_MAX,
107         .pr_hostuuid    = DEFAULT_HOSTUUID,
108         .pr_children    = LIST_HEAD_INITIALIZER(prison0.pr_children),
109 #ifdef VIMAGE
110         .pr_flags       = PR_HOST|PR_VNET|_PR_IP_SADDRSEL,
111 #else
112         .pr_flags       = PR_HOST|_PR_IP_SADDRSEL,
113 #endif
114         .pr_allow       = PR_ALLOW_ALL,
115 };
116 MTX_SYSINIT(prison0, &prison0.pr_mtx, "jail mutex", MTX_DEF);
117
118 struct bool_flags {
119         const char      *name;
120         const char      *noname;
121         unsigned         flag;
122 };
123 struct jailsys_flags {
124         const char      *name;
125         unsigned         disable;
126         unsigned         new;
127 };
128
129 /* allprison, allprison_racct and lastprid are protected by allprison_lock. */
130 struct  sx allprison_lock;
131 SX_SYSINIT(allprison_lock, &allprison_lock, "allprison");
132 struct  prisonlist allprison = TAILQ_HEAD_INITIALIZER(allprison);
133 LIST_HEAD(, prison_racct) allprison_racct;
134 int     lastprid = 0;
135
136 static int do_jail_attach(struct thread *td, struct prison *pr);
137 static void prison_complete(void *context, int pending);
138 static void prison_deref(struct prison *pr, int flags);
139 static char *prison_path(struct prison *pr1, struct prison *pr2);
140 static void prison_remove_one(struct prison *pr);
141 #ifdef RACCT
142 static void prison_racct_attach(struct prison *pr);
143 static void prison_racct_modify(struct prison *pr);
144 static void prison_racct_detach(struct prison *pr);
145 #endif
146
147 /* Flags for prison_deref */
148 #define PD_DEREF        0x01
149 #define PD_DEUREF       0x02
150 #define PD_LOCKED       0x04
151 #define PD_LIST_SLOCKED 0x08
152 #define PD_LIST_XLOCKED 0x10
153
154 /*
155  * Parameter names corresponding to PR_* flag values.  Size values are for kvm
156  * as we cannot figure out the size of a sparse array, or an array without a
157  * terminating entry.
158  */
159 static struct bool_flags pr_flag_bool[] = {
160         {"persist", "nopersist", PR_PERSIST},
161 #ifdef INET
162         {"ip4.saddrsel", "ip4.nosaddrsel", PR_IP4_SADDRSEL},
163 #endif
164 #ifdef INET6
165         {"ip6.saddrsel", "ip6.nosaddrsel", PR_IP6_SADDRSEL},
166 #endif
167 };
168 const size_t pr_flag_bool_size = sizeof(pr_flag_bool);
169
170 static struct jailsys_flags pr_flag_jailsys[] = {
171         {"host", 0, PR_HOST},
172 #ifdef VIMAGE
173         {"vnet", 0, PR_VNET},
174 #endif
175 #ifdef INET
176         {"ip4", PR_IP4_USER, PR_IP4_USER},
177 #endif
178 #ifdef INET6
179         {"ip6", PR_IP6_USER, PR_IP6_USER},
180 #endif
181 };
182 const size_t pr_flag_jailsys_size = sizeof(pr_flag_jailsys);
183
184 static struct bool_flags pr_flag_allow[] = {
185         {"allow.set_hostname", "allow.noset_hostname", PR_ALLOW_SET_HOSTNAME},
186         {"allow.sysvipc", "allow.nosysvipc", PR_ALLOW_SYSVIPC},
187         {"allow.raw_sockets", "allow.noraw_sockets", PR_ALLOW_RAW_SOCKETS},
188         {"allow.chflags", "allow.nochflags", PR_ALLOW_CHFLAGS},
189         {"allow.mount", "allow.nomount", PR_ALLOW_MOUNT},
190         {"allow.quotas", "allow.noquotas", PR_ALLOW_QUOTAS},
191         {"allow.socket_af", "allow.nosocket_af", PR_ALLOW_SOCKET_AF},
192         {"allow.mount.devfs", "allow.mount.nodevfs", PR_ALLOW_MOUNT_DEVFS},
193         {"allow.mount.nullfs", "allow.mount.nonullfs", PR_ALLOW_MOUNT_NULLFS},
194         {"allow.mount.zfs", "allow.mount.nozfs", PR_ALLOW_MOUNT_ZFS},
195         {"allow.mount.procfs", "allow.mount.noprocfs", PR_ALLOW_MOUNT_PROCFS},
196         {"allow.mount.tmpfs", "allow.mount.notmpfs", PR_ALLOW_MOUNT_TMPFS},
197         {"allow.mount.fdescfs", "allow.mount.nofdescfs",
198          PR_ALLOW_MOUNT_FDESCFS},
199         {"allow.mount.linprocfs", "allow.mount.nolinprocfs",
200          PR_ALLOW_MOUNT_LINPROCFS},
201         {"allow.mount.linsysfs", "allow.mount.nolinsysfs",
202          PR_ALLOW_MOUNT_LINSYSFS},
203         {"allow.reserved_ports", "allow.noreserved_ports",
204          PR_ALLOW_RESERVED_PORTS},
205 };
206 const size_t pr_flag_allow_size = sizeof(pr_flag_allow);
207
208 #define JAIL_DEFAULT_ALLOW              (PR_ALLOW_SET_HOSTNAME | PR_ALLOW_RESERVED_PORTS)
209 #define JAIL_DEFAULT_ENFORCE_STATFS     2
210 #define JAIL_DEFAULT_DEVFS_RSNUM        0
211 static unsigned jail_default_allow = JAIL_DEFAULT_ALLOW;
212 static int jail_default_enforce_statfs = JAIL_DEFAULT_ENFORCE_STATFS;
213 static int jail_default_devfs_rsnum = JAIL_DEFAULT_DEVFS_RSNUM;
214 #if defined(INET) || defined(INET6)
215 static unsigned jail_max_af_ips = 255;
216 #endif
217
218 /*
219  * Initialize the parts of prison0 that can't be static-initialized with
220  * constants.  This is called from proc0_init() after creating thread0 cpuset.
221  */
222 void
223 prison0_init(void)
224 {
225
226         prison0.pr_cpuset = cpuset_ref(thread0.td_cpuset);
227         prison0.pr_osreldate = osreldate;
228         strlcpy(prison0.pr_osrelease, osrelease, sizeof(prison0.pr_osrelease));
229 }
230
231 /*
232  * struct jail_args {
233  *      struct jail *jail;
234  * };
235  */
236 int
237 sys_jail(struct thread *td, struct jail_args *uap)
238 {
239         uint32_t version;
240         int error;
241         struct jail j;
242
243         error = copyin(uap->jail, &version, sizeof(uint32_t));
244         if (error)
245                 return (error);
246
247         switch (version) {
248         case 0:
249         {
250                 struct jail_v0 j0;
251
252                 /* FreeBSD single IPv4 jails. */
253                 bzero(&j, sizeof(struct jail));
254                 error = copyin(uap->jail, &j0, sizeof(struct jail_v0));
255                 if (error)
256                         return (error);
257                 j.version = j0.version;
258                 j.path = j0.path;
259                 j.hostname = j0.hostname;
260                 j.ip4s = htonl(j0.ip_number);   /* jail_v0 is host order */
261                 break;
262         }
263
264         case 1:
265                 /*
266                  * Version 1 was used by multi-IPv4 jail implementations
267                  * that never made it into the official kernel.
268                  */
269                 return (EINVAL);
270
271         case 2: /* JAIL_API_VERSION */
272                 /* FreeBSD multi-IPv4/IPv6,noIP jails. */
273                 error = copyin(uap->jail, &j, sizeof(struct jail));
274                 if (error)
275                         return (error);
276                 break;
277
278         default:
279                 /* Sci-Fi jails are not supported, sorry. */
280                 return (EINVAL);
281         }
282         return (kern_jail(td, &j));
283 }
284
285 int
286 kern_jail(struct thread *td, struct jail *j)
287 {
288         struct iovec optiov[2 * (4 + nitems(pr_flag_allow)
289 #ifdef INET
290                             + 1
291 #endif
292 #ifdef INET6
293                             + 1
294 #endif
295                             )];
296         struct uio opt;
297         char *u_path, *u_hostname, *u_name;
298         struct bool_flags *bf;
299 #ifdef INET
300         uint32_t ip4s;
301         struct in_addr *u_ip4;
302 #endif
303 #ifdef INET6
304         struct in6_addr *u_ip6;
305 #endif
306         size_t tmplen;
307         int error, enforce_statfs;
308
309         bzero(&optiov, sizeof(optiov));
310         opt.uio_iov = optiov;
311         opt.uio_iovcnt = 0;
312         opt.uio_offset = -1;
313         opt.uio_resid = -1;
314         opt.uio_segflg = UIO_SYSSPACE;
315         opt.uio_rw = UIO_READ;
316         opt.uio_td = td;
317
318         /* Set permissions for top-level jails from sysctls. */
319         if (!jailed(td->td_ucred)) {
320                 for (bf = pr_flag_allow;
321                      bf < pr_flag_allow + nitems(pr_flag_allow);
322                      bf++) {
323                         optiov[opt.uio_iovcnt].iov_base = __DECONST(char *,
324                             (jail_default_allow & bf->flag)
325                             ? bf->name : bf->noname);
326                         optiov[opt.uio_iovcnt].iov_len =
327                             strlen(optiov[opt.uio_iovcnt].iov_base) + 1;
328                         opt.uio_iovcnt += 2;
329                 }
330                 optiov[opt.uio_iovcnt].iov_base = "enforce_statfs";
331                 optiov[opt.uio_iovcnt].iov_len = sizeof("enforce_statfs");
332                 opt.uio_iovcnt++;
333                 enforce_statfs = jail_default_enforce_statfs;
334                 optiov[opt.uio_iovcnt].iov_base = &enforce_statfs;
335                 optiov[opt.uio_iovcnt].iov_len = sizeof(enforce_statfs);
336                 opt.uio_iovcnt++;
337         }
338
339         tmplen = MAXPATHLEN + MAXHOSTNAMELEN + MAXHOSTNAMELEN;
340 #ifdef INET
341         ip4s = (j->version == 0) ? 1 : j->ip4s;
342         if (ip4s > jail_max_af_ips)
343                 return (EINVAL);
344         tmplen += ip4s * sizeof(struct in_addr);
345 #else
346         if (j->ip4s > 0)
347                 return (EINVAL);
348 #endif
349 #ifdef INET6
350         if (j->ip6s > jail_max_af_ips)
351                 return (EINVAL);
352         tmplen += j->ip6s * sizeof(struct in6_addr);
353 #else
354         if (j->ip6s > 0)
355                 return (EINVAL);
356 #endif
357         u_path = malloc(tmplen, M_TEMP, M_WAITOK);
358         u_hostname = u_path + MAXPATHLEN;
359         u_name = u_hostname + MAXHOSTNAMELEN;
360 #ifdef INET
361         u_ip4 = (struct in_addr *)(u_name + MAXHOSTNAMELEN);
362 #endif
363 #ifdef INET6
364 #ifdef INET
365         u_ip6 = (struct in6_addr *)(u_ip4 + ip4s);
366 #else
367         u_ip6 = (struct in6_addr *)(u_name + MAXHOSTNAMELEN);
368 #endif
369 #endif
370         optiov[opt.uio_iovcnt].iov_base = "path";
371         optiov[opt.uio_iovcnt].iov_len = sizeof("path");
372         opt.uio_iovcnt++;
373         optiov[opt.uio_iovcnt].iov_base = u_path;
374         error = copyinstr(j->path, u_path, MAXPATHLEN,
375             &optiov[opt.uio_iovcnt].iov_len);
376         if (error) {
377                 free(u_path, M_TEMP);
378                 return (error);
379         }
380         opt.uio_iovcnt++;
381         optiov[opt.uio_iovcnt].iov_base = "host.hostname";
382         optiov[opt.uio_iovcnt].iov_len = sizeof("host.hostname");
383         opt.uio_iovcnt++;
384         optiov[opt.uio_iovcnt].iov_base = u_hostname;
385         error = copyinstr(j->hostname, u_hostname, MAXHOSTNAMELEN,
386             &optiov[opt.uio_iovcnt].iov_len);
387         if (error) {
388                 free(u_path, M_TEMP);
389                 return (error);
390         }
391         opt.uio_iovcnt++;
392         if (j->jailname != NULL) {
393                 optiov[opt.uio_iovcnt].iov_base = "name";
394                 optiov[opt.uio_iovcnt].iov_len = sizeof("name");
395                 opt.uio_iovcnt++;
396                 optiov[opt.uio_iovcnt].iov_base = u_name;
397                 error = copyinstr(j->jailname, u_name, MAXHOSTNAMELEN,
398                     &optiov[opt.uio_iovcnt].iov_len);
399                 if (error) {
400                         free(u_path, M_TEMP);
401                         return (error);
402                 }
403                 opt.uio_iovcnt++;
404         }
405 #ifdef INET
406         optiov[opt.uio_iovcnt].iov_base = "ip4.addr";
407         optiov[opt.uio_iovcnt].iov_len = sizeof("ip4.addr");
408         opt.uio_iovcnt++;
409         optiov[opt.uio_iovcnt].iov_base = u_ip4;
410         optiov[opt.uio_iovcnt].iov_len = ip4s * sizeof(struct in_addr);
411         if (j->version == 0)
412                 u_ip4->s_addr = j->ip4s;
413         else {
414                 error = copyin(j->ip4, u_ip4, optiov[opt.uio_iovcnt].iov_len);
415                 if (error) {
416                         free(u_path, M_TEMP);
417                         return (error);
418                 }
419         }
420         opt.uio_iovcnt++;
421 #endif
422 #ifdef INET6
423         optiov[opt.uio_iovcnt].iov_base = "ip6.addr";
424         optiov[opt.uio_iovcnt].iov_len = sizeof("ip6.addr");
425         opt.uio_iovcnt++;
426         optiov[opt.uio_iovcnt].iov_base = u_ip6;
427         optiov[opt.uio_iovcnt].iov_len = j->ip6s * sizeof(struct in6_addr);
428         error = copyin(j->ip6, u_ip6, optiov[opt.uio_iovcnt].iov_len);
429         if (error) {
430                 free(u_path, M_TEMP);
431                 return (error);
432         }
433         opt.uio_iovcnt++;
434 #endif
435         KASSERT(opt.uio_iovcnt <= nitems(optiov),
436                 ("kern_jail: too many iovecs (%d)", opt.uio_iovcnt));
437         error = kern_jail_set(td, &opt, JAIL_CREATE | JAIL_ATTACH);
438         free(u_path, M_TEMP);
439         return (error);
440 }
441
442
443 /*
444  * struct jail_set_args {
445  *      struct iovec *iovp;
446  *      unsigned int iovcnt;
447  *      int flags;
448  * };
449  */
450 int
451 sys_jail_set(struct thread *td, struct jail_set_args *uap)
452 {
453         struct uio *auio;
454         int error;
455
456         /* Check that we have an even number of iovecs. */
457         if (uap->iovcnt & 1)
458                 return (EINVAL);
459
460         error = copyinuio(uap->iovp, uap->iovcnt, &auio);
461         if (error)
462                 return (error);
463         error = kern_jail_set(td, auio, uap->flags);
464         free(auio, M_IOV);
465         return (error);
466 }
467
468 int
469 kern_jail_set(struct thread *td, struct uio *optuio, int flags)
470 {
471         struct nameidata nd;
472 #ifdef INET
473         struct in_addr *ip4;
474 #endif
475 #ifdef INET6
476         struct in6_addr *ip6;
477 #endif
478         struct vfsopt *opt;
479         struct vfsoptlist *opts;
480         struct prison *pr, *deadpr, *mypr, *ppr, *tpr;
481         struct vnode *root;
482         char *domain, *errmsg, *host, *name, *namelc, *p, *path, *uuid;
483         char *g_path, *osrelstr;
484         struct bool_flags *bf;
485         struct jailsys_flags *jsf;
486 #if defined(INET) || defined(INET6)
487         struct prison *tppr;
488         void *op;
489 #endif
490         unsigned long hid;
491         size_t namelen, onamelen, pnamelen;
492         int born, created, cuflags, descend, enforce;
493         int error, errmsg_len, errmsg_pos;
494         int gotchildmax, gotenforce, gothid, gotrsnum, gotslevel;
495         int jid, jsys, len, level;
496         int childmax, osreldt, rsnum, slevel;
497         int fullpath_disabled;
498 #if defined(INET) || defined(INET6)
499         int ii, ij;
500 #endif
501 #ifdef INET
502         int ip4s, redo_ip4;
503 #endif
504 #ifdef INET6
505         int ip6s, redo_ip6;
506 #endif
507         uint64_t pr_allow, ch_allow, pr_flags, ch_flags;
508         unsigned tallow;
509         char numbuf[12];
510
511         error = priv_check(td, PRIV_JAIL_SET);
512         if (!error && (flags & JAIL_ATTACH))
513                 error = priv_check(td, PRIV_JAIL_ATTACH);
514         if (error)
515                 return (error);
516         mypr = td->td_ucred->cr_prison;
517         if ((flags & JAIL_CREATE) && mypr->pr_childmax == 0)
518                 return (EPERM);
519         if (flags & ~JAIL_SET_MASK)
520                 return (EINVAL);
521
522         /*
523          * Check all the parameters before committing to anything.  Not all
524          * errors can be caught early, but we may as well try.  Also, this
525          * takes care of some expensive stuff (path lookup) before getting
526          * the allprison lock.
527          *
528          * XXX Jails are not filesystems, and jail parameters are not mount
529          *     options.  But it makes more sense to re-use the vfsopt code
530          *     than duplicate it under a different name.
531          */
532         error = vfs_buildopts(optuio, &opts);
533         if (error)
534                 return (error);
535 #ifdef INET
536         ip4 = NULL;
537 #endif
538 #ifdef INET6
539         ip6 = NULL;
540 #endif
541         g_path = NULL;
542
543         cuflags = flags & (JAIL_CREATE | JAIL_UPDATE);
544         if (!cuflags) {
545                 error = EINVAL;
546                 vfs_opterror(opts, "no valid operation (create or update)");
547                 goto done_errmsg;
548         }
549
550         error = vfs_copyopt(opts, "jid", &jid, sizeof(jid));
551         if (error == ENOENT)
552                 jid = 0;
553         else if (error != 0)
554                 goto done_free;
555
556         error = vfs_copyopt(opts, "securelevel", &slevel, sizeof(slevel));
557         if (error == ENOENT)
558                 gotslevel = 0;
559         else if (error != 0)
560                 goto done_free;
561         else
562                 gotslevel = 1;
563
564         error =
565             vfs_copyopt(opts, "children.max", &childmax, sizeof(childmax));
566         if (error == ENOENT)
567                 gotchildmax = 0;
568         else if (error != 0)
569                 goto done_free;
570         else
571                 gotchildmax = 1;
572
573         error = vfs_copyopt(opts, "enforce_statfs", &enforce, sizeof(enforce));
574         if (error == ENOENT)
575                 gotenforce = 0;
576         else if (error != 0)
577                 goto done_free;
578         else if (enforce < 0 || enforce > 2) {
579                 error = EINVAL;
580                 goto done_free;
581         } else
582                 gotenforce = 1;
583
584         error = vfs_copyopt(opts, "devfs_ruleset", &rsnum, sizeof(rsnum));
585         if (error == ENOENT)
586                 gotrsnum = 0;
587         else if (error != 0)
588                 goto done_free;
589         else
590                 gotrsnum = 1;
591
592         pr_flags = ch_flags = 0;
593         for (bf = pr_flag_bool;
594              bf < pr_flag_bool + nitems(pr_flag_bool);
595              bf++) {
596                 vfs_flagopt(opts, bf->name, &pr_flags, bf->flag);
597                 vfs_flagopt(opts, bf->noname, &ch_flags, bf->flag);
598         }
599         ch_flags |= pr_flags;
600         for (jsf = pr_flag_jailsys;
601              jsf < pr_flag_jailsys + nitems(pr_flag_jailsys);
602              jsf++) {
603                 error = vfs_copyopt(opts, jsf->name, &jsys, sizeof(jsys));
604                 if (error == ENOENT)
605                         continue;
606                 if (error != 0)
607                         goto done_free;
608                 switch (jsys) {
609                 case JAIL_SYS_DISABLE:
610                         if (!jsf->disable) {
611                                 error = EINVAL;
612                                 goto done_free;
613                         }
614                         pr_flags |= jsf->disable;
615                         break;
616                 case JAIL_SYS_NEW:
617                         pr_flags |= jsf->new;
618                         break;
619                 case JAIL_SYS_INHERIT:
620                         break;
621                 default:
622                         error = EINVAL;
623                         goto done_free;
624                 }
625                 ch_flags |= jsf->new | jsf->disable;
626         }
627         if ((flags & (JAIL_CREATE | JAIL_UPDATE | JAIL_ATTACH)) == JAIL_CREATE
628             && !(pr_flags & PR_PERSIST)) {
629                 error = EINVAL;
630                 vfs_opterror(opts, "new jail must persist or attach");
631                 goto done_errmsg;
632         }
633 #ifdef VIMAGE
634         if ((flags & JAIL_UPDATE) && (ch_flags & PR_VNET)) {
635                 error = EINVAL;
636                 vfs_opterror(opts, "vnet cannot be changed after creation");
637                 goto done_errmsg;
638         }
639 #endif
640 #ifdef INET
641         if ((flags & JAIL_UPDATE) && (ch_flags & PR_IP4_USER)) {
642                 error = EINVAL;
643                 vfs_opterror(opts, "ip4 cannot be changed after creation");
644                 goto done_errmsg;
645         }
646 #endif
647 #ifdef INET6
648         if ((flags & JAIL_UPDATE) && (ch_flags & PR_IP6_USER)) {
649                 error = EINVAL;
650                 vfs_opterror(opts, "ip6 cannot be changed after creation");
651                 goto done_errmsg;
652         }
653 #endif
654
655         pr_allow = ch_allow = 0;
656         for (bf = pr_flag_allow;
657              bf < pr_flag_allow + nitems(pr_flag_allow);
658              bf++) {
659                 vfs_flagopt(opts, bf->name, &pr_allow, bf->flag);
660                 vfs_flagopt(opts, bf->noname, &ch_allow, bf->flag);
661         }
662         ch_allow |= pr_allow;
663
664         error = vfs_getopt(opts, "name", (void **)&name, &len);
665         if (error == ENOENT)
666                 name = NULL;
667         else if (error != 0)
668                 goto done_free;
669         else {
670                 if (len == 0 || name[len - 1] != '\0') {
671                         error = EINVAL;
672                         goto done_free;
673                 }
674                 if (len > MAXHOSTNAMELEN) {
675                         error = ENAMETOOLONG;
676                         goto done_free;
677                 }
678         }
679
680         error = vfs_getopt(opts, "host.hostname", (void **)&host, &len);
681         if (error == ENOENT)
682                 host = NULL;
683         else if (error != 0)
684                 goto done_free;
685         else {
686                 ch_flags |= PR_HOST;
687                 pr_flags |= PR_HOST;
688                 if (len == 0 || host[len - 1] != '\0') {
689                         error = EINVAL;
690                         goto done_free;
691                 }
692                 if (len > MAXHOSTNAMELEN) {
693                         error = ENAMETOOLONG;
694                         goto done_free;
695                 }
696         }
697
698         error = vfs_getopt(opts, "host.domainname", (void **)&domain, &len);
699         if (error == ENOENT)
700                 domain = NULL;
701         else if (error != 0)
702                 goto done_free;
703         else {
704                 ch_flags |= PR_HOST;
705                 pr_flags |= PR_HOST;
706                 if (len == 0 || domain[len - 1] != '\0') {
707                         error = EINVAL;
708                         goto done_free;
709                 }
710                 if (len > MAXHOSTNAMELEN) {
711                         error = ENAMETOOLONG;
712                         goto done_free;
713                 }
714         }
715
716         error = vfs_getopt(opts, "host.hostuuid", (void **)&uuid, &len);
717         if (error == ENOENT)
718                 uuid = NULL;
719         else if (error != 0)
720                 goto done_free;
721         else {
722                 ch_flags |= PR_HOST;
723                 pr_flags |= PR_HOST;
724                 if (len == 0 || uuid[len - 1] != '\0') {
725                         error = EINVAL;
726                         goto done_free;
727                 }
728                 if (len > HOSTUUIDLEN) {
729                         error = ENAMETOOLONG;
730                         goto done_free;
731                 }
732         }
733
734 #ifdef COMPAT_FREEBSD32
735         if (SV_PROC_FLAG(td->td_proc, SV_ILP32)) {
736                 uint32_t hid32;
737
738                 error = vfs_copyopt(opts, "host.hostid", &hid32, sizeof(hid32));
739                 hid = hid32;
740         } else
741 #endif
742                 error = vfs_copyopt(opts, "host.hostid", &hid, sizeof(hid));
743         if (error == ENOENT)
744                 gothid = 0;
745         else if (error != 0)
746                 goto done_free;
747         else {
748                 gothid = 1;
749                 ch_flags |= PR_HOST;
750                 pr_flags |= PR_HOST;
751         }
752
753 #ifdef INET
754         error = vfs_getopt(opts, "ip4.addr", &op, &ip4s);
755         if (error == ENOENT)
756                 ip4s = 0;
757         else if (error != 0)
758                 goto done_free;
759         else if (ip4s & (sizeof(*ip4) - 1)) {
760                 error = EINVAL;
761                 goto done_free;
762         } else {
763                 ch_flags |= PR_IP4_USER;
764                 pr_flags |= PR_IP4_USER;
765                 if (ip4s > 0) {
766                         ip4s /= sizeof(*ip4);
767                         if (ip4s > jail_max_af_ips) {
768                                 error = EINVAL;
769                                 vfs_opterror(opts, "too many IPv4 addresses");
770                                 goto done_errmsg;
771                         }
772                         ip4 = malloc(ip4s * sizeof(*ip4), M_PRISON, M_WAITOK);
773                         bcopy(op, ip4, ip4s * sizeof(*ip4));
774                         /*
775                          * IP addresses are all sorted but ip[0] to preserve
776                          * the primary IP address as given from userland.
777                          * This special IP is used for unbound outgoing
778                          * connections as well for "loopback" traffic in case
779                          * source address selection cannot find any more fitting
780                          * address to connect from.
781                          */
782                         if (ip4s > 1)
783                                 qsort(ip4 + 1, ip4s - 1, sizeof(*ip4),
784                                     prison_qcmp_v4);
785                         /*
786                          * Check for duplicate addresses and do some simple
787                          * zero and broadcast checks. If users give other bogus
788                          * addresses it is their problem.
789                          *
790                          * We do not have to care about byte order for these
791                          * checks so we will do them in NBO.
792                          */
793                         for (ii = 0; ii < ip4s; ii++) {
794                                 if (ip4[ii].s_addr == INADDR_ANY ||
795                                     ip4[ii].s_addr == INADDR_BROADCAST) {
796                                         error = EINVAL;
797                                         goto done_free;
798                                 }
799                                 if ((ii+1) < ip4s &&
800                                     (ip4[0].s_addr == ip4[ii+1].s_addr ||
801                                      ip4[ii].s_addr == ip4[ii+1].s_addr)) {
802                                         error = EINVAL;
803                                         goto done_free;
804                                 }
805                         }
806                 }
807         }
808 #endif
809
810 #ifdef INET6
811         error = vfs_getopt(opts, "ip6.addr", &op, &ip6s);
812         if (error == ENOENT)
813                 ip6s = 0;
814         else if (error != 0)
815                 goto done_free;
816         else if (ip6s & (sizeof(*ip6) - 1)) {
817                 error = EINVAL;
818                 goto done_free;
819         } else {
820                 ch_flags |= PR_IP6_USER;
821                 pr_flags |= PR_IP6_USER;
822                 if (ip6s > 0) {
823                         ip6s /= sizeof(*ip6);
824                         if (ip6s > jail_max_af_ips) {
825                                 error = EINVAL;
826                                 vfs_opterror(opts, "too many IPv6 addresses");
827                                 goto done_errmsg;
828                         }
829                         ip6 = malloc(ip6s * sizeof(*ip6), M_PRISON, M_WAITOK);
830                         bcopy(op, ip6, ip6s * sizeof(*ip6));
831                         if (ip6s > 1)
832                                 qsort(ip6 + 1, ip6s - 1, sizeof(*ip6),
833                                     prison_qcmp_v6);
834                         for (ii = 0; ii < ip6s; ii++) {
835                                 if (IN6_IS_ADDR_UNSPECIFIED(&ip6[ii])) {
836                                         error = EINVAL;
837                                         goto done_free;
838                                 }
839                                 if ((ii+1) < ip6s &&
840                                     (IN6_ARE_ADDR_EQUAL(&ip6[0], &ip6[ii+1]) ||
841                                      IN6_ARE_ADDR_EQUAL(&ip6[ii], &ip6[ii+1])))
842                                 {
843                                         error = EINVAL;
844                                         goto done_free;
845                                 }
846                         }
847                 }
848         }
849 #endif
850
851 #if defined(VIMAGE) && (defined(INET) || defined(INET6))
852         if ((ch_flags & PR_VNET) && (ch_flags & (PR_IP4_USER | PR_IP6_USER))) {
853                 error = EINVAL;
854                 vfs_opterror(opts,
855                     "vnet jails cannot have IP address restrictions");
856                 goto done_errmsg;
857         }
858 #endif
859
860         error = vfs_getopt(opts, "osrelease", (void **)&osrelstr, &len);
861         if (error == ENOENT)
862                 osrelstr = NULL;
863         else if (error != 0)
864                 goto done_free;
865         else {
866                 if (flags & JAIL_UPDATE) {
867                         error = EINVAL;
868                         vfs_opterror(opts,
869                             "osrelease cannot be changed after creation");
870                         goto done_errmsg;
871                 }
872                 if (len == 0 || len >= OSRELEASELEN) {
873                         error = EINVAL;
874                         vfs_opterror(opts,
875                             "osrelease string must be 1-%d bytes long",
876                             OSRELEASELEN - 1);
877                         goto done_errmsg;
878                 }
879         }
880
881         error = vfs_copyopt(opts, "osreldate", &osreldt, sizeof(osreldt));
882         if (error == ENOENT)
883                 osreldt = 0;
884         else if (error != 0)
885                 goto done_free;
886         else {
887                 if (flags & JAIL_UPDATE) {
888                         error = EINVAL;
889                         vfs_opterror(opts,
890                             "osreldate cannot be changed after creation");
891                         goto done_errmsg;
892                 }
893                 if (osreldt == 0) {
894                         error = EINVAL;
895                         vfs_opterror(opts, "osreldate cannot be 0");
896                         goto done_errmsg;
897                 }
898         }
899
900         fullpath_disabled = 0;
901         root = NULL;
902         error = vfs_getopt(opts, "path", (void **)&path, &len);
903         if (error == ENOENT)
904                 path = NULL;
905         else if (error != 0)
906                 goto done_free;
907         else {
908                 if (flags & JAIL_UPDATE) {
909                         error = EINVAL;
910                         vfs_opterror(opts,
911                             "path cannot be changed after creation");
912                         goto done_errmsg;
913                 }
914                 if (len == 0 || path[len - 1] != '\0') {
915                         error = EINVAL;
916                         goto done_free;
917                 }
918                 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE,
919                     path, td);
920                 error = namei(&nd);
921                 if (error)
922                         goto done_free;
923                 root = nd.ni_vp;
924                 NDFREE(&nd, NDF_ONLY_PNBUF);
925                 g_path = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
926                 strlcpy(g_path, path, MAXPATHLEN);
927                 error = vn_path_to_global_path(td, root, g_path, MAXPATHLEN);
928                 if (error == 0)
929                         path = g_path;
930                 else if (error == ENODEV) {
931                         /* proceed if sysctl debug.disablefullpath == 1 */
932                         fullpath_disabled = 1;
933                         if (len < 2 || (len == 2 && path[0] == '/'))
934                                 path = NULL;
935                 } else {
936                         /* exit on other errors */
937                         goto done_free;
938                 }
939                 if (root->v_type != VDIR) {
940                         error = ENOTDIR;
941                         vput(root);
942                         goto done_free;
943                 }
944                 VOP_UNLOCK(root, 0);
945                 if (fullpath_disabled) {
946                         /* Leave room for a real-root full pathname. */
947                         if (len + (path[0] == '/' && strcmp(mypr->pr_path, "/")
948                             ? strlen(mypr->pr_path) : 0) > MAXPATHLEN) {
949                                 error = ENAMETOOLONG;
950                                 vrele(root);
951                                 goto done_free;
952                         }
953                 }
954         }
955
956         /*
957          * Find the specified jail, or at least its parent.
958          * This abuses the file error codes ENOENT and EEXIST.
959          */
960         pr = NULL;
961         ppr = mypr;
962         if (cuflags == JAIL_CREATE && jid == 0 && name != NULL) {
963                 namelc = strrchr(name, '.');
964                 jid = strtoul(namelc != NULL ? namelc + 1 : name, &p, 10);
965                 if (*p != '\0')
966                         jid = 0;
967         }
968         sx_xlock(&allprison_lock);
969         if (jid != 0) {
970                 /*
971                  * See if a requested jid already exists.  There is an
972                  * information leak here if the jid exists but is not within
973                  * the caller's jail hierarchy.  Jail creators will get EEXIST
974                  * even though they cannot see the jail, and CREATE | UPDATE
975                  * will return ENOENT which is not normally a valid error.
976                  */
977                 if (jid < 0) {
978                         error = EINVAL;
979                         vfs_opterror(opts, "negative jid");
980                         goto done_unlock_list;
981                 }
982                 pr = prison_find(jid);
983                 if (pr != NULL) {
984                         ppr = pr->pr_parent;
985                         /* Create: jid must not exist. */
986                         if (cuflags == JAIL_CREATE) {
987                                 mtx_unlock(&pr->pr_mtx);
988                                 error = EEXIST;
989                                 vfs_opterror(opts, "jail %d already exists",
990                                     jid);
991                                 goto done_unlock_list;
992                         }
993                         if (!prison_ischild(mypr, pr)) {
994                                 mtx_unlock(&pr->pr_mtx);
995                                 pr = NULL;
996                         } else if (pr->pr_uref == 0) {
997                                 if (!(flags & JAIL_DYING)) {
998                                         mtx_unlock(&pr->pr_mtx);
999                                         error = ENOENT;
1000                                         vfs_opterror(opts, "jail %d is dying",
1001                                             jid);
1002                                         goto done_unlock_list;
1003                                 } else if ((flags & JAIL_ATTACH) ||
1004                                     (pr_flags & PR_PERSIST)) {
1005                                         /*
1006                                          * A dying jail might be resurrected
1007                                          * (via attach or persist), but first
1008                                          * it must determine if another jail
1009                                          * has claimed its name.  Accomplish
1010                                          * this by implicitly re-setting the
1011                                          * name.
1012                                          */
1013                                         if (name == NULL)
1014                                                 name = prison_name(mypr, pr);
1015                                 }
1016                         }
1017                 }
1018                 if (pr == NULL) {
1019                         /* Update: jid must exist. */
1020                         if (cuflags == JAIL_UPDATE) {
1021                                 error = ENOENT;
1022                                 vfs_opterror(opts, "jail %d not found", jid);
1023                                 goto done_unlock_list;
1024                         }
1025                 }
1026         }
1027         /*
1028          * If the caller provided a name, look for a jail by that name.
1029          * This has different semantics for creates and updates keyed by jid
1030          * (where the name must not already exist in a different jail),
1031          * and updates keyed by the name itself (where the name must exist
1032          * because that is the jail being updated).
1033          */
1034         namelc = NULL;
1035         if (name != NULL) {
1036                 namelc = strrchr(name, '.');
1037                 if (namelc == NULL)
1038                         namelc = name;
1039                 else {
1040                         /*
1041                          * This is a hierarchical name.  Split it into the
1042                          * parent and child names, and make sure the parent
1043                          * exists or matches an already found jail.
1044                          */
1045                         if (pr != NULL) {
1046                                 if (strncmp(name, ppr->pr_name, namelc - name)
1047                                     || ppr->pr_name[namelc - name] != '\0') {
1048                                         mtx_unlock(&pr->pr_mtx);
1049                                         error = EINVAL;
1050                                         vfs_opterror(opts,
1051                                             "cannot change jail's parent");
1052                                         goto done_unlock_list;
1053                                 }
1054                         } else {
1055                                 *namelc = '\0';
1056                                 ppr = prison_find_name(mypr, name);
1057                                 if (ppr == NULL) {
1058                                         error = ENOENT;
1059                                         vfs_opterror(opts,
1060                                             "jail \"%s\" not found", name);
1061                                         goto done_unlock_list;
1062                                 }
1063                                 mtx_unlock(&ppr->pr_mtx);
1064                                 *namelc = '.';
1065                         }
1066                         namelc++;
1067                 }
1068                 if (namelc[0] != '\0') {
1069                         pnamelen =
1070                             (ppr == &prison0) ? 0 : strlen(ppr->pr_name) + 1;
1071  name_again:
1072                         deadpr = NULL;
1073                         FOREACH_PRISON_CHILD(ppr, tpr) {
1074                                 if (tpr != pr && tpr->pr_ref > 0 &&
1075                                     !strcmp(tpr->pr_name + pnamelen, namelc)) {
1076                                         if (pr == NULL &&
1077                                             cuflags != JAIL_CREATE) {
1078                                                 mtx_lock(&tpr->pr_mtx);
1079                                                 if (tpr->pr_ref > 0) {
1080                                                         /*
1081                                                          * Use this jail
1082                                                          * for updates.
1083                                                          */
1084                                                         if (tpr->pr_uref > 0) {
1085                                                                 pr = tpr;
1086                                                                 break;
1087                                                         }
1088                                                         deadpr = tpr;
1089                                                 }
1090                                                 mtx_unlock(&tpr->pr_mtx);
1091                                         } else if (tpr->pr_uref > 0) {
1092                                                 /*
1093                                                  * Create, or update(jid):
1094                                                  * name must not exist in an
1095                                                  * active sibling jail.
1096                                                  */
1097                                                 error = EEXIST;
1098                                                 if (pr != NULL)
1099                                                         mtx_unlock(&pr->pr_mtx);
1100                                                 vfs_opterror(opts,
1101                                                    "jail \"%s\" already exists",
1102                                                    name);
1103                                                 goto done_unlock_list;
1104                                         }
1105                                 }
1106                         }
1107                         /* If no active jail is found, use a dying one. */
1108                         if (deadpr != NULL && pr == NULL) {
1109                                 if (flags & JAIL_DYING) {
1110                                         mtx_lock(&deadpr->pr_mtx);
1111                                         if (deadpr->pr_ref == 0) {
1112                                                 mtx_unlock(&deadpr->pr_mtx);
1113                                                 goto name_again;
1114                                         }
1115                                         pr = deadpr;
1116                                 } else if (cuflags == JAIL_UPDATE) {
1117                                         error = ENOENT;
1118                                         vfs_opterror(opts,
1119                                             "jail \"%s\" is dying", name);
1120                                         goto done_unlock_list;
1121                                 }
1122                         }
1123                         /* Update: name must exist if no jid. */
1124                         else if (cuflags == JAIL_UPDATE && pr == NULL) {
1125                                 error = ENOENT;
1126                                 vfs_opterror(opts, "jail \"%s\" not found",
1127                                     name);
1128                                 goto done_unlock_list;
1129                         }
1130                 }
1131         }
1132         /* Update: must provide a jid or name. */
1133         else if (cuflags == JAIL_UPDATE && pr == NULL) {
1134                 error = ENOENT;
1135                 vfs_opterror(opts, "update specified no jail");
1136                 goto done_unlock_list;
1137         }
1138
1139         /* If there's no prison to update, create a new one and link it in. */
1140         if (pr == NULL) {
1141                 for (tpr = mypr; tpr != NULL; tpr = tpr->pr_parent)
1142                         if (tpr->pr_childcount >= tpr->pr_childmax) {
1143                                 error = EPERM;
1144                                 vfs_opterror(opts, "prison limit exceeded");
1145                                 goto done_unlock_list;
1146                         }
1147                 created = 1;
1148                 mtx_lock(&ppr->pr_mtx);
1149                 if (ppr->pr_ref == 0) {
1150                         mtx_unlock(&ppr->pr_mtx);
1151                         error = ENOENT;
1152                         vfs_opterror(opts, "jail \"%s\" not found",
1153                             prison_name(mypr, ppr));
1154                         goto done_unlock_list;
1155                 }
1156                 ppr->pr_ref++;
1157                 ppr->pr_uref++;
1158                 mtx_unlock(&ppr->pr_mtx);
1159                 pr = malloc(sizeof(*pr), M_PRISON, M_WAITOK | M_ZERO);
1160                 if (jid == 0) {
1161                         /* Find the next free jid. */
1162                         jid = lastprid + 1;
1163  findnext:
1164                         if (jid == JAIL_MAX)
1165                                 jid = 1;
1166                         TAILQ_FOREACH(tpr, &allprison, pr_list) {
1167                                 if (tpr->pr_id < jid)
1168                                         continue;
1169                                 if (tpr->pr_id > jid || tpr->pr_ref == 0) {
1170                                         TAILQ_INSERT_BEFORE(tpr, pr, pr_list);
1171                                         break;
1172                                 }
1173                                 if (jid == lastprid) {
1174                                         error = EAGAIN;
1175                                         vfs_opterror(opts,
1176                                             "no available jail IDs");
1177                                         free(pr, M_PRISON);
1178                                         prison_deref(ppr, PD_DEREF |
1179                                             PD_DEUREF | PD_LIST_XLOCKED);
1180                                         goto done_releroot;
1181                                 }
1182                                 jid++;
1183                                 goto findnext;
1184                         }
1185                         lastprid = jid;
1186                 } else {
1187                         /*
1188                          * The jail already has a jid (that did not yet exist),
1189                          * so just find where to insert it.
1190                          */
1191                         TAILQ_FOREACH(tpr, &allprison, pr_list)
1192                                 if (tpr->pr_id >= jid) {
1193                                         TAILQ_INSERT_BEFORE(tpr, pr, pr_list);
1194                                         break;
1195                                 }
1196                 }
1197                 if (tpr == NULL)
1198                         TAILQ_INSERT_TAIL(&allprison, pr, pr_list);
1199                 LIST_INSERT_HEAD(&ppr->pr_children, pr, pr_sibling);
1200                 for (tpr = ppr; tpr != NULL; tpr = tpr->pr_parent)
1201                         tpr->pr_childcount++;
1202
1203                 pr->pr_parent = ppr;
1204                 pr->pr_id = jid;
1205
1206                 /* Set some default values, and inherit some from the parent. */
1207                 if (namelc == NULL)
1208                         namelc = "";
1209                 if (path == NULL) {
1210                         path = "/";
1211                         root = mypr->pr_root;
1212                         vref(root);
1213                 }
1214                 strlcpy(pr->pr_hostuuid, DEFAULT_HOSTUUID, HOSTUUIDLEN);
1215                 pr->pr_flags |= PR_HOST;
1216 #if defined(INET) || defined(INET6)
1217 #ifdef VIMAGE
1218                 if (!(pr_flags & PR_VNET))
1219 #endif
1220                 {
1221 #ifdef INET
1222                         if (!(ch_flags & PR_IP4_USER))
1223                                 pr->pr_flags |= PR_IP4 | PR_IP4_USER;
1224                         else if (!(pr_flags & PR_IP4_USER)) {
1225                                 pr->pr_flags |= ppr->pr_flags & PR_IP4;
1226                                 if (ppr->pr_ip4 != NULL) {
1227                                         pr->pr_ip4s = ppr->pr_ip4s;
1228                                         pr->pr_ip4 = malloc(pr->pr_ip4s *
1229                                             sizeof(struct in_addr), M_PRISON,
1230                                             M_WAITOK);
1231                                         bcopy(ppr->pr_ip4, pr->pr_ip4,
1232                                             pr->pr_ip4s * sizeof(*pr->pr_ip4));
1233                                 }
1234                         }
1235 #endif
1236 #ifdef INET6
1237                         if (!(ch_flags & PR_IP6_USER))
1238                                 pr->pr_flags |= PR_IP6 | PR_IP6_USER;
1239                         else if (!(pr_flags & PR_IP6_USER)) {
1240                                 pr->pr_flags |= ppr->pr_flags & PR_IP6;
1241                                 if (ppr->pr_ip6 != NULL) {
1242                                         pr->pr_ip6s = ppr->pr_ip6s;
1243                                         pr->pr_ip6 = malloc(pr->pr_ip6s *
1244                                             sizeof(struct in6_addr), M_PRISON,
1245                                             M_WAITOK);
1246                                         bcopy(ppr->pr_ip6, pr->pr_ip6,
1247                                             pr->pr_ip6s * sizeof(*pr->pr_ip6));
1248                                 }
1249                         }
1250 #endif
1251                 }
1252 #endif
1253                 /* Source address selection is always on by default. */
1254                 pr->pr_flags |= _PR_IP_SADDRSEL;
1255
1256                 pr->pr_securelevel = ppr->pr_securelevel;
1257                 pr->pr_allow = JAIL_DEFAULT_ALLOW & ppr->pr_allow;
1258                 pr->pr_enforce_statfs = jail_default_enforce_statfs;
1259                 pr->pr_devfs_rsnum = ppr->pr_devfs_rsnum;
1260
1261                 pr->pr_osreldate = osreldt ? osreldt : ppr->pr_osreldate;
1262                 if (osrelstr == NULL)
1263                     strcpy(pr->pr_osrelease, ppr->pr_osrelease);
1264                 else
1265                     strcpy(pr->pr_osrelease, osrelstr);
1266
1267                 LIST_INIT(&pr->pr_children);
1268                 mtx_init(&pr->pr_mtx, "jail mutex", NULL, MTX_DEF | MTX_DUPOK);
1269                 TASK_INIT(&pr->pr_task, 0, prison_complete, pr);
1270
1271 #ifdef VIMAGE
1272                 /* Allocate a new vnet if specified. */
1273                 pr->pr_vnet = (pr_flags & PR_VNET)
1274                     ? vnet_alloc() : ppr->pr_vnet;
1275 #endif
1276                 /*
1277                  * Allocate a dedicated cpuset for each jail.
1278                  * Unlike other initial settings, this may return an erorr.
1279                  */
1280                 error = cpuset_create_root(ppr, &pr->pr_cpuset);
1281                 if (error) {
1282                         prison_deref(pr, PD_LIST_XLOCKED);
1283                         goto done_releroot;
1284                 }
1285
1286                 mtx_lock(&pr->pr_mtx);
1287                 /*
1288                  * New prisons do not yet have a reference, because we do not
1289                  * want others to see the incomplete prison once the
1290                  * allprison_lock is downgraded.
1291                  */
1292         } else {
1293                 created = 0;
1294                 /*
1295                  * Grab a reference for existing prisons, to ensure they
1296                  * continue to exist for the duration of the call.
1297                  */
1298                 pr->pr_ref++;
1299 #if defined(VIMAGE) && (defined(INET) || defined(INET6))
1300                 if ((pr->pr_flags & PR_VNET) &&
1301                     (ch_flags & (PR_IP4_USER | PR_IP6_USER))) {
1302                         error = EINVAL;
1303                         vfs_opterror(opts,
1304                             "vnet jails cannot have IP address restrictions");
1305                         goto done_deref_locked;
1306                 }
1307 #endif
1308 #ifdef INET
1309                 if (PR_IP4_USER & ch_flags & (pr_flags ^ pr->pr_flags)) {
1310                         error = EINVAL;
1311                         vfs_opterror(opts,
1312                             "ip4 cannot be changed after creation");
1313                         goto done_deref_locked;
1314                 }
1315 #endif
1316 #ifdef INET6
1317                 if (PR_IP6_USER & ch_flags & (pr_flags ^ pr->pr_flags)) {
1318                         error = EINVAL;
1319                         vfs_opterror(opts,
1320                             "ip6 cannot be changed after creation");
1321                         goto done_deref_locked;
1322                 }
1323 #endif
1324         }
1325
1326         /* Do final error checking before setting anything. */
1327         if (gotslevel) {
1328                 if (slevel < ppr->pr_securelevel) {
1329                         error = EPERM;
1330                         goto done_deref_locked;
1331                 }
1332         }
1333         if (gotchildmax) {
1334                 if (childmax >= ppr->pr_childmax) {
1335                         error = EPERM;
1336                         goto done_deref_locked;
1337                 }
1338         }
1339         if (gotenforce) {
1340                 if (enforce < ppr->pr_enforce_statfs) {
1341                         error = EPERM;
1342                         goto done_deref_locked;
1343                 }
1344         }
1345         if (gotrsnum) {
1346                 /*
1347                  * devfs_rsnum is a uint16_t
1348                  */
1349                 if (rsnum < 0 || rsnum > 65535) {
1350                         error = EINVAL;
1351                         goto done_deref_locked;
1352                 }
1353                 /*
1354                  * Nested jails always inherit parent's devfs ruleset
1355                  */
1356                 if (jailed(td->td_ucred)) {
1357                         if (rsnum > 0 && rsnum != ppr->pr_devfs_rsnum) {
1358                                 error = EPERM;
1359                                 goto done_deref_locked;
1360                         } else
1361                                 rsnum = ppr->pr_devfs_rsnum;
1362                 }
1363         }
1364 #ifdef INET
1365         if (ip4s > 0) {
1366                 if (ppr->pr_flags & PR_IP4) {
1367                         /*
1368                          * Make sure the new set of IP addresses is a
1369                          * subset of the parent's list.  Don't worry
1370                          * about the parent being unlocked, as any
1371                          * setting is done with allprison_lock held.
1372                          */
1373                         for (ij = 0; ij < ppr->pr_ip4s; ij++)
1374                                 if (ip4[0].s_addr == ppr->pr_ip4[ij].s_addr)
1375                                         break;
1376                         if (ij == ppr->pr_ip4s) {
1377                                 error = EPERM;
1378                                 goto done_deref_locked;
1379                         }
1380                         if (ip4s > 1) {
1381                                 for (ii = ij = 1; ii < ip4s; ii++) {
1382                                         if (ip4[ii].s_addr ==
1383                                             ppr->pr_ip4[0].s_addr)
1384                                                 continue;
1385                                         for (; ij < ppr->pr_ip4s; ij++)
1386                                                 if (ip4[ii].s_addr ==
1387                                                     ppr->pr_ip4[ij].s_addr)
1388                                                         break;
1389                                         if (ij == ppr->pr_ip4s)
1390                                                 break;
1391                                 }
1392                                 if (ij == ppr->pr_ip4s) {
1393                                         error = EPERM;
1394                                         goto done_deref_locked;
1395                                 }
1396                         }
1397                 }
1398                 /*
1399                  * Check for conflicting IP addresses.  We permit them
1400                  * if there is no more than one IP on each jail.  If
1401                  * there is a duplicate on a jail with more than one
1402                  * IP stop checking and return error.
1403                  */
1404                 tppr = ppr;
1405 #ifdef VIMAGE
1406                 for (; tppr != &prison0; tppr = tppr->pr_parent)
1407                         if (tppr->pr_flags & PR_VNET)
1408                                 break;
1409 #endif
1410                 FOREACH_PRISON_DESCENDANT(tppr, tpr, descend) {
1411                         if (tpr == pr ||
1412 #ifdef VIMAGE
1413                             (tpr != tppr && (tpr->pr_flags & PR_VNET)) ||
1414 #endif
1415                             tpr->pr_uref == 0) {
1416                                 descend = 0;
1417                                 continue;
1418                         }
1419                         if (!(tpr->pr_flags & PR_IP4_USER))
1420                                 continue;
1421                         descend = 0;
1422                         if (tpr->pr_ip4 == NULL ||
1423                             (ip4s == 1 && tpr->pr_ip4s == 1))
1424                                 continue;
1425                         for (ii = 0; ii < ip4s; ii++) {
1426                                 if (prison_check_ip4_locked(tpr, &ip4[ii]) ==
1427                                     0) {
1428                                         error = EADDRINUSE;
1429                                         vfs_opterror(opts,
1430                                             "IPv4 addresses clash");
1431                                         goto done_deref_locked;
1432                                 }
1433                         }
1434                 }
1435         }
1436 #endif
1437 #ifdef INET6
1438         if (ip6s > 0) {
1439                 if (ppr->pr_flags & PR_IP6) {
1440                         /*
1441                          * Make sure the new set of IP addresses is a
1442                          * subset of the parent's list.
1443                          */
1444                         for (ij = 0; ij < ppr->pr_ip6s; ij++)
1445                                 if (IN6_ARE_ADDR_EQUAL(&ip6[0],
1446                                     &ppr->pr_ip6[ij]))
1447                                         break;
1448                         if (ij == ppr->pr_ip6s) {
1449                                 error = EPERM;
1450                                 goto done_deref_locked;
1451                         }
1452                         if (ip6s > 1) {
1453                                 for (ii = ij = 1; ii < ip6s; ii++) {
1454                                         if (IN6_ARE_ADDR_EQUAL(&ip6[ii],
1455                                              &ppr->pr_ip6[0]))
1456                                                 continue;
1457                                         for (; ij < ppr->pr_ip6s; ij++)
1458                                                 if (IN6_ARE_ADDR_EQUAL(
1459                                                     &ip6[ii], &ppr->pr_ip6[ij]))
1460                                                         break;
1461                                         if (ij == ppr->pr_ip6s)
1462                                                 break;
1463                                 }
1464                                 if (ij == ppr->pr_ip6s) {
1465                                         error = EPERM;
1466                                         goto done_deref_locked;
1467                                 }
1468                         }
1469                 }
1470                 /* Check for conflicting IP addresses. */
1471                 tppr = ppr;
1472 #ifdef VIMAGE
1473                 for (; tppr != &prison0; tppr = tppr->pr_parent)
1474                         if (tppr->pr_flags & PR_VNET)
1475                                 break;
1476 #endif
1477                 FOREACH_PRISON_DESCENDANT(tppr, tpr, descend) {
1478                         if (tpr == pr ||
1479 #ifdef VIMAGE
1480                             (tpr != tppr && (tpr->pr_flags & PR_VNET)) ||
1481 #endif
1482                             tpr->pr_uref == 0) {
1483                                 descend = 0;
1484                                 continue;
1485                         }
1486                         if (!(tpr->pr_flags & PR_IP6_USER))
1487                                 continue;
1488                         descend = 0;
1489                         if (tpr->pr_ip6 == NULL ||
1490                             (ip6s == 1 && tpr->pr_ip6s == 1))
1491                                 continue;
1492                         for (ii = 0; ii < ip6s; ii++) {
1493                                 if (prison_check_ip6_locked(tpr, &ip6[ii]) ==
1494                                     0) {
1495                                         error = EADDRINUSE;
1496                                         vfs_opterror(opts,
1497                                             "IPv6 addresses clash");
1498                                         goto done_deref_locked;
1499                                 }
1500                         }
1501                 }
1502         }
1503 #endif
1504         onamelen = namelen = 0;
1505         if (namelc != NULL) {
1506                 /* Give a default name of the jid.  Also allow the name to be
1507                  * explicitly the jid - but not any other number, and only in
1508                  * normal form (no leading zero/etc).
1509                  */
1510                 if (namelc[0] == '\0')
1511                         snprintf(namelc = numbuf, sizeof(numbuf), "%d", jid);
1512                 else if ((strtoul(namelc, &p, 10) != jid ||
1513                           namelc[0] < '1' || namelc[0] > '9') && *p == '\0') {
1514                         error = EINVAL;
1515                         vfs_opterror(opts,
1516                             "name cannot be numeric (unless it is the jid)");
1517                         goto done_deref_locked;
1518                 }
1519                 /*
1520                  * Make sure the name isn't too long for the prison or its
1521                  * children.
1522                  */
1523                 pnamelen = (ppr == &prison0) ? 0 : strlen(ppr->pr_name) + 1;
1524                 onamelen = strlen(pr->pr_name + pnamelen);
1525                 namelen = strlen(namelc);
1526                 if (pnamelen + namelen + 1 > sizeof(pr->pr_name)) {
1527                         error = ENAMETOOLONG;
1528                         goto done_deref_locked;
1529                 }
1530                 FOREACH_PRISON_DESCENDANT(pr, tpr, descend) {
1531                         if (strlen(tpr->pr_name) + (namelen - onamelen) >=
1532                             sizeof(pr->pr_name)) {
1533                                 error = ENAMETOOLONG;
1534                                 goto done_deref_locked;
1535                         }
1536                 }
1537         }
1538         if (pr_allow & ~ppr->pr_allow) {
1539                 error = EPERM;
1540                 goto done_deref_locked;
1541         }
1542
1543         /*
1544          * Let modules check their parameters.  This requires unlocking and
1545          * then re-locking the prison, but this is still a valid state as long
1546          * as allprison_lock remains xlocked.
1547          */
1548         mtx_unlock(&pr->pr_mtx);
1549         error = osd_jail_call(pr, PR_METHOD_CHECK, opts);
1550         if (error != 0) {
1551                 prison_deref(pr, created
1552                     ? PD_LIST_XLOCKED
1553                     : PD_DEREF | PD_LIST_XLOCKED);
1554                 goto done_releroot;
1555         }
1556         mtx_lock(&pr->pr_mtx);
1557
1558         /* At this point, all valid parameters should have been noted. */
1559         TAILQ_FOREACH(opt, opts, link) {
1560                 if (!opt->seen && strcmp(opt->name, "errmsg")) {
1561                         error = EINVAL;
1562                         vfs_opterror(opts, "unknown parameter: %s", opt->name);
1563                         goto done_deref_locked;
1564                 }
1565         }
1566
1567         /* Set the parameters of the prison. */
1568 #ifdef INET
1569         redo_ip4 = 0;
1570         if (pr_flags & PR_IP4_USER) {
1571                 pr->pr_flags |= PR_IP4;
1572                 free(pr->pr_ip4, M_PRISON);
1573                 pr->pr_ip4s = ip4s;
1574                 pr->pr_ip4 = ip4;
1575                 ip4 = NULL;
1576                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend) {
1577 #ifdef VIMAGE
1578                         if (tpr->pr_flags & PR_VNET) {
1579                                 descend = 0;
1580                                 continue;
1581                         }
1582 #endif
1583                         if (prison_restrict_ip4(tpr, NULL)) {
1584                                 redo_ip4 = 1;
1585                                 descend = 0;
1586                         }
1587                 }
1588         }
1589 #endif
1590 #ifdef INET6
1591         redo_ip6 = 0;
1592         if (pr_flags & PR_IP6_USER) {
1593                 pr->pr_flags |= PR_IP6;
1594                 free(pr->pr_ip6, M_PRISON);
1595                 pr->pr_ip6s = ip6s;
1596                 pr->pr_ip6 = ip6;
1597                 ip6 = NULL;
1598                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend) {
1599 #ifdef VIMAGE
1600                         if (tpr->pr_flags & PR_VNET) {
1601                                 descend = 0;
1602                                 continue;
1603                         }
1604 #endif
1605                         if (prison_restrict_ip6(tpr, NULL)) {
1606                                 redo_ip6 = 1;
1607                                 descend = 0;
1608                         }
1609                 }
1610         }
1611 #endif
1612         if (gotslevel) {
1613                 pr->pr_securelevel = slevel;
1614                 /* Set all child jails to be at least this level. */
1615                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend)
1616                         if (tpr->pr_securelevel < slevel)
1617                                 tpr->pr_securelevel = slevel;
1618         }
1619         if (gotchildmax) {
1620                 pr->pr_childmax = childmax;
1621                 /* Set all child jails to under this limit. */
1622                 FOREACH_PRISON_DESCENDANT_LOCKED_LEVEL(pr, tpr, descend, level)
1623                         if (tpr->pr_childmax > childmax - level)
1624                                 tpr->pr_childmax = childmax > level
1625                                     ? childmax - level : 0;
1626         }
1627         if (gotenforce) {
1628                 pr->pr_enforce_statfs = enforce;
1629                 /* Pass this restriction on to the children. */
1630                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend)
1631                         if (tpr->pr_enforce_statfs < enforce)
1632                                 tpr->pr_enforce_statfs = enforce;
1633         }
1634         if (gotrsnum) {
1635                 pr->pr_devfs_rsnum = rsnum;
1636                 /* Pass this restriction on to the children. */
1637                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend)
1638                         tpr->pr_devfs_rsnum = rsnum;
1639         }
1640         if (namelc != NULL) {
1641                 if (ppr == &prison0)
1642                         strlcpy(pr->pr_name, namelc, sizeof(pr->pr_name));
1643                 else
1644                         snprintf(pr->pr_name, sizeof(pr->pr_name), "%s.%s",
1645                             ppr->pr_name, namelc);
1646                 /* Change this component of child names. */
1647                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend) {
1648                         bcopy(tpr->pr_name + onamelen, tpr->pr_name + namelen,
1649                             strlen(tpr->pr_name + onamelen) + 1);
1650                         bcopy(pr->pr_name, tpr->pr_name, namelen);
1651                 }
1652         }
1653         if (path != NULL) {
1654                 /* Try to keep a real-rooted full pathname. */
1655                 if (fullpath_disabled && path[0] == '/' &&
1656                     strcmp(mypr->pr_path, "/"))
1657                         snprintf(pr->pr_path, sizeof(pr->pr_path), "%s%s",
1658                             mypr->pr_path, path);
1659                 else
1660                         strlcpy(pr->pr_path, path, sizeof(pr->pr_path));
1661                 pr->pr_root = root;
1662         }
1663         if (PR_HOST & ch_flags & ~pr_flags) {
1664                 if (pr->pr_flags & PR_HOST) {
1665                         /*
1666                          * Copy the parent's host info.  As with pr_ip4 above,
1667                          * the lack of a lock on the parent is not a problem;
1668                          * it is always set with allprison_lock at least
1669                          * shared, and is held exclusively here.
1670                          */
1671                         strlcpy(pr->pr_hostname, pr->pr_parent->pr_hostname,
1672                             sizeof(pr->pr_hostname));
1673                         strlcpy(pr->pr_domainname, pr->pr_parent->pr_domainname,
1674                             sizeof(pr->pr_domainname));
1675                         strlcpy(pr->pr_hostuuid, pr->pr_parent->pr_hostuuid,
1676                             sizeof(pr->pr_hostuuid));
1677                         pr->pr_hostid = pr->pr_parent->pr_hostid;
1678                 }
1679         } else if (host != NULL || domain != NULL || uuid != NULL || gothid) {
1680                 /* Set this prison, and any descendants without PR_HOST. */
1681                 if (host != NULL)
1682                         strlcpy(pr->pr_hostname, host, sizeof(pr->pr_hostname));
1683                 if (domain != NULL)
1684                         strlcpy(pr->pr_domainname, domain, 
1685                             sizeof(pr->pr_domainname));
1686                 if (uuid != NULL)
1687                         strlcpy(pr->pr_hostuuid, uuid, sizeof(pr->pr_hostuuid));
1688                 if (gothid)
1689                         pr->pr_hostid = hid;
1690                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend) {
1691                         if (tpr->pr_flags & PR_HOST)
1692                                 descend = 0;
1693                         else {
1694                                 if (host != NULL)
1695                                         strlcpy(tpr->pr_hostname,
1696                                             pr->pr_hostname,
1697                                             sizeof(tpr->pr_hostname));
1698                                 if (domain != NULL)
1699                                         strlcpy(tpr->pr_domainname, 
1700                                             pr->pr_domainname,
1701                                             sizeof(tpr->pr_domainname));
1702                                 if (uuid != NULL)
1703                                         strlcpy(tpr->pr_hostuuid,
1704                                             pr->pr_hostuuid,
1705                                             sizeof(tpr->pr_hostuuid));
1706                                 if (gothid)
1707                                         tpr->pr_hostid = hid;
1708                         }
1709                 }
1710         }
1711         if ((tallow = ch_allow & ~pr_allow)) {
1712                 /* Clear allow bits in all children. */
1713                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend)
1714                         tpr->pr_allow &= ~tallow;
1715         }
1716         pr->pr_allow = (pr->pr_allow & ~ch_allow) | pr_allow;
1717         /*
1718          * Persistent prisons get an extra reference, and prisons losing their
1719          * persist flag lose that reference.  Only do this for existing prisons
1720          * for now, so new ones will remain unseen until after the module
1721          * handlers have completed.
1722          */
1723         born = pr->pr_uref == 0;
1724         if (!created && (ch_flags & PR_PERSIST & (pr_flags ^ pr->pr_flags))) {
1725                 if (pr_flags & PR_PERSIST) {
1726                         pr->pr_ref++;
1727                         pr->pr_uref++;
1728                 } else {
1729                         pr->pr_ref--;
1730                         pr->pr_uref--;
1731                 }
1732         }
1733         pr->pr_flags = (pr->pr_flags & ~ch_flags) | pr_flags;
1734         mtx_unlock(&pr->pr_mtx);
1735
1736 #ifdef RACCT
1737         if (racct_enable && created)
1738                 prison_racct_attach(pr);
1739 #endif
1740
1741         /* Locks may have prevented a complete restriction of child IP
1742          * addresses.  If so, allocate some more memory and try again.
1743          */
1744 #ifdef INET
1745         while (redo_ip4) {
1746                 ip4s = pr->pr_ip4s;
1747                 ip4 = malloc(ip4s * sizeof(*ip4), M_PRISON, M_WAITOK);
1748                 mtx_lock(&pr->pr_mtx);
1749                 redo_ip4 = 0;
1750                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend) {
1751 #ifdef VIMAGE
1752                         if (tpr->pr_flags & PR_VNET) {
1753                                 descend = 0;
1754                                 continue;
1755                         }
1756 #endif
1757                         if (prison_restrict_ip4(tpr, ip4)) {
1758                                 if (ip4 != NULL)
1759                                         ip4 = NULL;
1760                                 else
1761                                         redo_ip4 = 1;
1762                         }
1763                 }
1764                 mtx_unlock(&pr->pr_mtx);
1765         }
1766 #endif
1767 #ifdef INET6
1768         while (redo_ip6) {
1769                 ip6s = pr->pr_ip6s;
1770                 ip6 = malloc(ip6s * sizeof(*ip6), M_PRISON, M_WAITOK);
1771                 mtx_lock(&pr->pr_mtx);
1772                 redo_ip6 = 0;
1773                 FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend) {
1774 #ifdef VIMAGE
1775                         if (tpr->pr_flags & PR_VNET) {
1776                                 descend = 0;
1777                                 continue;
1778                         }
1779 #endif
1780                         if (prison_restrict_ip6(tpr, ip6)) {
1781                                 if (ip6 != NULL)
1782                                         ip6 = NULL;
1783                                 else
1784                                         redo_ip6 = 1;
1785                         }
1786                 }
1787                 mtx_unlock(&pr->pr_mtx);
1788         }
1789 #endif
1790
1791         /* Let the modules do their work. */
1792         sx_downgrade(&allprison_lock);
1793         if (born) {
1794                 error = osd_jail_call(pr, PR_METHOD_CREATE, opts);
1795                 if (error) {
1796                         (void)osd_jail_call(pr, PR_METHOD_REMOVE, NULL);
1797                         prison_deref(pr, created
1798                             ? PD_LIST_SLOCKED
1799                             : PD_DEREF | PD_LIST_SLOCKED);
1800                         goto done_errmsg;
1801                 }
1802         }
1803         error = osd_jail_call(pr, PR_METHOD_SET, opts);
1804         if (error) {
1805                 if (born)
1806                         (void)osd_jail_call(pr, PR_METHOD_REMOVE, NULL);
1807                 prison_deref(pr, created
1808                     ? PD_LIST_SLOCKED
1809                     : PD_DEREF | PD_LIST_SLOCKED);
1810                 goto done_errmsg;
1811         }
1812
1813         /* Attach this process to the prison if requested. */
1814         if (flags & JAIL_ATTACH) {
1815                 mtx_lock(&pr->pr_mtx);
1816                 error = do_jail_attach(td, pr);
1817                 if (error) {
1818                         vfs_opterror(opts, "attach failed");
1819                         if (!created)
1820                                 prison_deref(pr, PD_DEREF);
1821                         goto done_errmsg;
1822                 }
1823         }
1824
1825 #ifdef RACCT
1826         if (racct_enable && !created) {
1827                 if (!(flags & JAIL_ATTACH))
1828                         sx_sunlock(&allprison_lock);
1829                 prison_racct_modify(pr);
1830                 if (!(flags & JAIL_ATTACH))
1831                         sx_slock(&allprison_lock);
1832         }
1833 #endif
1834
1835         td->td_retval[0] = pr->pr_id;
1836
1837         /*
1838          * Now that it is all there, drop the temporary reference from existing
1839          * prisons.  Or add a reference to newly created persistent prisons
1840          * (which was not done earlier so that the prison would not be publicly
1841          * visible).
1842          */
1843         if (!created) {
1844                 prison_deref(pr, (flags & JAIL_ATTACH)
1845                     ? PD_DEREF
1846                     : PD_DEREF | PD_LIST_SLOCKED);
1847         } else {
1848                 if (pr_flags & PR_PERSIST) {
1849                         mtx_lock(&pr->pr_mtx);
1850                         pr->pr_ref++;
1851                         pr->pr_uref++;
1852                         mtx_unlock(&pr->pr_mtx);
1853                 }
1854                 if (!(flags & JAIL_ATTACH))
1855                         sx_sunlock(&allprison_lock);
1856         }
1857
1858         goto done_free;
1859
1860  done_deref_locked:
1861         prison_deref(pr, created
1862             ? PD_LOCKED | PD_LIST_XLOCKED
1863             : PD_DEREF | PD_LOCKED | PD_LIST_XLOCKED);
1864         goto done_releroot;
1865  done_unlock_list:
1866         sx_xunlock(&allprison_lock);
1867  done_releroot:
1868         if (root != NULL)
1869                 vrele(root);
1870  done_errmsg:
1871         if (error) {
1872                 if (vfs_getopt(opts, "errmsg", (void **)&errmsg,
1873                     &errmsg_len) == 0 && errmsg_len > 0) {
1874                         errmsg_pos = 2 * vfs_getopt_pos(opts, "errmsg") + 1;
1875                         if (optuio->uio_segflg == UIO_SYSSPACE)
1876                                 bcopy(errmsg,
1877                                     optuio->uio_iov[errmsg_pos].iov_base,
1878                                     errmsg_len);
1879                         else
1880                                 copyout(errmsg,
1881                                     optuio->uio_iov[errmsg_pos].iov_base,
1882                                     errmsg_len);
1883                 }
1884         }
1885  done_free:
1886 #ifdef INET
1887         free(ip4, M_PRISON);
1888 #endif
1889 #ifdef INET6
1890         free(ip6, M_PRISON);
1891 #endif
1892         if (g_path != NULL)
1893                 free(g_path, M_TEMP);
1894         vfs_freeopts(opts);
1895         return (error);
1896 }
1897
1898
1899 /*
1900  * struct jail_get_args {
1901  *      struct iovec *iovp;
1902  *      unsigned int iovcnt;
1903  *      int flags;
1904  * };
1905  */
1906 int
1907 sys_jail_get(struct thread *td, struct jail_get_args *uap)
1908 {
1909         struct uio *auio;
1910         int error;
1911
1912         /* Check that we have an even number of iovecs. */
1913         if (uap->iovcnt & 1)
1914                 return (EINVAL);
1915
1916         error = copyinuio(uap->iovp, uap->iovcnt, &auio);
1917         if (error)
1918                 return (error);
1919         error = kern_jail_get(td, auio, uap->flags);
1920         if (error == 0)
1921                 error = copyout(auio->uio_iov, uap->iovp,
1922                     uap->iovcnt * sizeof (struct iovec));
1923         free(auio, M_IOV);
1924         return (error);
1925 }
1926
1927 int
1928 kern_jail_get(struct thread *td, struct uio *optuio, int flags)
1929 {
1930         struct bool_flags *bf;
1931         struct jailsys_flags *jsf;
1932         struct prison *pr, *mypr;
1933         struct vfsopt *opt;
1934         struct vfsoptlist *opts;
1935         char *errmsg, *name;
1936         int error, errmsg_len, errmsg_pos, i, jid, len, locked, pos;
1937         unsigned f;
1938
1939         if (flags & ~JAIL_GET_MASK)
1940                 return (EINVAL);
1941
1942         /* Get the parameter list. */
1943         error = vfs_buildopts(optuio, &opts);
1944         if (error)
1945                 return (error);
1946         errmsg_pos = vfs_getopt_pos(opts, "errmsg");
1947         mypr = td->td_ucred->cr_prison;
1948
1949         /*
1950          * Find the prison specified by one of: lastjid, jid, name.
1951          */
1952         sx_slock(&allprison_lock);
1953         error = vfs_copyopt(opts, "lastjid", &jid, sizeof(jid));
1954         if (error == 0) {
1955                 TAILQ_FOREACH(pr, &allprison, pr_list) {
1956                         if (pr->pr_id > jid && prison_ischild(mypr, pr)) {
1957                                 mtx_lock(&pr->pr_mtx);
1958                                 if (pr->pr_ref > 0 &&
1959                                     (pr->pr_uref > 0 || (flags & JAIL_DYING)))
1960                                         break;
1961                                 mtx_unlock(&pr->pr_mtx);
1962                         }
1963                 }
1964                 if (pr != NULL)
1965                         goto found_prison;
1966                 error = ENOENT;
1967                 vfs_opterror(opts, "no jail after %d", jid);
1968                 goto done_unlock_list;
1969         } else if (error != ENOENT)
1970                 goto done_unlock_list;
1971
1972         error = vfs_copyopt(opts, "jid", &jid, sizeof(jid));
1973         if (error == 0) {
1974                 if (jid != 0) {
1975                         pr = prison_find_child(mypr, jid);
1976                         if (pr != NULL) {
1977                                 if (pr->pr_uref == 0 && !(flags & JAIL_DYING)) {
1978                                         mtx_unlock(&pr->pr_mtx);
1979                                         error = ENOENT;
1980                                         vfs_opterror(opts, "jail %d is dying",
1981                                             jid);
1982                                         goto done_unlock_list;
1983                                 }
1984                                 goto found_prison;
1985                         }
1986                         error = ENOENT;
1987                         vfs_opterror(opts, "jail %d not found", jid);
1988                         goto done_unlock_list;
1989                 }
1990         } else if (error != ENOENT)
1991                 goto done_unlock_list;
1992
1993         error = vfs_getopt(opts, "name", (void **)&name, &len);
1994         if (error == 0) {
1995                 if (len == 0 || name[len - 1] != '\0') {
1996                         error = EINVAL;
1997                         goto done_unlock_list;
1998                 }
1999                 pr = prison_find_name(mypr, name);
2000                 if (pr != NULL) {
2001                         if (pr->pr_uref == 0 && !(flags & JAIL_DYING)) {
2002                                 mtx_unlock(&pr->pr_mtx);
2003                                 error = ENOENT;
2004                                 vfs_opterror(opts, "jail \"%s\" is dying",
2005                                     name);
2006                                 goto done_unlock_list;
2007                         }
2008                         goto found_prison;
2009                 }
2010                 error = ENOENT;
2011                 vfs_opterror(opts, "jail \"%s\" not found", name);
2012                 goto done_unlock_list;
2013         } else if (error != ENOENT)
2014                 goto done_unlock_list;
2015
2016         vfs_opterror(opts, "no jail specified");
2017         error = ENOENT;
2018         goto done_unlock_list;
2019
2020  found_prison:
2021         /* Get the parameters of the prison. */
2022         pr->pr_ref++;
2023         locked = PD_LOCKED;
2024         td->td_retval[0] = pr->pr_id;
2025         error = vfs_setopt(opts, "jid", &pr->pr_id, sizeof(pr->pr_id));
2026         if (error != 0 && error != ENOENT)
2027                 goto done_deref;
2028         i = (pr->pr_parent == mypr) ? 0 : pr->pr_parent->pr_id;
2029         error = vfs_setopt(opts, "parent", &i, sizeof(i));
2030         if (error != 0 && error != ENOENT)
2031                 goto done_deref;
2032         error = vfs_setopts(opts, "name", prison_name(mypr, pr));
2033         if (error != 0 && error != ENOENT)
2034                 goto done_deref;
2035         error = vfs_setopt(opts, "cpuset.id", &pr->pr_cpuset->cs_id,
2036             sizeof(pr->pr_cpuset->cs_id));
2037         if (error != 0 && error != ENOENT)
2038                 goto done_deref;
2039         error = vfs_setopts(opts, "path", prison_path(mypr, pr));
2040         if (error != 0 && error != ENOENT)
2041                 goto done_deref;
2042 #ifdef INET
2043         error = vfs_setopt_part(opts, "ip4.addr", pr->pr_ip4,
2044             pr->pr_ip4s * sizeof(*pr->pr_ip4));
2045         if (error != 0 && error != ENOENT)
2046                 goto done_deref;
2047 #endif
2048 #ifdef INET6
2049         error = vfs_setopt_part(opts, "ip6.addr", pr->pr_ip6,
2050             pr->pr_ip6s * sizeof(*pr->pr_ip6));
2051         if (error != 0 && error != ENOENT)
2052                 goto done_deref;
2053 #endif
2054         error = vfs_setopt(opts, "securelevel", &pr->pr_securelevel,
2055             sizeof(pr->pr_securelevel));
2056         if (error != 0 && error != ENOENT)
2057                 goto done_deref;
2058         error = vfs_setopt(opts, "children.cur", &pr->pr_childcount,
2059             sizeof(pr->pr_childcount));
2060         if (error != 0 && error != ENOENT)
2061                 goto done_deref;
2062         error = vfs_setopt(opts, "children.max", &pr->pr_childmax,
2063             sizeof(pr->pr_childmax));
2064         if (error != 0 && error != ENOENT)
2065                 goto done_deref;
2066         error = vfs_setopts(opts, "host.hostname", pr->pr_hostname);
2067         if (error != 0 && error != ENOENT)
2068                 goto done_deref;
2069         error = vfs_setopts(opts, "host.domainname", pr->pr_domainname);
2070         if (error != 0 && error != ENOENT)
2071                 goto done_deref;
2072         error = vfs_setopts(opts, "host.hostuuid", pr->pr_hostuuid);
2073         if (error != 0 && error != ENOENT)
2074                 goto done_deref;
2075 #ifdef COMPAT_FREEBSD32
2076         if (SV_PROC_FLAG(td->td_proc, SV_ILP32)) {
2077                 uint32_t hid32 = pr->pr_hostid;
2078
2079                 error = vfs_setopt(opts, "host.hostid", &hid32, sizeof(hid32));
2080         } else
2081 #endif
2082         error = vfs_setopt(opts, "host.hostid", &pr->pr_hostid,
2083             sizeof(pr->pr_hostid));
2084         if (error != 0 && error != ENOENT)
2085                 goto done_deref;
2086         error = vfs_setopt(opts, "enforce_statfs", &pr->pr_enforce_statfs,
2087             sizeof(pr->pr_enforce_statfs));
2088         if (error != 0 && error != ENOENT)
2089                 goto done_deref;
2090         error = vfs_setopt(opts, "devfs_ruleset", &pr->pr_devfs_rsnum,
2091             sizeof(pr->pr_devfs_rsnum));
2092         if (error != 0 && error != ENOENT)
2093                 goto done_deref;
2094         for (bf = pr_flag_bool;
2095              bf < pr_flag_bool + nitems(pr_flag_bool);
2096              bf++) {
2097                 i = (pr->pr_flags & bf->flag) ? 1 : 0;
2098                 error = vfs_setopt(opts, bf->name, &i, sizeof(i));
2099                 if (error != 0 && error != ENOENT)
2100                         goto done_deref;
2101                 i = !i;
2102                 error = vfs_setopt(opts, bf->noname, &i, sizeof(i));
2103                 if (error != 0 && error != ENOENT)
2104                         goto done_deref;
2105         }
2106         for (jsf = pr_flag_jailsys;
2107              jsf < pr_flag_jailsys + nitems(pr_flag_jailsys);
2108              jsf++) {
2109                 f = pr->pr_flags & (jsf->disable | jsf->new);
2110                 i = (f != 0 && f == jsf->disable) ? JAIL_SYS_DISABLE
2111                     : (f == jsf->new) ? JAIL_SYS_NEW
2112                     : JAIL_SYS_INHERIT;
2113                 error = vfs_setopt(opts, jsf->name, &i, sizeof(i));
2114                 if (error != 0 && error != ENOENT)
2115                         goto done_deref;
2116         }
2117         for (bf = pr_flag_allow;
2118              bf < pr_flag_allow + nitems(pr_flag_allow);
2119              bf++) {
2120                 i = (pr->pr_allow & bf->flag) ? 1 : 0;
2121                 error = vfs_setopt(opts, bf->name, &i, sizeof(i));
2122                 if (error != 0 && error != ENOENT)
2123                         goto done_deref;
2124                 i = !i;
2125                 error = vfs_setopt(opts, bf->noname, &i, sizeof(i));
2126                 if (error != 0 && error != ENOENT)
2127                         goto done_deref;
2128         }
2129         i = (pr->pr_uref == 0);
2130         error = vfs_setopt(opts, "dying", &i, sizeof(i));
2131         if (error != 0 && error != ENOENT)
2132                 goto done_deref;
2133         i = !i;
2134         error = vfs_setopt(opts, "nodying", &i, sizeof(i));
2135         if (error != 0 && error != ENOENT)
2136                 goto done_deref;
2137         error = vfs_setopt(opts, "osreldate", &pr->pr_osreldate,
2138             sizeof(pr->pr_osreldate));
2139         if (error != 0 && error != ENOENT)
2140                 goto done_deref;
2141         error = vfs_setopts(opts, "osrelease", pr->pr_osrelease);
2142         if (error != 0 && error != ENOENT)
2143                 goto done_deref;
2144
2145         /* Get the module parameters. */
2146         mtx_unlock(&pr->pr_mtx);
2147         locked = 0;
2148         error = osd_jail_call(pr, PR_METHOD_GET, opts);
2149         if (error)
2150                 goto done_deref;
2151         prison_deref(pr, PD_DEREF | PD_LIST_SLOCKED);
2152
2153         /* By now, all parameters should have been noted. */
2154         TAILQ_FOREACH(opt, opts, link) {
2155                 if (!opt->seen && strcmp(opt->name, "errmsg")) {
2156                         error = EINVAL;
2157                         vfs_opterror(opts, "unknown parameter: %s", opt->name);
2158                         goto done_errmsg;
2159                 }
2160         }
2161
2162         /* Write the fetched parameters back to userspace. */
2163         error = 0;
2164         TAILQ_FOREACH(opt, opts, link) {
2165                 if (opt->pos >= 0 && opt->pos != errmsg_pos) {
2166                         pos = 2 * opt->pos + 1;
2167                         optuio->uio_iov[pos].iov_len = opt->len;
2168                         if (opt->value != NULL) {
2169                                 if (optuio->uio_segflg == UIO_SYSSPACE) {
2170                                         bcopy(opt->value,
2171                                             optuio->uio_iov[pos].iov_base,
2172                                             opt->len);
2173                                 } else {
2174                                         error = copyout(opt->value,
2175                                             optuio->uio_iov[pos].iov_base,
2176                                             opt->len);
2177                                         if (error)
2178                                                 break;
2179                                 }
2180                         }
2181                 }
2182         }
2183         goto done_errmsg;
2184
2185  done_deref:
2186         prison_deref(pr, locked | PD_DEREF | PD_LIST_SLOCKED);
2187         goto done_errmsg;
2188
2189  done_unlock_list:
2190         sx_sunlock(&allprison_lock);
2191  done_errmsg:
2192         if (error && errmsg_pos >= 0) {
2193                 vfs_getopt(opts, "errmsg", (void **)&errmsg, &errmsg_len);
2194                 errmsg_pos = 2 * errmsg_pos + 1;
2195                 if (errmsg_len > 0) {
2196                         if (optuio->uio_segflg == UIO_SYSSPACE)
2197                                 bcopy(errmsg,
2198                                     optuio->uio_iov[errmsg_pos].iov_base,
2199                                     errmsg_len);
2200                         else
2201                                 copyout(errmsg,
2202                                     optuio->uio_iov[errmsg_pos].iov_base,
2203                                     errmsg_len);
2204                 }
2205         }
2206         vfs_freeopts(opts);
2207         return (error);
2208 }
2209
2210
2211 /*
2212  * struct jail_remove_args {
2213  *      int jid;
2214  * };
2215  */
2216 int
2217 sys_jail_remove(struct thread *td, struct jail_remove_args *uap)
2218 {
2219         struct prison *pr, *cpr, *lpr, *tpr;
2220         int descend, error;
2221
2222         error = priv_check(td, PRIV_JAIL_REMOVE);
2223         if (error)
2224                 return (error);
2225
2226         sx_xlock(&allprison_lock);
2227         pr = prison_find_child(td->td_ucred->cr_prison, uap->jid);
2228         if (pr == NULL) {
2229                 sx_xunlock(&allprison_lock);
2230                 return (EINVAL);
2231         }
2232
2233         /* Remove all descendants of this prison, then remove this prison. */
2234         pr->pr_ref++;
2235         if (!LIST_EMPTY(&pr->pr_children)) {
2236                 mtx_unlock(&pr->pr_mtx);
2237                 lpr = NULL;
2238                 FOREACH_PRISON_DESCENDANT(pr, cpr, descend) {
2239                         mtx_lock(&cpr->pr_mtx);
2240                         if (cpr->pr_ref > 0) {
2241                                 tpr = cpr;
2242                                 cpr->pr_ref++;
2243                         } else {
2244                                 /* Already removed - do not do it again. */
2245                                 tpr = NULL;
2246                         }
2247                         mtx_unlock(&cpr->pr_mtx);
2248                         if (lpr != NULL) {
2249                                 mtx_lock(&lpr->pr_mtx);
2250                                 prison_remove_one(lpr);
2251                                 sx_xlock(&allprison_lock);
2252                         }
2253                         lpr = tpr;
2254                 }
2255                 if (lpr != NULL) {
2256                         mtx_lock(&lpr->pr_mtx);
2257                         prison_remove_one(lpr);
2258                         sx_xlock(&allprison_lock);
2259                 }
2260                 mtx_lock(&pr->pr_mtx);
2261         }
2262         prison_remove_one(pr);
2263         return (0);
2264 }
2265
2266 static void
2267 prison_remove_one(struct prison *pr)
2268 {
2269         struct proc *p;
2270         int deuref;
2271
2272         /* If the prison was persistent, it is not anymore. */
2273         deuref = 0;
2274         if (pr->pr_flags & PR_PERSIST) {
2275                 pr->pr_ref--;
2276                 deuref = PD_DEUREF;
2277                 pr->pr_flags &= ~PR_PERSIST;
2278         }
2279
2280         /*
2281          * jail_remove added a reference.  If that's the only one, remove
2282          * the prison now.
2283          */
2284         KASSERT(pr->pr_ref > 0,
2285             ("prison_remove_one removing a dead prison (jid=%d)", pr->pr_id));
2286         if (pr->pr_ref == 1) {
2287                 prison_deref(pr,
2288                     deuref | PD_DEREF | PD_LOCKED | PD_LIST_XLOCKED);
2289                 return;
2290         }
2291
2292         mtx_unlock(&pr->pr_mtx);
2293         sx_xunlock(&allprison_lock);
2294         /*
2295          * Kill all processes unfortunate enough to be attached to this prison.
2296          */
2297         sx_slock(&allproc_lock);
2298         LIST_FOREACH(p, &allproc, p_list) {
2299                 PROC_LOCK(p);
2300                 if (p->p_state != PRS_NEW && p->p_ucred &&
2301                     p->p_ucred->cr_prison == pr)
2302                         kern_psignal(p, SIGKILL);
2303                 PROC_UNLOCK(p);
2304         }
2305         sx_sunlock(&allproc_lock);
2306         /* Remove the temporary reference added by jail_remove. */
2307         prison_deref(pr, deuref | PD_DEREF);
2308 }
2309
2310
2311 /*
2312  * struct jail_attach_args {
2313  *      int jid;
2314  * };
2315  */
2316 int
2317 sys_jail_attach(struct thread *td, struct jail_attach_args *uap)
2318 {
2319         struct prison *pr;
2320         int error;
2321
2322         error = priv_check(td, PRIV_JAIL_ATTACH);
2323         if (error)
2324                 return (error);
2325
2326         /*
2327          * Start with exclusive hold on allprison_lock to ensure that a possible
2328          * PR_METHOD_REMOVE call isn't concurrent with jail_set or jail_remove.
2329          * But then immediately downgrade it since we don't need to stop
2330          * readers.
2331          */
2332         sx_xlock(&allprison_lock);
2333         sx_downgrade(&allprison_lock);
2334         pr = prison_find_child(td->td_ucred->cr_prison, uap->jid);
2335         if (pr == NULL) {
2336                 sx_sunlock(&allprison_lock);
2337                 return (EINVAL);
2338         }
2339
2340         /*
2341          * Do not allow a process to attach to a prison that is not
2342          * considered to be "alive".
2343          */
2344         if (pr->pr_uref == 0) {
2345                 mtx_unlock(&pr->pr_mtx);
2346                 sx_sunlock(&allprison_lock);
2347                 return (EINVAL);
2348         }
2349
2350         return (do_jail_attach(td, pr));
2351 }
2352
2353 static int
2354 do_jail_attach(struct thread *td, struct prison *pr)
2355 {
2356         struct proc *p;
2357         struct ucred *newcred, *oldcred;
2358         int error;
2359
2360         /*
2361          * XXX: Note that there is a slight race here if two threads
2362          * in the same privileged process attempt to attach to two
2363          * different jails at the same time.  It is important for
2364          * user processes not to do this, or they might end up with
2365          * a process root from one prison, but attached to the jail
2366          * of another.
2367          */
2368         pr->pr_ref++;
2369         pr->pr_uref++;
2370         mtx_unlock(&pr->pr_mtx);
2371
2372         /* Let modules do whatever they need to prepare for attaching. */
2373         error = osd_jail_call(pr, PR_METHOD_ATTACH, td);
2374         if (error) {
2375                 prison_deref(pr, PD_DEREF | PD_DEUREF | PD_LIST_SLOCKED);
2376                 return (error);
2377         }
2378         sx_sunlock(&allprison_lock);
2379
2380         /*
2381          * Reparent the newly attached process to this jail.
2382          */
2383         p = td->td_proc;
2384         error = cpuset_setproc_update_set(p, pr->pr_cpuset);
2385         if (error)
2386                 goto e_revert_osd;
2387
2388         vn_lock(pr->pr_root, LK_EXCLUSIVE | LK_RETRY);
2389         if ((error = change_dir(pr->pr_root, td)) != 0)
2390                 goto e_unlock;
2391 #ifdef MAC
2392         if ((error = mac_vnode_check_chroot(td->td_ucred, pr->pr_root)))
2393                 goto e_unlock;
2394 #endif
2395         VOP_UNLOCK(pr->pr_root, 0);
2396         if ((error = pwd_chroot(td, pr->pr_root)))
2397                 goto e_revert_osd;
2398
2399         newcred = crget();
2400         PROC_LOCK(p);
2401         oldcred = crcopysafe(p, newcred);
2402         newcred->cr_prison = pr;
2403         proc_set_cred(p, newcred);
2404         setsugid(p);
2405         PROC_UNLOCK(p);
2406 #ifdef RACCT
2407         racct_proc_ucred_changed(p, oldcred, newcred);
2408 #endif
2409         prison_deref(oldcred->cr_prison, PD_DEREF | PD_DEUREF);
2410         crfree(oldcred);
2411         return (0);
2412
2413  e_unlock:
2414         VOP_UNLOCK(pr->pr_root, 0);
2415  e_revert_osd:
2416         /* Tell modules this thread is still in its old jail after all. */
2417         (void)osd_jail_call(td->td_ucred->cr_prison, PR_METHOD_ATTACH, td);
2418         prison_deref(pr, PD_DEREF | PD_DEUREF);
2419         return (error);
2420 }
2421
2422
2423 /*
2424  * Returns a locked prison instance, or NULL on failure.
2425  */
2426 struct prison *
2427 prison_find(int prid)
2428 {
2429         struct prison *pr;
2430
2431         sx_assert(&allprison_lock, SX_LOCKED);
2432         TAILQ_FOREACH(pr, &allprison, pr_list) {
2433                 if (pr->pr_id == prid) {
2434                         mtx_lock(&pr->pr_mtx);
2435                         if (pr->pr_ref > 0)
2436                                 return (pr);
2437                         mtx_unlock(&pr->pr_mtx);
2438                 }
2439         }
2440         return (NULL);
2441 }
2442
2443 /*
2444  * Find a prison that is a descendant of mypr.  Returns a locked prison or NULL.
2445  */
2446 struct prison *
2447 prison_find_child(struct prison *mypr, int prid)
2448 {
2449         struct prison *pr;
2450         int descend;
2451
2452         sx_assert(&allprison_lock, SX_LOCKED);
2453         FOREACH_PRISON_DESCENDANT(mypr, pr, descend) {
2454                 if (pr->pr_id == prid) {
2455                         mtx_lock(&pr->pr_mtx);
2456                         if (pr->pr_ref > 0)
2457                                 return (pr);
2458                         mtx_unlock(&pr->pr_mtx);
2459                 }
2460         }
2461         return (NULL);
2462 }
2463
2464 /*
2465  * Look for the name relative to mypr.  Returns a locked prison or NULL.
2466  */
2467 struct prison *
2468 prison_find_name(struct prison *mypr, const char *name)
2469 {
2470         struct prison *pr, *deadpr;
2471         size_t mylen;
2472         int descend;
2473
2474         sx_assert(&allprison_lock, SX_LOCKED);
2475         mylen = (mypr == &prison0) ? 0 : strlen(mypr->pr_name) + 1;
2476  again:
2477         deadpr = NULL;
2478         FOREACH_PRISON_DESCENDANT(mypr, pr, descend) {
2479                 if (!strcmp(pr->pr_name + mylen, name)) {
2480                         mtx_lock(&pr->pr_mtx);
2481                         if (pr->pr_ref > 0) {
2482                                 if (pr->pr_uref > 0)
2483                                         return (pr);
2484                                 deadpr = pr;
2485                         }
2486                         mtx_unlock(&pr->pr_mtx);
2487                 }
2488         }
2489         /* There was no valid prison - perhaps there was a dying one. */
2490         if (deadpr != NULL) {
2491                 mtx_lock(&deadpr->pr_mtx);
2492                 if (deadpr->pr_ref == 0) {
2493                         mtx_unlock(&deadpr->pr_mtx);
2494                         goto again;
2495                 }
2496         }
2497         return (deadpr);
2498 }
2499
2500 /*
2501  * See if a prison has the specific flag set.
2502  */
2503 int
2504 prison_flag(struct ucred *cred, unsigned flag)
2505 {
2506
2507         /* This is an atomic read, so no locking is necessary. */
2508         return (cred->cr_prison->pr_flags & flag);
2509 }
2510
2511 int
2512 prison_allow(struct ucred *cred, unsigned flag)
2513 {
2514
2515         /* This is an atomic read, so no locking is necessary. */
2516         return (cred->cr_prison->pr_allow & flag);
2517 }
2518
2519 /*
2520  * Remove a prison reference.  If that was the last reference, remove the
2521  * prison itself - but not in this context in case there are locks held.
2522  */
2523 void
2524 prison_free_locked(struct prison *pr)
2525 {
2526         int ref;
2527
2528         mtx_assert(&pr->pr_mtx, MA_OWNED);
2529         ref = --pr->pr_ref;
2530         mtx_unlock(&pr->pr_mtx);
2531         if (ref == 0)
2532                 taskqueue_enqueue(taskqueue_thread, &pr->pr_task);
2533 }
2534
2535 void
2536 prison_free(struct prison *pr)
2537 {
2538
2539         mtx_lock(&pr->pr_mtx);
2540         prison_free_locked(pr);
2541 }
2542
2543 /*
2544  * Complete a call to either prison_free or prison_proc_free.
2545  */
2546 static void
2547 prison_complete(void *context, int pending)
2548 {
2549         struct prison *pr = context;
2550
2551         sx_xlock(&allprison_lock);
2552         mtx_lock(&pr->pr_mtx);
2553         prison_deref(pr, pr->pr_uref
2554             ? PD_DEREF | PD_DEUREF | PD_LOCKED | PD_LIST_XLOCKED
2555             : PD_LOCKED | PD_LIST_XLOCKED);
2556 }
2557
2558 /*
2559  * Remove a prison reference (usually).  This internal version assumes no
2560  * mutexes are held, except perhaps the prison itself.  If there are no more
2561  * references, release and delist the prison.  On completion, the prison lock
2562  * and the allprison lock are both unlocked.
2563  */
2564 static void
2565 prison_deref(struct prison *pr, int flags)
2566 {
2567         struct prison *ppr, *tpr;
2568         int ref, lasturef;
2569
2570         if (!(flags & PD_LOCKED))
2571                 mtx_lock(&pr->pr_mtx);
2572         for (;;) {
2573                 if (flags & PD_DEUREF) {
2574                         KASSERT(pr->pr_uref > 0,
2575                             ("prison_deref PD_DEUREF on a dead prison (jid=%d)",
2576                              pr->pr_id));
2577                         pr->pr_uref--;
2578                         lasturef = pr->pr_uref == 0;
2579                         if (lasturef)
2580                                 pr->pr_ref++;
2581                         KASSERT(prison0.pr_uref != 0, ("prison0 pr_uref=0"));
2582                 } else
2583                         lasturef = 0;
2584                 if (flags & PD_DEREF) {
2585                         KASSERT(pr->pr_ref > 0,
2586                             ("prison_deref PD_DEREF on a dead prison (jid=%d)",
2587                              pr->pr_id));
2588                         pr->pr_ref--;
2589                 }
2590                 ref = pr->pr_ref;
2591                 mtx_unlock(&pr->pr_mtx);
2592
2593                 /*
2594                  * Tell the modules if the last user reference was removed
2595                  * (even it sticks around in dying state).
2596                  */
2597                 if (lasturef) {
2598                         if (!(flags & (PD_LIST_SLOCKED | PD_LIST_XLOCKED))) {
2599                                 sx_xlock(&allprison_lock);
2600                                 flags |= PD_LIST_XLOCKED;
2601                         }
2602                         (void)osd_jail_call(pr, PR_METHOD_REMOVE, NULL);
2603                         mtx_lock(&pr->pr_mtx);
2604                         ref = --pr->pr_ref;
2605                         mtx_unlock(&pr->pr_mtx);
2606                 }
2607
2608                 /* If the prison still has references, nothing else to do. */
2609                 if (ref > 0) {
2610                         if (flags & PD_LIST_SLOCKED)
2611                                 sx_sunlock(&allprison_lock);
2612                         else if (flags & PD_LIST_XLOCKED)
2613                                 sx_xunlock(&allprison_lock);
2614                         return;
2615                 }
2616
2617                 if (flags & PD_LIST_SLOCKED) {
2618                         if (!sx_try_upgrade(&allprison_lock)) {
2619                                 sx_sunlock(&allprison_lock);
2620                                 sx_xlock(&allprison_lock);
2621                         }
2622                 } else if (!(flags & PD_LIST_XLOCKED))
2623                         sx_xlock(&allprison_lock);
2624
2625                 TAILQ_REMOVE(&allprison, pr, pr_list);
2626                 LIST_REMOVE(pr, pr_sibling);
2627                 ppr = pr->pr_parent;
2628                 for (tpr = ppr; tpr != NULL; tpr = tpr->pr_parent)
2629                         tpr->pr_childcount--;
2630                 sx_xunlock(&allprison_lock);
2631
2632 #ifdef VIMAGE
2633                 if (pr->pr_vnet != ppr->pr_vnet)
2634                         vnet_destroy(pr->pr_vnet);
2635 #endif
2636                 if (pr->pr_root != NULL)
2637                         vrele(pr->pr_root);
2638                 mtx_destroy(&pr->pr_mtx);
2639 #ifdef INET
2640                 free(pr->pr_ip4, M_PRISON);
2641 #endif
2642 #ifdef INET6
2643                 free(pr->pr_ip6, M_PRISON);
2644 #endif
2645                 if (pr->pr_cpuset != NULL)
2646                         cpuset_rel(pr->pr_cpuset);
2647                 osd_jail_exit(pr);
2648 #ifdef RACCT
2649                 if (racct_enable)
2650                         prison_racct_detach(pr);
2651 #endif
2652                 free(pr, M_PRISON);
2653
2654                 /* Removing a prison frees a reference on its parent. */
2655                 pr = ppr;
2656                 mtx_lock(&pr->pr_mtx);
2657                 flags = PD_DEREF | PD_DEUREF;
2658         }
2659 }
2660
2661 void
2662 prison_hold_locked(struct prison *pr)
2663 {
2664
2665         mtx_assert(&pr->pr_mtx, MA_OWNED);
2666         KASSERT(pr->pr_ref > 0,
2667             ("Trying to hold dead prison (jid=%d).", pr->pr_id));
2668         pr->pr_ref++;
2669 }
2670
2671 void
2672 prison_hold(struct prison *pr)
2673 {
2674
2675         mtx_lock(&pr->pr_mtx);
2676         prison_hold_locked(pr);
2677         mtx_unlock(&pr->pr_mtx);
2678 }
2679
2680 void
2681 prison_proc_hold(struct prison *pr)
2682 {
2683
2684         mtx_lock(&pr->pr_mtx);
2685         KASSERT(pr->pr_uref > 0,
2686             ("Cannot add a process to a non-alive prison (jid=%d)", pr->pr_id));
2687         pr->pr_uref++;
2688         mtx_unlock(&pr->pr_mtx);
2689 }
2690
2691 void
2692 prison_proc_free(struct prison *pr)
2693 {
2694
2695         mtx_lock(&pr->pr_mtx);
2696         KASSERT(pr->pr_uref > 0,
2697             ("Trying to kill a process in a dead prison (jid=%d)", pr->pr_id));
2698         if (pr->pr_uref > 1)
2699                 pr->pr_uref--;
2700         else {
2701                 /*
2702                  * Don't remove the last user reference in this context, which
2703                  * is expected to be a process that is not only locked, but
2704                  * also half dead.
2705                  */
2706                 pr->pr_ref++;
2707                 mtx_unlock(&pr->pr_mtx);
2708                 taskqueue_enqueue(taskqueue_thread, &pr->pr_task);
2709                 return;
2710         }
2711         mtx_unlock(&pr->pr_mtx);
2712 }
2713
2714 /*
2715  * Check if a jail supports the given address family.
2716  *
2717  * Returns 0 if not jailed or the address family is supported, EAFNOSUPPORT
2718  * if not.
2719  */
2720 int
2721 prison_check_af(struct ucred *cred, int af)
2722 {
2723         struct prison *pr;
2724         int error;
2725
2726         KASSERT(cred != NULL, ("%s: cred is NULL", __func__));
2727
2728         pr = cred->cr_prison;
2729 #ifdef VIMAGE
2730         /* Prisons with their own network stack are not limited. */
2731         if (prison_owns_vnet(cred))
2732                 return (0);
2733 #endif
2734
2735         error = 0;
2736         switch (af)
2737         {
2738 #ifdef INET
2739         case AF_INET:
2740                 if (pr->pr_flags & PR_IP4)
2741                 {
2742                         mtx_lock(&pr->pr_mtx);
2743                         if ((pr->pr_flags & PR_IP4) && pr->pr_ip4 == NULL)
2744                                 error = EAFNOSUPPORT;
2745                         mtx_unlock(&pr->pr_mtx);
2746                 }
2747                 break;
2748 #endif
2749 #ifdef INET6
2750         case AF_INET6:
2751                 if (pr->pr_flags & PR_IP6)
2752                 {
2753                         mtx_lock(&pr->pr_mtx);
2754                         if ((pr->pr_flags & PR_IP6) && pr->pr_ip6 == NULL)
2755                                 error = EAFNOSUPPORT;
2756                         mtx_unlock(&pr->pr_mtx);
2757                 }
2758                 break;
2759 #endif
2760         case AF_LOCAL:
2761         case AF_ROUTE:
2762                 break;
2763         default:
2764                 if (!(pr->pr_allow & PR_ALLOW_SOCKET_AF))
2765                         error = EAFNOSUPPORT;
2766         }
2767         return (error);
2768 }
2769
2770 /*
2771  * Check if given address belongs to the jail referenced by cred (wrapper to
2772  * prison_check_ip[46]).
2773  *
2774  * Returns 0 if jail doesn't restrict the address family or if address belongs
2775  * to jail, EADDRNOTAVAIL if the address doesn't belong, or EAFNOSUPPORT if
2776  * the jail doesn't allow the address family.  IPv4 Address passed in in NBO.
2777  */
2778 int
2779 prison_if(struct ucred *cred, struct sockaddr *sa)
2780 {
2781 #ifdef INET
2782         struct sockaddr_in *sai;
2783 #endif
2784 #ifdef INET6
2785         struct sockaddr_in6 *sai6;
2786 #endif
2787         int error;
2788
2789         KASSERT(cred != NULL, ("%s: cred is NULL", __func__));
2790         KASSERT(sa != NULL, ("%s: sa is NULL", __func__));
2791
2792 #ifdef VIMAGE
2793         if (prison_owns_vnet(cred))
2794                 return (0);
2795 #endif
2796
2797         error = 0;
2798         switch (sa->sa_family)
2799         {
2800 #ifdef INET
2801         case AF_INET:
2802                 sai = (struct sockaddr_in *)sa;
2803                 error = prison_check_ip4(cred, &sai->sin_addr);
2804                 break;
2805 #endif
2806 #ifdef INET6
2807         case AF_INET6:
2808                 sai6 = (struct sockaddr_in6 *)sa;
2809                 error = prison_check_ip6(cred, &sai6->sin6_addr);
2810                 break;
2811 #endif
2812         default:
2813                 if (!(cred->cr_prison->pr_allow & PR_ALLOW_SOCKET_AF))
2814                         error = EAFNOSUPPORT;
2815         }
2816         return (error);
2817 }
2818
2819 /*
2820  * Return 0 if jails permit p1 to frob p2, otherwise ESRCH.
2821  */
2822 int
2823 prison_check(struct ucred *cred1, struct ucred *cred2)
2824 {
2825
2826         return ((cred1->cr_prison == cred2->cr_prison ||
2827             prison_ischild(cred1->cr_prison, cred2->cr_prison)) ? 0 : ESRCH);
2828 }
2829
2830 /*
2831  * Return 1 if p2 is a child of p1, otherwise 0.
2832  */
2833 int
2834 prison_ischild(struct prison *pr1, struct prison *pr2)
2835 {
2836
2837         for (pr2 = pr2->pr_parent; pr2 != NULL; pr2 = pr2->pr_parent)
2838                 if (pr1 == pr2)
2839                         return (1);
2840         return (0);
2841 }
2842
2843 /*
2844  * Return 1 if the passed credential is in a jail, otherwise 0.
2845  */
2846 int
2847 jailed(struct ucred *cred)
2848 {
2849
2850         return (cred->cr_prison != &prison0);
2851 }
2852
2853 /*
2854  * Return 1 if the passed credential is in a jail and that jail does not
2855  * have its own virtual network stack, otherwise 0.
2856  */
2857 int
2858 jailed_without_vnet(struct ucred *cred)
2859 {
2860
2861         if (!jailed(cred))
2862                 return (0);
2863 #ifdef VIMAGE
2864         if (prison_owns_vnet(cred))
2865                 return (0);
2866 #endif
2867
2868         return (1);
2869 }
2870
2871 /*
2872  * Return the correct hostname (domainname, et al) for the passed credential.
2873  */
2874 void
2875 getcredhostname(struct ucred *cred, char *buf, size_t size)
2876 {
2877         struct prison *pr;
2878
2879         /*
2880          * A NULL credential can be used to shortcut to the physical
2881          * system's hostname.
2882          */
2883         pr = (cred != NULL) ? cred->cr_prison : &prison0;
2884         mtx_lock(&pr->pr_mtx);
2885         strlcpy(buf, pr->pr_hostname, size);
2886         mtx_unlock(&pr->pr_mtx);
2887 }
2888
2889 void
2890 getcreddomainname(struct ucred *cred, char *buf, size_t size)
2891 {
2892
2893         mtx_lock(&cred->cr_prison->pr_mtx);
2894         strlcpy(buf, cred->cr_prison->pr_domainname, size);
2895         mtx_unlock(&cred->cr_prison->pr_mtx);
2896 }
2897
2898 void
2899 getcredhostuuid(struct ucred *cred, char *buf, size_t size)
2900 {
2901
2902         mtx_lock(&cred->cr_prison->pr_mtx);
2903         strlcpy(buf, cred->cr_prison->pr_hostuuid, size);
2904         mtx_unlock(&cred->cr_prison->pr_mtx);
2905 }
2906
2907 void
2908 getcredhostid(struct ucred *cred, unsigned long *hostid)
2909 {
2910
2911         mtx_lock(&cred->cr_prison->pr_mtx);
2912         *hostid = cred->cr_prison->pr_hostid;
2913         mtx_unlock(&cred->cr_prison->pr_mtx);
2914 }
2915
2916 #ifdef VIMAGE
2917 /*
2918  * Determine whether the prison represented by cred owns
2919  * its vnet rather than having it inherited.
2920  *
2921  * Returns 1 in case the prison owns the vnet, 0 otherwise.
2922  */
2923 int
2924 prison_owns_vnet(struct ucred *cred)
2925 {
2926
2927         /*
2928          * vnets cannot be added/removed after jail creation,
2929          * so no need to lock here.
2930          */
2931         return (cred->cr_prison->pr_flags & PR_VNET ? 1 : 0);
2932 }
2933 #endif
2934
2935 /*
2936  * Determine whether the subject represented by cred can "see"
2937  * status of a mount point.
2938  * Returns: 0 for permitted, ENOENT otherwise.
2939  * XXX: This function should be called cr_canseemount() and should be
2940  *      placed in kern_prot.c.
2941  */
2942 int
2943 prison_canseemount(struct ucred *cred, struct mount *mp)
2944 {
2945         struct prison *pr;
2946         struct statfs *sp;
2947         size_t len;
2948
2949         pr = cred->cr_prison;
2950         if (pr->pr_enforce_statfs == 0)
2951                 return (0);
2952         if (pr->pr_root->v_mount == mp)
2953                 return (0);
2954         if (pr->pr_enforce_statfs == 2)
2955                 return (ENOENT);
2956         /*
2957          * If jail's chroot directory is set to "/" we should be able to see
2958          * all mount-points from inside a jail.
2959          * This is ugly check, but this is the only situation when jail's
2960          * directory ends with '/'.
2961          */
2962         if (strcmp(pr->pr_path, "/") == 0)
2963                 return (0);
2964         len = strlen(pr->pr_path);
2965         sp = &mp->mnt_stat;
2966         if (strncmp(pr->pr_path, sp->f_mntonname, len) != 0)
2967                 return (ENOENT);
2968         /*
2969          * Be sure that we don't have situation where jail's root directory
2970          * is "/some/path" and mount point is "/some/pathpath".
2971          */
2972         if (sp->f_mntonname[len] != '\0' && sp->f_mntonname[len] != '/')
2973                 return (ENOENT);
2974         return (0);
2975 }
2976
2977 void
2978 prison_enforce_statfs(struct ucred *cred, struct mount *mp, struct statfs *sp)
2979 {
2980         char jpath[MAXPATHLEN];
2981         struct prison *pr;
2982         size_t len;
2983
2984         pr = cred->cr_prison;
2985         if (pr->pr_enforce_statfs == 0)
2986                 return;
2987         if (prison_canseemount(cred, mp) != 0) {
2988                 bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
2989                 strlcpy(sp->f_mntonname, "[restricted]",
2990                     sizeof(sp->f_mntonname));
2991                 return;
2992         }
2993         if (pr->pr_root->v_mount == mp) {
2994                 /*
2995                  * Clear current buffer data, so we are sure nothing from
2996                  * the valid path left there.
2997                  */
2998                 bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
2999                 *sp->f_mntonname = '/';
3000                 return;
3001         }
3002         /*
3003          * If jail's chroot directory is set to "/" we should be able to see
3004          * all mount-points from inside a jail.
3005          */
3006         if (strcmp(pr->pr_path, "/") == 0)
3007                 return;
3008         len = strlen(pr->pr_path);
3009         strlcpy(jpath, sp->f_mntonname + len, sizeof(jpath));
3010         /*
3011          * Clear current buffer data, so we are sure nothing from
3012          * the valid path left there.
3013          */
3014         bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
3015         if (*jpath == '\0') {
3016                 /* Should never happen. */
3017                 *sp->f_mntonname = '/';
3018         } else {
3019                 strlcpy(sp->f_mntonname, jpath, sizeof(sp->f_mntonname));
3020         }
3021 }
3022
3023 /*
3024  * Check with permission for a specific privilege is granted within jail.  We
3025  * have a specific list of accepted privileges; the rest are denied.
3026  */
3027 int
3028 prison_priv_check(struct ucred *cred, int priv)
3029 {
3030
3031         if (!jailed(cred))
3032                 return (0);
3033
3034 #ifdef VIMAGE
3035         /*
3036          * Privileges specific to prisons with a virtual network stack.
3037          * There might be a duplicate entry here in case the privilege
3038          * is only granted conditionally in the legacy jail case.
3039          */
3040         switch (priv) {
3041 #ifdef notyet
3042                 /*
3043                  * NFS-specific privileges.
3044                  */
3045         case PRIV_NFS_DAEMON:
3046         case PRIV_NFS_LOCKD:
3047 #endif
3048                 /*
3049                  * Network stack privileges.
3050                  */
3051         case PRIV_NET_BRIDGE:
3052         case PRIV_NET_GRE:
3053         case PRIV_NET_BPF:
3054         case PRIV_NET_RAW:              /* Dup, cond. in legacy jail case. */
3055         case PRIV_NET_ROUTE:
3056         case PRIV_NET_TAP:
3057         case PRIV_NET_SETIFMTU:
3058         case PRIV_NET_SETIFFLAGS:
3059         case PRIV_NET_SETIFCAP:
3060         case PRIV_NET_SETIFDESCR:
3061         case PRIV_NET_SETIFNAME :
3062         case PRIV_NET_SETIFMETRIC:
3063         case PRIV_NET_SETIFPHYS:
3064         case PRIV_NET_SETIFMAC:
3065         case PRIV_NET_ADDMULTI:
3066         case PRIV_NET_DELMULTI:
3067         case PRIV_NET_HWIOCTL:
3068         case PRIV_NET_SETLLADDR:
3069         case PRIV_NET_ADDIFGROUP:
3070         case PRIV_NET_DELIFGROUP:
3071         case PRIV_NET_IFCREATE:
3072         case PRIV_NET_IFDESTROY:
3073         case PRIV_NET_ADDIFADDR:
3074         case PRIV_NET_DELIFADDR:
3075         case PRIV_NET_LAGG:
3076         case PRIV_NET_GIF:
3077         case PRIV_NET_SETIFVNET:
3078         case PRIV_NET_SETIFFIB:
3079
3080                 /*
3081                  * 802.11-related privileges.
3082                  */
3083         case PRIV_NET80211_GETKEY:
3084 #ifdef notyet
3085         case PRIV_NET80211_MANAGE:              /* XXX-BZ discuss with sam@ */
3086 #endif
3087
3088 #ifdef notyet
3089                 /*
3090                  * ATM privileges.
3091                  */
3092         case PRIV_NETATM_CFG:
3093         case PRIV_NETATM_ADD:
3094         case PRIV_NETATM_DEL:
3095         case PRIV_NETATM_SET:
3096
3097                 /*
3098                  * Bluetooth privileges.
3099                  */
3100         case PRIV_NETBLUETOOTH_RAW:
3101 #endif
3102
3103                 /*
3104                  * Netgraph and netgraph module privileges.
3105                  */
3106         case PRIV_NETGRAPH_CONTROL:
3107 #ifdef notyet
3108         case PRIV_NETGRAPH_TTY:
3109 #endif
3110
3111                 /*
3112                  * IPv4 and IPv6 privileges.
3113                  */
3114         case PRIV_NETINET_IPFW:
3115         case PRIV_NETINET_DIVERT:
3116         case PRIV_NETINET_PF:
3117         case PRIV_NETINET_DUMMYNET:
3118         case PRIV_NETINET_CARP:
3119         case PRIV_NETINET_MROUTE:
3120         case PRIV_NETINET_RAW:
3121         case PRIV_NETINET_ADDRCTRL6:
3122         case PRIV_NETINET_ND6:
3123         case PRIV_NETINET_SCOPE6:
3124         case PRIV_NETINET_ALIFETIME6:
3125         case PRIV_NETINET_IPSEC:
3126         case PRIV_NETINET_BINDANY:
3127
3128 #ifdef notyet
3129                 /*
3130                  * NCP privileges.
3131                  */
3132         case PRIV_NETNCP:
3133
3134                 /*
3135                  * SMB privileges.
3136                  */
3137         case PRIV_NETSMB:
3138 #endif
3139
3140         /*
3141          * No default: or deny here.
3142          * In case of no permit fall through to next switch().
3143          */
3144                 if (cred->cr_prison->pr_flags & PR_VNET)
3145                         return (0);
3146         }
3147 #endif /* VIMAGE */
3148
3149         switch (priv) {
3150
3151                 /*
3152                  * Allow ktrace privileges for root in jail.
3153                  */
3154         case PRIV_KTRACE:
3155
3156 #if 0
3157                 /*
3158                  * Allow jailed processes to configure audit identity and
3159                  * submit audit records (login, etc).  In the future we may
3160                  * want to further refine the relationship between audit and
3161                  * jail.
3162                  */
3163         case PRIV_AUDIT_GETAUDIT:
3164         case PRIV_AUDIT_SETAUDIT:
3165         case PRIV_AUDIT_SUBMIT:
3166 #endif
3167
3168                 /*
3169                  * Allow jailed processes to manipulate process UNIX
3170                  * credentials in any way they see fit.
3171                  */
3172         case PRIV_CRED_SETUID:
3173         case PRIV_CRED_SETEUID:
3174         case PRIV_CRED_SETGID:
3175         case PRIV_CRED_SETEGID:
3176         case PRIV_CRED_SETGROUPS:
3177         case PRIV_CRED_SETREUID:
3178         case PRIV_CRED_SETREGID:
3179         case PRIV_CRED_SETRESUID:
3180         case PRIV_CRED_SETRESGID:
3181
3182                 /*
3183                  * Jail implements visibility constraints already, so allow
3184                  * jailed root to override uid/gid-based constraints.
3185                  */
3186         case PRIV_SEEOTHERGIDS:
3187         case PRIV_SEEOTHERUIDS:
3188
3189                 /*
3190                  * Jail implements inter-process debugging limits already, so
3191                  * allow jailed root various debugging privileges.
3192                  */
3193         case PRIV_DEBUG_DIFFCRED:
3194         case PRIV_DEBUG_SUGID:
3195         case PRIV_DEBUG_UNPRIV:
3196
3197                 /*
3198                  * Allow jail to set various resource limits and login
3199                  * properties, and for now, exceed process resource limits.
3200                  */
3201         case PRIV_PROC_LIMIT:
3202         case PRIV_PROC_SETLOGIN:
3203         case PRIV_PROC_SETRLIMIT:
3204
3205                 /*
3206                  * System V and POSIX IPC privileges are granted in jail.
3207                  */
3208         case PRIV_IPC_READ:
3209         case PRIV_IPC_WRITE:
3210         case PRIV_IPC_ADMIN:
3211         case PRIV_IPC_MSGSIZE:
3212         case PRIV_MQ_ADMIN:
3213
3214                 /*
3215                  * Jail operations within a jail work on child jails.
3216                  */
3217         case PRIV_JAIL_ATTACH:
3218         case PRIV_JAIL_SET:
3219         case PRIV_JAIL_REMOVE:
3220
3221                 /*
3222                  * Jail implements its own inter-process limits, so allow
3223                  * root processes in jail to change scheduling on other
3224                  * processes in the same jail.  Likewise for signalling.
3225                  */
3226         case PRIV_SCHED_DIFFCRED:
3227         case PRIV_SCHED_CPUSET:
3228         case PRIV_SIGNAL_DIFFCRED:
3229         case PRIV_SIGNAL_SUGID:
3230
3231                 /*
3232                  * Allow jailed processes to write to sysctls marked as jail
3233                  * writable.
3234                  */
3235         case PRIV_SYSCTL_WRITEJAIL:
3236
3237                 /*
3238                  * Allow root in jail to manage a variety of quota
3239                  * properties.  These should likely be conditional on a
3240                  * configuration option.
3241                  */
3242         case PRIV_VFS_GETQUOTA:
3243         case PRIV_VFS_SETQUOTA:
3244
3245                 /*
3246                  * Since Jail relies on chroot() to implement file system
3247                  * protections, grant many VFS privileges to root in jail.
3248                  * Be careful to exclude mount-related and NFS-related
3249                  * privileges.
3250                  */
3251         case PRIV_VFS_READ:
3252         case PRIV_VFS_WRITE:
3253         case PRIV_VFS_ADMIN:
3254         case PRIV_VFS_EXEC:
3255         case PRIV_VFS_LOOKUP:
3256         case PRIV_VFS_BLOCKRESERVE:     /* XXXRW: Slightly surprising. */
3257         case PRIV_VFS_CHFLAGS_DEV:
3258         case PRIV_VFS_CHOWN:
3259         case PRIV_VFS_CHROOT:
3260         case PRIV_VFS_RETAINSUGID:
3261         case PRIV_VFS_FCHROOT:
3262         case PRIV_VFS_LINK:
3263         case PRIV_VFS_SETGID:
3264         case PRIV_VFS_STAT:
3265         case PRIV_VFS_STICKYFILE:
3266
3267                 /*
3268                  * As in the non-jail case, non-root users are expected to be
3269                  * able to read kernel/phyiscal memory (provided /dev/[k]mem
3270                  * exists in the jail and they have permission to access it).
3271                  */
3272         case PRIV_KMEM_READ:
3273                 return (0);
3274
3275                 /*
3276                  * Depending on the global setting, allow privilege of
3277                  * setting system flags.
3278                  */
3279         case PRIV_VFS_SYSFLAGS:
3280                 if (cred->cr_prison->pr_allow & PR_ALLOW_CHFLAGS)
3281                         return (0);
3282                 else
3283                         return (EPERM);
3284
3285                 /*
3286                  * Depending on the global setting, allow privilege of
3287                  * mounting/unmounting file systems.
3288                  */
3289         case PRIV_VFS_MOUNT:
3290         case PRIV_VFS_UNMOUNT:
3291         case PRIV_VFS_MOUNT_NONUSER:
3292         case PRIV_VFS_MOUNT_OWNER:
3293                 if (cred->cr_prison->pr_allow & PR_ALLOW_MOUNT &&
3294                     cred->cr_prison->pr_enforce_statfs < 2)
3295                         return (0);
3296                 else
3297                         return (EPERM);
3298
3299                 /*
3300                  * Conditionally allow jailed root to bind reserved ports.
3301                  */
3302         case PRIV_NETINET_RESERVEDPORT:
3303                 if (cred->cr_prison->pr_allow & PR_ALLOW_RESERVED_PORTS)
3304                         return (0);
3305                 else
3306                         return (EPERM);
3307
3308                 /*
3309                  * Allow jailed root to reuse in-use ports.
3310                  */
3311         case PRIV_NETINET_REUSEPORT:
3312                 return (0);
3313
3314                 /*
3315                  * Allow jailed root to set certain IPv4/6 (option) headers.
3316                  */
3317         case PRIV_NETINET_SETHDROPTS:
3318                 return (0);
3319
3320                 /*
3321                  * Conditionally allow creating raw sockets in jail.
3322                  */
3323         case PRIV_NETINET_RAW:
3324                 if (cred->cr_prison->pr_allow & PR_ALLOW_RAW_SOCKETS)
3325                         return (0);
3326                 else
3327                         return (EPERM);
3328
3329                 /*
3330                  * Since jail implements its own visibility limits on netstat
3331                  * sysctls, allow getcred.  This allows identd to work in
3332                  * jail.
3333                  */
3334         case PRIV_NETINET_GETCRED:
3335                 return (0);
3336
3337                 /*
3338                  * Allow jailed root to set loginclass.
3339                  */
3340         case PRIV_PROC_SETLOGINCLASS:
3341                 return (0);
3342
3343         default:
3344                 /*
3345                  * In all remaining cases, deny the privilege request.  This
3346                  * includes almost all network privileges, many system
3347                  * configuration privileges.
3348                  */
3349                 return (EPERM);
3350         }
3351 }
3352
3353 /*
3354  * Return the part of pr2's name that is relative to pr1, or the whole name
3355  * if it does not directly follow.
3356  */
3357
3358 char *
3359 prison_name(struct prison *pr1, struct prison *pr2)
3360 {
3361         char *name;
3362
3363         /* Jails see themselves as "0" (if they see themselves at all). */
3364         if (pr1 == pr2)
3365                 return "0";
3366         name = pr2->pr_name;
3367         if (prison_ischild(pr1, pr2)) {
3368                 /*
3369                  * pr1 isn't locked (and allprison_lock may not be either)
3370                  * so its length can't be counted on.  But the number of dots
3371                  * can be counted on - and counted.
3372                  */
3373                 for (; pr1 != &prison0; pr1 = pr1->pr_parent)
3374                         name = strchr(name, '.') + 1;
3375         }
3376         return (name);
3377 }
3378
3379 /*
3380  * Return the part of pr2's path that is relative to pr1, or the whole path
3381  * if it does not directly follow.
3382  */
3383 static char *
3384 prison_path(struct prison *pr1, struct prison *pr2)
3385 {
3386         char *path1, *path2;
3387         int len1;
3388
3389         path1 = pr1->pr_path;
3390         path2 = pr2->pr_path;
3391         if (!strcmp(path1, "/"))
3392                 return (path2);
3393         len1 = strlen(path1);
3394         if (strncmp(path1, path2, len1))
3395                 return (path2);
3396         if (path2[len1] == '\0')
3397                 return "/";
3398         if (path2[len1] == '/')
3399                 return (path2 + len1);
3400         return (path2);
3401 }
3402
3403
3404 /*
3405  * Jail-related sysctls.
3406  */
3407 static SYSCTL_NODE(_security, OID_AUTO, jail, CTLFLAG_RW, 0,
3408     "Jails");
3409
3410 static int
3411 sysctl_jail_list(SYSCTL_HANDLER_ARGS)
3412 {
3413         struct xprison *xp;
3414         struct prison *pr, *cpr;
3415 #ifdef INET
3416         struct in_addr *ip4 = NULL;
3417         int ip4s = 0;
3418 #endif
3419 #ifdef INET6
3420         struct in6_addr *ip6 = NULL;
3421         int ip6s = 0;
3422 #endif
3423         int descend, error;
3424
3425         xp = malloc(sizeof(*xp), M_TEMP, M_WAITOK);
3426         pr = req->td->td_ucred->cr_prison;
3427         error = 0;
3428         sx_slock(&allprison_lock);
3429         FOREACH_PRISON_DESCENDANT(pr, cpr, descend) {
3430 #if defined(INET) || defined(INET6)
3431  again:
3432 #endif
3433                 mtx_lock(&cpr->pr_mtx);
3434 #ifdef INET
3435                 if (cpr->pr_ip4s > 0) {
3436                         if (ip4s < cpr->pr_ip4s) {
3437                                 ip4s = cpr->pr_ip4s;
3438                                 mtx_unlock(&cpr->pr_mtx);
3439                                 ip4 = realloc(ip4, ip4s *
3440                                     sizeof(struct in_addr), M_TEMP, M_WAITOK);
3441                                 goto again;
3442                         }
3443                         bcopy(cpr->pr_ip4, ip4,
3444                             cpr->pr_ip4s * sizeof(struct in_addr));
3445                 }
3446 #endif
3447 #ifdef INET6
3448                 if (cpr->pr_ip6s > 0) {
3449                         if (ip6s < cpr->pr_ip6s) {
3450                                 ip6s = cpr->pr_ip6s;
3451                                 mtx_unlock(&cpr->pr_mtx);
3452                                 ip6 = realloc(ip6, ip6s *
3453                                     sizeof(struct in6_addr), M_TEMP, M_WAITOK);
3454                                 goto again;
3455                         }
3456                         bcopy(cpr->pr_ip6, ip6,
3457                             cpr->pr_ip6s * sizeof(struct in6_addr));
3458                 }
3459 #endif
3460                 if (cpr->pr_ref == 0) {
3461                         mtx_unlock(&cpr->pr_mtx);
3462                         continue;
3463                 }
3464                 bzero(xp, sizeof(*xp));
3465                 xp->pr_version = XPRISON_VERSION;
3466                 xp->pr_id = cpr->pr_id;
3467                 xp->pr_state = cpr->pr_uref > 0
3468                     ? PRISON_STATE_ALIVE : PRISON_STATE_DYING;
3469                 strlcpy(xp->pr_path, prison_path(pr, cpr), sizeof(xp->pr_path));
3470                 strlcpy(xp->pr_host, cpr->pr_hostname, sizeof(xp->pr_host));
3471                 strlcpy(xp->pr_name, prison_name(pr, cpr), sizeof(xp->pr_name));
3472 #ifdef INET
3473                 xp->pr_ip4s = cpr->pr_ip4s;
3474 #endif
3475 #ifdef INET6
3476                 xp->pr_ip6s = cpr->pr_ip6s;
3477 #endif
3478                 mtx_unlock(&cpr->pr_mtx);
3479                 error = SYSCTL_OUT(req, xp, sizeof(*xp));
3480                 if (error)
3481                         break;
3482 #ifdef INET
3483                 if (xp->pr_ip4s > 0) {
3484                         error = SYSCTL_OUT(req, ip4,
3485                             xp->pr_ip4s * sizeof(struct in_addr));
3486                         if (error)
3487                                 break;
3488                 }
3489 #endif
3490 #ifdef INET6
3491                 if (xp->pr_ip6s > 0) {
3492                         error = SYSCTL_OUT(req, ip6,
3493                             xp->pr_ip6s * sizeof(struct in6_addr));
3494                         if (error)
3495                                 break;
3496                 }
3497 #endif
3498         }
3499         sx_sunlock(&allprison_lock);
3500         free(xp, M_TEMP);
3501 #ifdef INET
3502         free(ip4, M_TEMP);
3503 #endif
3504 #ifdef INET6
3505         free(ip6, M_TEMP);
3506 #endif
3507         return (error);
3508 }
3509
3510 SYSCTL_OID(_security_jail, OID_AUTO, list,
3511     CTLTYPE_STRUCT | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0,
3512     sysctl_jail_list, "S", "List of active jails");
3513
3514 static int
3515 sysctl_jail_jailed(SYSCTL_HANDLER_ARGS)
3516 {
3517         int error, injail;
3518
3519         injail = jailed(req->td->td_ucred);
3520         error = SYSCTL_OUT(req, &injail, sizeof(injail));
3521
3522         return (error);
3523 }
3524
3525 SYSCTL_PROC(_security_jail, OID_AUTO, jailed,
3526     CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0,
3527     sysctl_jail_jailed, "I", "Process in jail?");
3528
3529 static int
3530 sysctl_jail_vnet(SYSCTL_HANDLER_ARGS)
3531 {
3532         int error, havevnet;
3533 #ifdef VIMAGE
3534         struct ucred *cred = req->td->td_ucred;
3535
3536         havevnet = jailed(cred) && prison_owns_vnet(cred);
3537 #else
3538         havevnet = 0;
3539 #endif
3540         error = SYSCTL_OUT(req, &havevnet, sizeof(havevnet));
3541
3542         return (error);
3543 }
3544
3545 SYSCTL_PROC(_security_jail, OID_AUTO, vnet,
3546     CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0,
3547     sysctl_jail_vnet, "I", "Jail owns VNET?");
3548
3549 #if defined(INET) || defined(INET6)
3550 SYSCTL_UINT(_security_jail, OID_AUTO, jail_max_af_ips, CTLFLAG_RW,
3551     &jail_max_af_ips, 0,
3552     "Number of IP addresses a jail may have at most per address family (deprecated)");
3553 #endif
3554
3555 /*
3556  * Default parameters for jail(2) compatibility.  For historical reasons,
3557  * the sysctl names have varying similarity to the parameter names.  Prisons
3558  * just see their own parameters, and can't change them.
3559  */
3560 static int
3561 sysctl_jail_default_allow(SYSCTL_HANDLER_ARGS)
3562 {
3563         struct prison *pr;
3564         int allow, error, i;
3565
3566         pr = req->td->td_ucred->cr_prison;
3567         allow = (pr == &prison0) ? jail_default_allow : pr->pr_allow;
3568
3569         /* Get the current flag value, and convert it to a boolean. */
3570         i = (allow & arg2) ? 1 : 0;
3571         if (arg1 != NULL)
3572                 i = !i;
3573         error = sysctl_handle_int(oidp, &i, 0, req);
3574         if (error || !req->newptr)
3575                 return (error);
3576         i = i ? arg2 : 0;
3577         if (arg1 != NULL)
3578                 i ^= arg2;
3579         /*
3580          * The sysctls don't have CTLFLAGS_PRISON, so assume prison0
3581          * for writing.
3582          */
3583         mtx_lock(&prison0.pr_mtx);
3584         jail_default_allow = (jail_default_allow & ~arg2) | i;
3585         mtx_unlock(&prison0.pr_mtx);
3586         return (0);
3587 }
3588
3589 SYSCTL_PROC(_security_jail, OID_AUTO, set_hostname_allowed,
3590     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3591     NULL, PR_ALLOW_SET_HOSTNAME, sysctl_jail_default_allow, "I",
3592     "Processes in jail can set their hostnames (deprecated)");
3593 SYSCTL_PROC(_security_jail, OID_AUTO, socket_unixiproute_only,
3594     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3595     (void *)1, PR_ALLOW_SOCKET_AF, sysctl_jail_default_allow, "I",
3596     "Processes in jail are limited to creating UNIX/IP/route sockets only (deprecated)");
3597 SYSCTL_PROC(_security_jail, OID_AUTO, sysvipc_allowed,
3598     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3599     NULL, PR_ALLOW_SYSVIPC, sysctl_jail_default_allow, "I",
3600     "Processes in jail can use System V IPC primitives (deprecated)");
3601 SYSCTL_PROC(_security_jail, OID_AUTO, allow_raw_sockets,
3602     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3603     NULL, PR_ALLOW_RAW_SOCKETS, sysctl_jail_default_allow, "I",
3604     "Prison root can create raw sockets (deprecated)");
3605 SYSCTL_PROC(_security_jail, OID_AUTO, chflags_allowed,
3606     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3607     NULL, PR_ALLOW_CHFLAGS, sysctl_jail_default_allow, "I",
3608     "Processes in jail can alter system file flags (deprecated)");
3609 SYSCTL_PROC(_security_jail, OID_AUTO, mount_allowed,
3610     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3611     NULL, PR_ALLOW_MOUNT, sysctl_jail_default_allow, "I",
3612     "Processes in jail can mount/unmount jail-friendly file systems (deprecated)");
3613 SYSCTL_PROC(_security_jail, OID_AUTO, mount_devfs_allowed,
3614     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3615     NULL, PR_ALLOW_MOUNT_DEVFS, sysctl_jail_default_allow, "I",
3616     "Processes in jail can mount the devfs file system (deprecated)");
3617 SYSCTL_PROC(_security_jail, OID_AUTO, mount_fdescfs_allowed,
3618     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3619     NULL, PR_ALLOW_MOUNT_FDESCFS, sysctl_jail_default_allow, "I",
3620     "Processes in jail can mount the fdescfs file system (deprecated)");
3621 SYSCTL_PROC(_security_jail, OID_AUTO, mount_nullfs_allowed,
3622     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3623     NULL, PR_ALLOW_MOUNT_NULLFS, sysctl_jail_default_allow, "I",
3624     "Processes in jail can mount the nullfs file system (deprecated)");
3625 SYSCTL_PROC(_security_jail, OID_AUTO, mount_procfs_allowed,
3626     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3627     NULL, PR_ALLOW_MOUNT_PROCFS, sysctl_jail_default_allow, "I",
3628     "Processes in jail can mount the procfs file system (deprecated)");
3629 SYSCTL_PROC(_security_jail, OID_AUTO, mount_linprocfs_allowed,
3630     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3631     NULL, PR_ALLOW_MOUNT_LINPROCFS, sysctl_jail_default_allow, "I",
3632     "Processes in jail can mount the linprocfs file system (deprecated)");
3633 SYSCTL_PROC(_security_jail, OID_AUTO, mount_linsysfs_allowed,
3634     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3635     NULL, PR_ALLOW_MOUNT_LINSYSFS, sysctl_jail_default_allow, "I",
3636     "Processes in jail can mount the linsysfs file system (deprecated)");
3637 SYSCTL_PROC(_security_jail, OID_AUTO, mount_tmpfs_allowed,
3638     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3639     NULL, PR_ALLOW_MOUNT_TMPFS, sysctl_jail_default_allow, "I",
3640     "Processes in jail can mount the tmpfs file system (deprecated)");
3641 SYSCTL_PROC(_security_jail, OID_AUTO, mount_zfs_allowed,
3642     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3643     NULL, PR_ALLOW_MOUNT_ZFS, sysctl_jail_default_allow, "I",
3644     "Processes in jail can mount the zfs file system (deprecated)");
3645
3646 static int
3647 sysctl_jail_default_level(SYSCTL_HANDLER_ARGS)
3648 {
3649         struct prison *pr;
3650         int level, error;
3651
3652         pr = req->td->td_ucred->cr_prison;
3653         level = (pr == &prison0) ? *(int *)arg1 : *(int *)((char *)pr + arg2);
3654         error = sysctl_handle_int(oidp, &level, 0, req);
3655         if (error || !req->newptr)
3656                 return (error);
3657         *(int *)arg1 = level;
3658         return (0);
3659 }
3660
3661 SYSCTL_PROC(_security_jail, OID_AUTO, enforce_statfs,
3662     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
3663     &jail_default_enforce_statfs, offsetof(struct prison, pr_enforce_statfs),
3664     sysctl_jail_default_level, "I",
3665     "Processes in jail cannot see all mounted file systems (deprecated)");
3666
3667 SYSCTL_PROC(_security_jail, OID_AUTO, devfs_ruleset,
3668     CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_MPSAFE,
3669     &jail_default_devfs_rsnum, offsetof(struct prison, pr_devfs_rsnum),
3670     sysctl_jail_default_level, "I",
3671     "Ruleset for the devfs filesystem in jail (deprecated)");
3672
3673 /*
3674  * Nodes to describe jail parameters.  Maximum length of string parameters
3675  * is returned in the string itself, and the other parameters exist merely
3676  * to make themselves and their types known.
3677  */
3678 SYSCTL_NODE(_security_jail, OID_AUTO, param, CTLFLAG_RW, 0,
3679     "Jail parameters");
3680
3681 int
3682 sysctl_jail_param(SYSCTL_HANDLER_ARGS)
3683 {
3684         int i;
3685         long l;
3686         size_t s;
3687         char numbuf[12];
3688
3689         switch (oidp->oid_kind & CTLTYPE)
3690         {
3691         case CTLTYPE_LONG:
3692         case CTLTYPE_ULONG:
3693                 l = 0;
3694 #ifdef SCTL_MASK32
3695                 if (!(req->flags & SCTL_MASK32))
3696 #endif
3697                         return (SYSCTL_OUT(req, &l, sizeof(l)));
3698         case CTLTYPE_INT:
3699         case CTLTYPE_UINT:
3700                 i = 0;
3701                 return (SYSCTL_OUT(req, &i, sizeof(i)));
3702         case CTLTYPE_STRING:
3703                 snprintf(numbuf, sizeof(numbuf), "%jd", (intmax_t)arg2);
3704                 return
3705                     (sysctl_handle_string(oidp, numbuf, sizeof(numbuf), req));
3706         case CTLTYPE_STRUCT:
3707                 s = (size_t)arg2;
3708                 return (SYSCTL_OUT(req, &s, sizeof(s)));
3709         }
3710         return (0);
3711 }
3712
3713 /*
3714  * CTLFLAG_RDTUN in the following indicates jail parameters that can be set at
3715  * jail creation time but cannot be changed in an existing jail.
3716  */
3717 SYSCTL_JAIL_PARAM(, jid, CTLTYPE_INT | CTLFLAG_RDTUN, "I", "Jail ID");
3718 SYSCTL_JAIL_PARAM(, parent, CTLTYPE_INT | CTLFLAG_RD, "I", "Jail parent ID");
3719 SYSCTL_JAIL_PARAM_STRING(, name, CTLFLAG_RW, MAXHOSTNAMELEN, "Jail name");
3720 SYSCTL_JAIL_PARAM_STRING(, path, CTLFLAG_RDTUN, MAXPATHLEN, "Jail root path");
3721 SYSCTL_JAIL_PARAM(, securelevel, CTLTYPE_INT | CTLFLAG_RW,
3722     "I", "Jail secure level");
3723 SYSCTL_JAIL_PARAM(, osreldate, CTLTYPE_INT | CTLFLAG_RDTUN, "I", 
3724     "Jail value for kern.osreldate and uname -K");
3725 SYSCTL_JAIL_PARAM_STRING(, osrelease, CTLFLAG_RDTUN, OSRELEASELEN, 
3726     "Jail value for kern.osrelease and uname -r");
3727 SYSCTL_JAIL_PARAM(, enforce_statfs, CTLTYPE_INT | CTLFLAG_RW,
3728     "I", "Jail cannot see all mounted file systems");
3729 SYSCTL_JAIL_PARAM(, devfs_ruleset, CTLTYPE_INT | CTLFLAG_RW,
3730     "I", "Ruleset for in-jail devfs mounts");
3731 SYSCTL_JAIL_PARAM(, persist, CTLTYPE_INT | CTLFLAG_RW,
3732     "B", "Jail persistence");
3733 #ifdef VIMAGE
3734 SYSCTL_JAIL_PARAM(, vnet, CTLTYPE_INT | CTLFLAG_RDTUN,
3735     "E,jailsys", "Virtual network stack");
3736 #endif
3737 SYSCTL_JAIL_PARAM(, dying, CTLTYPE_INT | CTLFLAG_RD,
3738     "B", "Jail is in the process of shutting down");
3739
3740 SYSCTL_JAIL_PARAM_NODE(children, "Number of child jails");
3741 SYSCTL_JAIL_PARAM(_children, cur, CTLTYPE_INT | CTLFLAG_RD,
3742     "I", "Current number of child jails");
3743 SYSCTL_JAIL_PARAM(_children, max, CTLTYPE_INT | CTLFLAG_RW,
3744     "I", "Maximum number of child jails");
3745
3746 SYSCTL_JAIL_PARAM_SYS_NODE(host, CTLFLAG_RW, "Jail host info");
3747 SYSCTL_JAIL_PARAM_STRING(_host, hostname, CTLFLAG_RW, MAXHOSTNAMELEN,
3748     "Jail hostname");
3749 SYSCTL_JAIL_PARAM_STRING(_host, domainname, CTLFLAG_RW, MAXHOSTNAMELEN,
3750     "Jail NIS domainname");
3751 SYSCTL_JAIL_PARAM_STRING(_host, hostuuid, CTLFLAG_RW, HOSTUUIDLEN,
3752     "Jail host UUID");
3753 SYSCTL_JAIL_PARAM(_host, hostid, CTLTYPE_ULONG | CTLFLAG_RW,
3754     "LU", "Jail host ID");
3755
3756 SYSCTL_JAIL_PARAM_NODE(cpuset, "Jail cpuset");
3757 SYSCTL_JAIL_PARAM(_cpuset, id, CTLTYPE_INT | CTLFLAG_RD, "I", "Jail cpuset ID");
3758
3759 #ifdef INET
3760 SYSCTL_JAIL_PARAM_SYS_NODE(ip4, CTLFLAG_RDTUN,
3761     "Jail IPv4 address virtualization");
3762 SYSCTL_JAIL_PARAM_STRUCT(_ip4, addr, CTLFLAG_RW, sizeof(struct in_addr),
3763     "S,in_addr,a", "Jail IPv4 addresses");
3764 SYSCTL_JAIL_PARAM(_ip4, saddrsel, CTLTYPE_INT | CTLFLAG_RW,
3765     "B", "Do (not) use IPv4 source address selection rather than the "
3766     "primary jail IPv4 address.");
3767 #endif
3768 #ifdef INET6
3769 SYSCTL_JAIL_PARAM_SYS_NODE(ip6, CTLFLAG_RDTUN,
3770     "Jail IPv6 address virtualization");
3771 SYSCTL_JAIL_PARAM_STRUCT(_ip6, addr, CTLFLAG_RW, sizeof(struct in6_addr),
3772     "S,in6_addr,a", "Jail IPv6 addresses");
3773 SYSCTL_JAIL_PARAM(_ip6, saddrsel, CTLTYPE_INT | CTLFLAG_RW,
3774     "B", "Do (not) use IPv6 source address selection rather than the "
3775     "primary jail IPv6 address.");
3776 #endif
3777
3778 SYSCTL_JAIL_PARAM_NODE(allow, "Jail permission flags");
3779 SYSCTL_JAIL_PARAM(_allow, set_hostname, CTLTYPE_INT | CTLFLAG_RW,
3780     "B", "Jail may set hostname");
3781 SYSCTL_JAIL_PARAM(_allow, sysvipc, CTLTYPE_INT | CTLFLAG_RW,
3782     "B", "Jail may use SYSV IPC");
3783 SYSCTL_JAIL_PARAM(_allow, raw_sockets, CTLTYPE_INT | CTLFLAG_RW,
3784     "B", "Jail may create raw sockets");
3785 SYSCTL_JAIL_PARAM(_allow, chflags, CTLTYPE_INT | CTLFLAG_RW,
3786     "B", "Jail may alter system file flags");
3787 SYSCTL_JAIL_PARAM(_allow, quotas, CTLTYPE_INT | CTLFLAG_RW,
3788     "B", "Jail may set file quotas");
3789 SYSCTL_JAIL_PARAM(_allow, socket_af, CTLTYPE_INT | CTLFLAG_RW,
3790     "B", "Jail may create sockets other than just UNIX/IPv4/IPv6/route");
3791 SYSCTL_JAIL_PARAM(_allow, reserved_ports, CTLTYPE_INT | CTLFLAG_RW,
3792     "B", "Jail may bind sockets to reserved ports");
3793
3794 SYSCTL_JAIL_PARAM_SUBNODE(allow, mount, "Jail mount/unmount permission flags");
3795 SYSCTL_JAIL_PARAM(_allow_mount, , CTLTYPE_INT | CTLFLAG_RW,
3796     "B", "Jail may mount/unmount jail-friendly file systems in general");
3797 SYSCTL_JAIL_PARAM(_allow_mount, devfs, CTLTYPE_INT | CTLFLAG_RW,
3798     "B", "Jail may mount the devfs file system");
3799 SYSCTL_JAIL_PARAM(_allow_mount, fdescfs, CTLTYPE_INT | CTLFLAG_RW,
3800     "B", "Jail may mount the fdescfs file system");
3801 SYSCTL_JAIL_PARAM(_allow_mount, nullfs, CTLTYPE_INT | CTLFLAG_RW,
3802     "B", "Jail may mount the nullfs file system");
3803 SYSCTL_JAIL_PARAM(_allow_mount, procfs, CTLTYPE_INT | CTLFLAG_RW,
3804     "B", "Jail may mount the procfs file system");
3805 SYSCTL_JAIL_PARAM(_allow_mount, linprocfs, CTLTYPE_INT | CTLFLAG_RW,
3806     "B", "Jail may mount the linprocfs file system");
3807 SYSCTL_JAIL_PARAM(_allow_mount, linsysfs, CTLTYPE_INT | CTLFLAG_RW,
3808     "B", "Jail may mount the linsysfs file system");
3809 SYSCTL_JAIL_PARAM(_allow_mount, tmpfs, CTLTYPE_INT | CTLFLAG_RW,
3810     "B", "Jail may mount the tmpfs file system");
3811 SYSCTL_JAIL_PARAM(_allow_mount, zfs, CTLTYPE_INT | CTLFLAG_RW,
3812     "B", "Jail may mount the zfs file system");
3813
3814 #ifdef RACCT
3815 void
3816 prison_racct_foreach(void (*callback)(struct racct *racct,
3817     void *arg2, void *arg3), void (*pre)(void), void (*post)(void),
3818     void *arg2, void *arg3)
3819 {
3820         struct prison_racct *prr;
3821
3822         ASSERT_RACCT_ENABLED();
3823
3824         sx_slock(&allprison_lock);
3825         if (pre != NULL)
3826                 (pre)();
3827         LIST_FOREACH(prr, &allprison_racct, prr_next)
3828                 (callback)(prr->prr_racct, arg2, arg3);
3829         if (post != NULL)
3830                 (post)();
3831         sx_sunlock(&allprison_lock);
3832 }
3833
3834 static struct prison_racct *
3835 prison_racct_find_locked(const char *name)
3836 {
3837         struct prison_racct *prr;
3838
3839         ASSERT_RACCT_ENABLED();
3840         sx_assert(&allprison_lock, SA_XLOCKED);
3841
3842         if (name[0] == '\0' || strlen(name) >= MAXHOSTNAMELEN)
3843                 return (NULL);
3844
3845         LIST_FOREACH(prr, &allprison_racct, prr_next) {
3846                 if (strcmp(name, prr->prr_name) != 0)
3847                         continue;
3848
3849                 /* Found prison_racct with a matching name? */
3850                 prison_racct_hold(prr);
3851                 return (prr);
3852         }
3853
3854         /* Add new prison_racct. */
3855         prr = malloc(sizeof(*prr), M_PRISON_RACCT, M_ZERO | M_WAITOK);
3856         racct_create(&prr->prr_racct);
3857
3858         strcpy(prr->prr_name, name);
3859         refcount_init(&prr->prr_refcount, 1);
3860         LIST_INSERT_HEAD(&allprison_racct, prr, prr_next);
3861
3862         return (prr);
3863 }
3864
3865 struct prison_racct *
3866 prison_racct_find(const char *name)
3867 {
3868         struct prison_racct *prr;
3869
3870         ASSERT_RACCT_ENABLED();
3871
3872         sx_xlock(&allprison_lock);
3873         prr = prison_racct_find_locked(name);
3874         sx_xunlock(&allprison_lock);
3875         return (prr);
3876 }
3877
3878 void
3879 prison_racct_hold(struct prison_racct *prr)
3880 {
3881
3882         ASSERT_RACCT_ENABLED();
3883
3884         refcount_acquire(&prr->prr_refcount);
3885 }
3886
3887 static void
3888 prison_racct_free_locked(struct prison_racct *prr)
3889 {
3890
3891         ASSERT_RACCT_ENABLED();
3892         sx_assert(&allprison_lock, SA_XLOCKED);
3893
3894         if (refcount_release(&prr->prr_refcount)) {
3895                 racct_destroy(&prr->prr_racct);
3896                 LIST_REMOVE(prr, prr_next);
3897                 free(prr, M_PRISON_RACCT);
3898         }
3899 }
3900
3901 void
3902 prison_racct_free(struct prison_racct *prr)
3903 {
3904         int old;
3905
3906         ASSERT_RACCT_ENABLED();
3907         sx_assert(&allprison_lock, SA_UNLOCKED);
3908
3909         old = prr->prr_refcount;
3910         if (old > 1 && atomic_cmpset_int(&prr->prr_refcount, old, old - 1))
3911                 return;
3912
3913         sx_xlock(&allprison_lock);
3914         prison_racct_free_locked(prr);
3915         sx_xunlock(&allprison_lock);
3916 }
3917
3918 static void
3919 prison_racct_attach(struct prison *pr)
3920 {
3921         struct prison_racct *prr;
3922
3923         ASSERT_RACCT_ENABLED();
3924         sx_assert(&allprison_lock, SA_XLOCKED);
3925
3926         prr = prison_racct_find_locked(pr->pr_name);
3927         KASSERT(prr != NULL, ("cannot find prison_racct"));
3928
3929         pr->pr_prison_racct = prr;
3930 }
3931
3932 /*
3933  * Handle jail renaming.  From the racct point of view, renaming means
3934  * moving from one prison_racct to another.
3935  */
3936 static void
3937 prison_racct_modify(struct prison *pr)
3938 {
3939         struct proc *p;
3940         struct ucred *cred;
3941         struct prison_racct *oldprr;
3942
3943         ASSERT_RACCT_ENABLED();
3944
3945         sx_slock(&allproc_lock);
3946         sx_xlock(&allprison_lock);
3947
3948         if (strcmp(pr->pr_name, pr->pr_prison_racct->prr_name) == 0) {
3949                 sx_xunlock(&allprison_lock);
3950                 sx_sunlock(&allproc_lock);
3951                 return;
3952         }
3953
3954         oldprr = pr->pr_prison_racct;
3955         pr->pr_prison_racct = NULL;
3956
3957         prison_racct_attach(pr);
3958
3959         /*
3960          * Move resource utilisation records.
3961          */
3962         racct_move(pr->pr_prison_racct->prr_racct, oldprr->prr_racct);
3963
3964         /*
3965          * Force rctl to reattach rules to processes.
3966          */
3967         FOREACH_PROC_IN_SYSTEM(p) {
3968                 PROC_LOCK(p);
3969                 cred = crhold(p->p_ucred);
3970                 PROC_UNLOCK(p);
3971                 racct_proc_ucred_changed(p, cred, cred);
3972                 crfree(cred);
3973         }
3974
3975         sx_sunlock(&allproc_lock);
3976         prison_racct_free_locked(oldprr);
3977         sx_xunlock(&allprison_lock);
3978 }
3979
3980 static void
3981 prison_racct_detach(struct prison *pr)
3982 {
3983
3984         ASSERT_RACCT_ENABLED();
3985         sx_assert(&allprison_lock, SA_UNLOCKED);
3986
3987         if (pr->pr_prison_racct == NULL)
3988                 return;
3989         prison_racct_free(pr->pr_prison_racct);
3990         pr->pr_prison_racct = NULL;
3991 }
3992 #endif /* RACCT */
3993
3994 #ifdef DDB
3995
3996 static void
3997 db_show_prison(struct prison *pr)
3998 {
3999         struct bool_flags *bf;
4000         struct jailsys_flags *jsf;
4001 #if defined(INET) || defined(INET6)
4002         int ii;
4003 #endif
4004         unsigned f;
4005 #ifdef INET
4006         char ip4buf[INET_ADDRSTRLEN];
4007 #endif
4008 #ifdef INET6
4009         char ip6buf[INET6_ADDRSTRLEN];
4010 #endif
4011
4012         db_printf("prison %p:\n", pr);
4013         db_printf(" jid             = %d\n", pr->pr_id);
4014         db_printf(" name            = %s\n", pr->pr_name);
4015         db_printf(" parent          = %p\n", pr->pr_parent);
4016         db_printf(" ref             = %d\n", pr->pr_ref);
4017         db_printf(" uref            = %d\n", pr->pr_uref);
4018         db_printf(" path            = %s\n", pr->pr_path);
4019         db_printf(" cpuset          = %d\n", pr->pr_cpuset
4020             ? pr->pr_cpuset->cs_id : -1);
4021 #ifdef VIMAGE
4022         db_printf(" vnet            = %p\n", pr->pr_vnet);
4023 #endif
4024         db_printf(" root            = %p\n", pr->pr_root);
4025         db_printf(" securelevel     = %d\n", pr->pr_securelevel);
4026         db_printf(" devfs_rsnum     = %d\n", pr->pr_devfs_rsnum);
4027         db_printf(" children.max    = %d\n", pr->pr_childmax);
4028         db_printf(" children.cur    = %d\n", pr->pr_childcount);
4029         db_printf(" child           = %p\n", LIST_FIRST(&pr->pr_children));
4030         db_printf(" sibling         = %p\n", LIST_NEXT(pr, pr_sibling));
4031         db_printf(" flags           = 0x%x", pr->pr_flags);
4032         for (bf = pr_flag_bool; bf < pr_flag_bool + nitems(pr_flag_bool); bf++)
4033                 if (pr->pr_flags & bf->flag)
4034                         db_printf(" %s", bf->name);
4035         for (jsf = pr_flag_jailsys;
4036              jsf < pr_flag_jailsys + nitems(pr_flag_jailsys);
4037              jsf++) {
4038                 f = pr->pr_flags & (jsf->disable | jsf->new);
4039                 db_printf(" %-16s= %s\n", jsf->name,
4040                     (f != 0 && f == jsf->disable) ? "disable"
4041                     : (f == jsf->new) ? "new"
4042                     : "inherit");
4043         }
4044         db_printf(" allow           = 0x%x", pr->pr_allow);
4045         for (bf = pr_flag_allow;
4046              bf < pr_flag_allow + nitems(pr_flag_allow);
4047              bf++)
4048                 if (pr->pr_allow & bf->flag)
4049                         db_printf(" %s", bf->name);
4050         db_printf("\n");
4051         db_printf(" enforce_statfs  = %d\n", pr->pr_enforce_statfs);
4052         db_printf(" host.hostname   = %s\n", pr->pr_hostname);
4053         db_printf(" host.domainname = %s\n", pr->pr_domainname);
4054         db_printf(" host.hostuuid   = %s\n", pr->pr_hostuuid);
4055         db_printf(" host.hostid     = %lu\n", pr->pr_hostid);
4056 #ifdef INET
4057         db_printf(" ip4s            = %d\n", pr->pr_ip4s);
4058         for (ii = 0; ii < pr->pr_ip4s; ii++)
4059                 db_printf(" %s %s\n",
4060                     ii == 0 ? "ip4.addr        =" : "                 ",
4061                     inet_ntoa_r(pr->pr_ip4[ii], ip4buf));
4062 #endif
4063 #ifdef INET6
4064         db_printf(" ip6s            = %d\n", pr->pr_ip6s);
4065         for (ii = 0; ii < pr->pr_ip6s; ii++)
4066                 db_printf(" %s %s\n",
4067                     ii == 0 ? "ip6.addr        =" : "                 ",
4068                     ip6_sprintf(ip6buf, &pr->pr_ip6[ii]));
4069 #endif
4070 }
4071
4072 DB_SHOW_COMMAND(prison, db_show_prison_command)
4073 {
4074         struct prison *pr;
4075
4076         if (!have_addr) {
4077                 /*
4078                  * Show all prisons in the list, and prison0 which is not
4079                  * listed.
4080                  */
4081                 db_show_prison(&prison0);
4082                 if (!db_pager_quit) {
4083                         TAILQ_FOREACH(pr, &allprison, pr_list) {
4084                                 db_show_prison(pr);
4085                                 if (db_pager_quit)
4086                                         break;
4087                         }
4088                 }
4089                 return;
4090         }
4091
4092         if (addr == 0)
4093                 pr = &prison0;
4094         else {
4095                 /* Look for a prison with the ID and with references. */
4096                 TAILQ_FOREACH(pr, &allprison, pr_list)
4097                         if (pr->pr_id == addr && pr->pr_ref > 0)
4098                                 break;
4099                 if (pr == NULL)
4100                         /* Look again, without requiring a reference. */
4101                         TAILQ_FOREACH(pr, &allprison, pr_list)
4102                                 if (pr->pr_id == addr)
4103                                         break;
4104                 if (pr == NULL)
4105                         /* Assume address points to a valid prison. */
4106                         pr = (struct prison *)addr;
4107         }
4108         db_show_prison(pr);
4109 }
4110
4111 #endif /* DDB */