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