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