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