1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 23 */ 24 25 #include <sys/types.h> 26 #include <sys/sysmacros.h> 27 #include <sys/param.h> 28 #include <sys/systm.h> 29 #include <sys/cred_impl.h> 30 #include <sys/vnode.h> 31 #include <sys/vfs.h> 32 #include <sys/stat.h> 33 #include <sys/errno.h> 34 #include <sys/kmem.h> 35 #include <sys/user.h> 36 #include <sys/proc.h> 37 #include <sys/acct.h> 38 #include <sys/ipc_impl.h> 39 #include <sys/cmn_err.h> 40 #include <sys/debug.h> 41 #include <sys/policy.h> 42 #include <sys/kobj.h> 43 #include <sys/msg.h> 44 #include <sys/devpolicy.h> 45 #include <c2/audit.h> 46 #include <sys/varargs.h> 47 #include <sys/klpd.h> 48 #include <sys/modctl.h> 49 #include <sys/disp.h> 50 #include <sys/zone.h> 51 #include <inet/optcom.h> 52 #include <sys/sdt.h> 53 #include <sys/vfs.h> 54 #include <sys/mntent.h> 55 #include <sys/contract_impl.h> 56 #include <sys/dld_ioc.h> 57 58 /* 59 * There are two possible layers of privilege routines and two possible 60 * levels of secpolicy. Plus one other we may not be interested in, so 61 * we may need as many as 6 but no more. 62 */ 63 #define MAXPRIVSTACK 6 64 65 int priv_debug = 0; 66 int priv_basic_test = -1; 67 68 /* 69 * This file contains the majority of the policy routines. 70 * Since the policy routines are defined by function and not 71 * by privilege, there is quite a bit of duplication of 72 * functions. 73 * 74 * The secpolicy functions must not make assumptions about 75 * locks held or not held as any lock can be held while they're 76 * being called. 77 * 78 * Credentials are read-only so no special precautions need to 79 * be taken while locking them. 80 * 81 * When a new policy check needs to be added to the system the 82 * following procedure should be followed: 83 * 84 * Pick an appropriate secpolicy_*() function 85 * -> done if one exists. 86 * Create a new secpolicy function, preferably with 87 * a descriptive name using the standard template. 88 * Pick an appropriate privilege for the policy. 89 * If no appropraite privilege exists, define new one 90 * (this should be done with extreme care; in most cases 91 * little is gained by adding another privilege) 92 * 93 * WHY ROOT IS STILL SPECIAL. 94 * 95 * In a number of the policy functions, there are still explicit 96 * checks for uid 0. The rationale behind these is that many root 97 * owned files/objects hold configuration information which can give full 98 * privileges to the user once written to. To prevent escalation 99 * of privilege by allowing just a single privilege to modify root owned 100 * objects, we've added these root specific checks where we considered 101 * them necessary: modifying root owned files, changing uids to 0, etc. 102 * 103 * PRIVILEGE ESCALATION AND ZONES. 104 * 105 * A number of operations potentially allow the caller to achieve 106 * privileges beyond the ones normally required to perform the operation. 107 * For example, if allowed to create a setuid 0 executable, a process can 108 * gain privileges beyond PRIV_FILE_SETID. Zones, however, place 109 * restrictions on the ability to gain privileges beyond those available 110 * within the zone through file and process manipulation. Hence, such 111 * operations require that the caller have an effective set that includes 112 * all privileges available within the current zone, or all privileges 113 * if executing in the global zone. 114 * 115 * This is indicated in the priv_policy* policy checking functions 116 * through a combination of parameters. The "priv" parameter indicates 117 * the privilege that is required, and the "allzone" parameter indicates 118 * whether or not all privileges in the zone are required. In addition, 119 * priv can be set to PRIV_ALL to indicate that all privileges are 120 * required (regardless of zone). There are three scenarios of interest: 121 * (1) operation requires a specific privilege 122 * (2) operation requires a specific privilege, and requires all 123 * privileges available within the zone (or all privileges if in 124 * the global zone) 125 * (3) operation requires all privileges, regardless of zone 126 * 127 * For (1), priv should be set to the specific privilege, and allzone 128 * should be set to B_FALSE. 129 * For (2), priv should be set to the specific privilege, and allzone 130 * should be set to B_TRUE. 131 * For (3), priv should be set to PRIV_ALL, and allzone should be set 132 * to B_FALSE. 133 * 134 */ 135 136 /* 137 * The privileges are checked against the Effective set for 138 * ordinary processes and checked against the Limit set 139 * for euid 0 processes that haven't manipulated their privilege 140 * sets. 141 */ 142 #define HAS_ALLPRIVS(cr) priv_isfullset(&CR_OEPRIV(cr)) 143 #define ZONEPRIVS(cr) ((cr)->cr_zone->zone_privset) 144 #define HAS_ALLZONEPRIVS(cr) priv_issubset(ZONEPRIVS(cr), &CR_OEPRIV(cr)) 145 #define HAS_PRIVILEGE(cr, pr) ((pr) == PRIV_ALL ? \ 146 HAS_ALLPRIVS(cr) : \ 147 PRIV_ISASSERT(&CR_OEPRIV(cr), pr)) 148 149 #define FAST_BASIC_CHECK(cr, priv) \ 150 if (PRIV_ISASSERT(&CR_OEPRIV(cr), priv)) { \ 151 DTRACE_PROBE2(priv__ok, int, priv, boolean_t, B_FALSE); \ 152 return (0); \ 153 } 154 155 /* 156 * Policy checking functions. 157 * 158 * All of the system's policy should be implemented here. 159 */ 160 161 /* 162 * Private functions which take an additional va_list argument to 163 * implement an object specific policy override. 164 */ 165 static int priv_policy_ap(const cred_t *, int, boolean_t, int, 166 const char *, va_list); 167 static int priv_policy_va(const cred_t *, int, boolean_t, int, 168 const char *, ...); 169 170 /* 171 * Generic policy calls 172 * 173 * The "bottom" functions of policy control 174 */ 175 static char * 176 mprintf(const char *fmt, ...) 177 { 178 va_list args; 179 char *buf; 180 size_t len; 181 182 va_start(args, fmt); 183 len = vsnprintf(NULL, 0, fmt, args) + 1; 184 va_end(args); 185 186 buf = kmem_alloc(len, KM_NOSLEEP); 187 188 if (buf == NULL) 189 return (NULL); 190 191 va_start(args, fmt); 192 (void) vsnprintf(buf, len, fmt, args); 193 va_end(args); 194 195 return (buf); 196 } 197 198 /* 199 * priv_policy_errmsg() 200 * 201 * Generate an error message if privilege debugging is enabled system wide 202 * or for this particular process. 203 */ 204 205 #define FMTHDR "%s[%d]: missing privilege \"%s\" (euid = %d, syscall = %d)" 206 #define FMTMSG " for \"%s\"" 207 #define FMTFUN " needed at %s+0x%lx" 208 209 /* The maximum size privilege format: the concatenation of the above */ 210 #define FMTMAX FMTHDR FMTMSG FMTFUN "\n" 211 212 static void 213 priv_policy_errmsg(const cred_t *cr, int priv, const char *msg) 214 { 215 struct proc *me; 216 pc_t stack[MAXPRIVSTACK]; 217 int depth; 218 int i; 219 char *sym; 220 ulong_t off; 221 const char *pname; 222 223 char *cmd; 224 char fmt[sizeof (FMTMAX)]; 225 226 if ((me = curproc) == &p0) 227 return; 228 229 /* Privileges must be defined */ 230 ASSERT(priv == PRIV_ALL || priv == PRIV_MULTIPLE || 231 priv == PRIV_ALLZONE || priv == PRIV_GLOBAL || 232 priv_getbynum(priv) != NULL); 233 234 if (priv == PRIV_ALLZONE && INGLOBALZONE(me)) 235 priv = PRIV_ALL; 236 237 if (curthread->t_pre_sys) 238 ttolwp(curthread)->lwp_badpriv = (short)priv; 239 240 if (priv_debug == 0 && (CR_FLAGS(cr) & PRIV_DEBUG) == 0) 241 return; 242 243 (void) strcpy(fmt, FMTHDR); 244 245 if (me->p_user.u_comm[0]) 246 cmd = &me->p_user.u_comm[0]; 247 else 248 cmd = "priv_policy"; 249 250 if (msg != NULL && *msg != '\0') { 251 (void) strcat(fmt, FMTMSG); 252 } else { 253 (void) strcat(fmt, "%s"); 254 msg = ""; 255 } 256 257 sym = NULL; 258 259 depth = getpcstack(stack, MAXPRIVSTACK); 260 261 /* 262 * Try to find the first interesting function on the stack. 263 * priv_policy* that's us, so completely uninteresting. 264 * suser(), drv_priv(), secpolicy_* are also called from 265 * too many locations to convey useful information. 266 */ 267 for (i = 0; i < depth; i++) { 268 sym = kobj_getsymname((uintptr_t)stack[i], &off); 269 if (sym != NULL && 270 strstr(sym, "hasprocperm") == 0 && 271 strcmp("suser", sym) != 0 && 272 strcmp("ipcaccess", sym) != 0 && 273 strcmp("drv_priv", sym) != 0 && 274 strncmp("secpolicy_", sym, 10) != 0 && 275 strncmp("priv_policy", sym, 11) != 0) 276 break; 277 } 278 279 if (sym != NULL) 280 (void) strcat(fmt, FMTFUN); 281 282 (void) strcat(fmt, "\n"); 283 284 switch (priv) { 285 case PRIV_ALL: 286 pname = "ALL"; 287 break; 288 case PRIV_MULTIPLE: 289 pname = "MULTIPLE"; 290 break; 291 case PRIV_ALLZONE: 292 pname = "ZONE"; 293 break; 294 case PRIV_GLOBAL: 295 pname = "GLOBAL"; 296 break; 297 default: 298 pname = priv_getbynum(priv); 299 break; 300 } 301 302 if (CR_FLAGS(cr) & PRIV_DEBUG) { 303 /* Remember last message, just like lwp_badpriv. */ 304 if (curthread->t_pdmsg != NULL) { 305 kmem_free(curthread->t_pdmsg, 306 strlen(curthread->t_pdmsg) + 1); 307 } 308 309 curthread->t_pdmsg = mprintf(fmt, cmd, me->p_pid, pname, 310 cr->cr_uid, curthread->t_sysnum, msg, sym, off); 311 312 curthread->t_post_sys = 1; 313 } 314 if (priv_debug) { 315 cmn_err(CE_NOTE, fmt, cmd, me->p_pid, pname, cr->cr_uid, 316 curthread->t_sysnum, msg, sym, off); 317 } 318 } 319 320 /* 321 * Override the policy, if appropriate. Return 0 if the external 322 * policy engine approves. 323 */ 324 static int 325 priv_policy_override(const cred_t *cr, int priv, boolean_t allzone, va_list ap) 326 { 327 priv_set_t set; 328 int ret; 329 330 if (!(CR_FLAGS(cr) & PRIV_XPOLICY)) 331 return (-1); 332 333 if (priv == PRIV_ALL) { 334 priv_fillset(&set); 335 } else if (allzone) { 336 set = *ZONEPRIVS(cr); 337 } else { 338 priv_emptyset(&set); 339 priv_addset(&set, priv); 340 } 341 ret = klpd_call(cr, &set, ap); 342 return (ret); 343 } 344 345 static int 346 priv_policy_override_set(const cred_t *cr, const priv_set_t *req, va_list ap) 347 { 348 if (CR_FLAGS(cr) & PRIV_PFEXEC) 349 return (check_user_privs(cr, req)); 350 if (CR_FLAGS(cr) & PRIV_XPOLICY) { 351 return (klpd_call(cr, req, ap)); 352 } 353 return (-1); 354 } 355 356 static int 357 priv_policy_override_set_va(const cred_t *cr, const priv_set_t *req, ...) 358 { 359 va_list ap; 360 int ret; 361 362 va_start(ap, req); 363 ret = priv_policy_override_set(cr, req, ap); 364 va_end(ap); 365 return (ret); 366 } 367 368 /* 369 * Audit failure, log error message. 370 */ 371 static void 372 priv_policy_err(const cred_t *cr, int priv, boolean_t allzone, const char *msg) 373 { 374 375 if (AU_AUDITING()) 376 audit_priv(priv, allzone ? ZONEPRIVS(cr) : NULL, 0); 377 DTRACE_PROBE2(priv__err, int, priv, boolean_t, allzone); 378 379 if (priv_debug || (CR_FLAGS(cr) & PRIV_DEBUG) || 380 curthread->t_pre_sys) { 381 if (allzone && !HAS_ALLZONEPRIVS(cr)) { 382 priv_policy_errmsg(cr, PRIV_ALLZONE, msg); 383 } else { 384 ASSERT(!HAS_PRIVILEGE(cr, priv)); 385 priv_policy_errmsg(cr, priv, msg); 386 } 387 } 388 } 389 390 /* 391 * priv_policy_ap() 392 * return 0 or error. 393 * See block comment above for a description of "priv" and "allzone" usage. 394 */ 395 static int 396 priv_policy_ap(const cred_t *cr, int priv, boolean_t allzone, int err, 397 const char *msg, va_list ap) 398 { 399 if ((HAS_PRIVILEGE(cr, priv) && (!allzone || HAS_ALLZONEPRIVS(cr))) || 400 (!servicing_interrupt() && 401 priv_policy_override(cr, priv, allzone, ap) == 0)) { 402 if ((allzone || priv == PRIV_ALL || 403 !PRIV_ISASSERT(priv_basic, priv)) && 404 !servicing_interrupt()) { 405 PTOU(curproc)->u_acflag |= ASU; /* Needed for SVVS */ 406 if (AU_AUDITING()) 407 audit_priv(priv, 408 allzone ? ZONEPRIVS(cr) : NULL, 1); 409 } 410 err = 0; 411 DTRACE_PROBE2(priv__ok, int, priv, boolean_t, allzone); 412 } else if (!servicing_interrupt()) { 413 /* Failure audited in this procedure */ 414 priv_policy_err(cr, priv, allzone, msg); 415 } 416 return (err); 417 } 418 419 int 420 priv_policy_va(const cred_t *cr, int priv, boolean_t allzone, int err, 421 const char *msg, ...) 422 { 423 int ret; 424 va_list ap; 425 426 va_start(ap, msg); 427 ret = priv_policy_ap(cr, priv, allzone, err, msg, ap); 428 va_end(ap); 429 430 return (ret); 431 } 432 433 int 434 priv_policy(const cred_t *cr, int priv, boolean_t allzone, int err, 435 const char *msg) 436 { 437 return (priv_policy_va(cr, priv, allzone, err, msg, KLPDARG_NONE)); 438 } 439 440 /* 441 * Return B_TRUE for sufficient privileges, B_FALSE for insufficient privileges. 442 */ 443 boolean_t 444 priv_policy_choice(const cred_t *cr, int priv, boolean_t allzone) 445 { 446 boolean_t res = HAS_PRIVILEGE(cr, priv) && 447 (!allzone || HAS_ALLZONEPRIVS(cr)); 448 449 /* Audit success only */ 450 if (res && AU_AUDITING() && 451 (allzone || priv == PRIV_ALL || !PRIV_ISASSERT(priv_basic, priv)) && 452 !servicing_interrupt()) { 453 audit_priv(priv, allzone ? ZONEPRIVS(cr) : NULL, 1); 454 } 455 if (res) { 456 DTRACE_PROBE2(priv__ok, int, priv, boolean_t, allzone); 457 } else { 458 DTRACE_PROBE2(priv__err, int, priv, boolean_t, allzone); 459 } 460 return (res); 461 } 462 463 /* 464 * Non-auditing variant of priv_policy_choice(). 465 */ 466 boolean_t 467 priv_policy_only(const cred_t *cr, int priv, boolean_t allzone) 468 { 469 boolean_t res = HAS_PRIVILEGE(cr, priv) && 470 (!allzone || HAS_ALLZONEPRIVS(cr)); 471 472 if (res) { 473 DTRACE_PROBE2(priv__ok, int, priv, boolean_t, allzone); 474 } else { 475 DTRACE_PROBE2(priv__err, int, priv, boolean_t, allzone); 476 } 477 return (res); 478 } 479 480 /* 481 * Check whether all privileges in the required set are present. 482 */ 483 static int 484 secpolicy_require_set(const cred_t *cr, const priv_set_t *req, 485 const char *msg, ...) 486 { 487 int priv; 488 int pfound = -1; 489 priv_set_t pset; 490 va_list ap; 491 int ret; 492 493 if (req == PRIV_FULLSET ? HAS_ALLPRIVS(cr) : priv_issubset(req, 494 &CR_OEPRIV(cr))) { 495 return (0); 496 } 497 498 va_start(ap, msg); 499 ret = priv_policy_override_set(cr, req, ap); 500 va_end(ap); 501 if (ret == 0) 502 return (0); 503 504 if (req == PRIV_FULLSET || priv_isfullset(req)) { 505 priv_policy_err(cr, PRIV_ALL, B_FALSE, msg); 506 return (EACCES); 507 } 508 509 pset = CR_OEPRIV(cr); /* present privileges */ 510 priv_inverse(&pset); /* all non present privileges */ 511 priv_intersect(req, &pset); /* the actual missing privs */ 512 513 if (AU_AUDITING()) 514 audit_priv(PRIV_NONE, &pset, 0); 515 /* 516 * Privilege debugging; special case "one privilege in set". 517 */ 518 if (priv_debug || (CR_FLAGS(cr) & PRIV_DEBUG) || curthread->t_pre_sys) { 519 for (priv = 0; priv < nprivs; priv++) { 520 if (priv_ismember(&pset, priv)) { 521 if (pfound != -1) { 522 /* Multiple missing privs */ 523 priv_policy_errmsg(cr, PRIV_MULTIPLE, 524 msg); 525 return (EACCES); 526 } 527 pfound = priv; 528 } 529 } 530 ASSERT(pfound != -1); 531 /* Just the one missing privilege */ 532 priv_policy_errmsg(cr, pfound, msg); 533 } 534 535 return (EACCES); 536 } 537 538 /* 539 * Called when an operation requires that the caller be in the 540 * global zone, regardless of privilege. 541 */ 542 static int 543 priv_policy_global(const cred_t *cr) 544 { 545 if (crgetzoneid(cr) == GLOBAL_ZONEID) 546 return (0); /* success */ 547 548 if (priv_debug || (CR_FLAGS(cr) & PRIV_DEBUG) || 549 curthread->t_pre_sys) { 550 priv_policy_errmsg(cr, PRIV_GLOBAL, NULL); 551 } 552 return (EPERM); 553 } 554 555 /* 556 * Changing process priority 557 */ 558 int 559 secpolicy_setpriority(const cred_t *cr) 560 { 561 return (PRIV_POLICY(cr, PRIV_PROC_PRIOCNTL, B_FALSE, EPERM, NULL)); 562 } 563 564 /* 565 * Binding to a privileged port, port must be specified in host byte 566 * order. 567 * When adding a new privilege which allows binding to currently privileged 568 * ports, then you MUST also allow processes with PRIV_NET_PRIVADDR bind 569 * to these ports because of backward compatibility. 570 */ 571 int 572 secpolicy_net_privaddr(const cred_t *cr, in_port_t port, int proto) 573 { 574 char *reason; 575 int priv; 576 577 switch (port) { 578 case 137: 579 case 138: 580 case 139: 581 case 445: 582 /* 583 * NBT and SMB ports, these are normal privileged ports, 584 * allow bind only if the SYS_SMB or NET_PRIVADDR privilege 585 * is present. 586 * Try both, if neither is present return an error for 587 * priv SYS_SMB. 588 */ 589 if (PRIV_POLICY_ONLY(cr, PRIV_NET_PRIVADDR, B_FALSE)) 590 priv = PRIV_NET_PRIVADDR; 591 else 592 priv = PRIV_SYS_SMB; 593 reason = "NBT or SMB port"; 594 break; 595 596 case 2049: 597 case 4045: 598 /* 599 * NFS ports, these are extra privileged ports, allow bind 600 * only if the SYS_NFS privilege is present. 601 */ 602 priv = PRIV_SYS_NFS; 603 reason = "NFS port"; 604 break; 605 606 default: 607 priv = PRIV_NET_PRIVADDR; 608 reason = NULL; 609 break; 610 611 } 612 613 return (priv_policy_va(cr, priv, B_FALSE, EACCES, reason, 614 KLPDARG_PORT, (int)proto, (int)port, KLPDARG_NOMORE)); 615 } 616 617 /* 618 * Binding to a multilevel port on a trusted (labeled) system. 619 */ 620 int 621 secpolicy_net_bindmlp(const cred_t *cr) 622 { 623 return (PRIV_POLICY(cr, PRIV_NET_BINDMLP, B_FALSE, EACCES, NULL)); 624 } 625 626 /* 627 * Allow a communication between a zone and an unlabeled host when their 628 * labels don't match. 629 */ 630 int 631 secpolicy_net_mac_aware(const cred_t *cr) 632 { 633 return (PRIV_POLICY(cr, PRIV_NET_MAC_AWARE, B_FALSE, EACCES, NULL)); 634 } 635 636 /* 637 * Allow a privileged process to transmit traffic without explicit labels 638 */ 639 int 640 secpolicy_net_mac_implicit(const cred_t *cr) 641 { 642 return (PRIV_POLICY(cr, PRIV_NET_MAC_IMPLICIT, B_FALSE, EACCES, NULL)); 643 } 644 645 /* 646 * Common routine which determines whether a given credential can 647 * act on a given mount. 648 * When called through mount, the parameter needoptcheck is a pointer 649 * to a boolean variable which will be set to either true or false, 650 * depending on whether the mount policy should change the mount options. 651 * In all other cases, needoptcheck should be a NULL pointer. 652 */ 653 static int 654 secpolicy_fs_common(cred_t *cr, vnode_t *mvp, const vfs_t *vfsp, 655 boolean_t *needoptcheck) 656 { 657 boolean_t allzone = B_FALSE; 658 boolean_t mounting = needoptcheck != NULL; 659 660 /* 661 * Short circuit the following cases: 662 * vfsp == NULL or mvp == NULL (pure privilege check) 663 * have all privileges - no further checks required 664 * and no mount options need to be set. 665 */ 666 if (vfsp == NULL || mvp == NULL || HAS_ALLPRIVS(cr)) { 667 if (mounting) 668 *needoptcheck = B_FALSE; 669 670 return (priv_policy_va(cr, PRIV_SYS_MOUNT, allzone, EPERM, 671 NULL, KLPDARG_VNODE, mvp, (char *)NULL, KLPDARG_NOMORE)); 672 } 673 674 /* 675 * When operating on an existing mount (either we're not mounting 676 * or we're doing a remount and VFS_REMOUNT will be set), zones 677 * can operate only on mounts established by the zone itself. 678 */ 679 if (!mounting || (vfsp->vfs_flag & VFS_REMOUNT) != 0) { 680 zoneid_t zoneid = crgetzoneid(cr); 681 682 if (zoneid != GLOBAL_ZONEID && 683 vfsp->vfs_zone->zone_id != zoneid) { 684 return (EPERM); 685 } 686 } 687 688 if (mounting) 689 *needoptcheck = B_TRUE; 690 691 /* 692 * Overlay mounts may hide important stuff; if you can't write to a 693 * mount point but would be able to mount on top of it, you can 694 * escalate your privileges. 695 * So we go about asking the same questions namefs does when it 696 * decides whether you can mount over a file or not but with the 697 * added restriction that you can only mount on top of a regular 698 * file or directory. 699 * If we have all the zone's privileges, we skip all other checks, 700 * or else we may actually get in trouble inside the automounter. 701 */ 702 if ((mvp->v_flag & VROOT) != 0 || 703 (mvp->v_type != VDIR && mvp->v_type != VREG) || 704 HAS_ALLZONEPRIVS(cr)) { 705 allzone = B_TRUE; 706 } else { 707 vattr_t va; 708 int err; 709 710 va.va_mask = AT_UID|AT_MODE; 711 err = VOP_GETATTR(mvp, &va, 0, cr, NULL); 712 if (err != 0) 713 return (err); 714 715 if ((err = secpolicy_vnode_owner(cr, va.va_uid)) != 0) 716 return (err); 717 718 if (secpolicy_vnode_access2(cr, mvp, va.va_uid, va.va_mode, 719 VWRITE) != 0) { 720 return (EACCES); 721 } 722 } 723 return (priv_policy_va(cr, PRIV_SYS_MOUNT, allzone, EPERM, 724 NULL, KLPDARG_VNODE, mvp, (char *)NULL, KLPDARG_NOMORE)); 725 } 726 727 void 728 secpolicy_fs_mount_clearopts(cred_t *cr, struct vfs *vfsp) 729 { 730 boolean_t amsuper = HAS_ALLZONEPRIVS(cr); 731 732 /* 733 * check; if we don't have either "nosuid" or 734 * both "nosetuid" and "nodevices", then we add 735 * "nosuid"; this depends on how the current 736 * implementation works (it first checks nosuid). In a 737 * zone, a user with all zone privileges can mount with 738 * "setuid" but never with "devices". 739 */ 740 if (!vfs_optionisset(vfsp, MNTOPT_NOSUID, NULL) && 741 (!vfs_optionisset(vfsp, MNTOPT_NODEVICES, NULL) || 742 !vfs_optionisset(vfsp, MNTOPT_NOSETUID, NULL))) { 743 if (crgetzoneid(cr) == GLOBAL_ZONEID || !amsuper) 744 vfs_setmntopt(vfsp, MNTOPT_NOSUID, NULL, 0); 745 else 746 vfs_setmntopt(vfsp, MNTOPT_NODEVICES, NULL, 0); 747 } 748 /* 749 * If we're not the local super user, we set the "restrict" 750 * option to indicate to automountd that this mount should 751 * be handled with care. 752 */ 753 if (!amsuper) 754 vfs_setmntopt(vfsp, MNTOPT_RESTRICT, NULL, 0); 755 756 } 757 758 int 759 secpolicy_fs_allowed_mount(const char *fsname) 760 { 761 struct vfssw *vswp; 762 const char *p; 763 size_t len; 764 765 ASSERT(fsname != NULL); 766 ASSERT(fsname[0] != '\0'); 767 768 if (INGLOBALZONE(curproc)) 769 return (0); 770 771 vswp = vfs_getvfssw(fsname); 772 if (vswp == NULL) 773 return (ENOENT); 774 775 if ((vswp->vsw_flag & VSW_ZMOUNT) != 0) { 776 vfs_unrefvfssw(vswp); 777 return (0); 778 } 779 780 vfs_unrefvfssw(vswp); 781 782 p = curzone->zone_fs_allowed; 783 len = strlen(fsname); 784 785 while (p != NULL && *p != '\0') { 786 if (strncmp(p, fsname, len) == 0) { 787 char c = *(p + len); 788 if (c == '\0' || c == ',') 789 return (0); 790 } 791 792 /* skip to beyond the next comma */ 793 if ((p = strchr(p, ',')) != NULL) 794 p++; 795 } 796 797 return (EPERM); 798 } 799 800 extern vnode_t *rootvp; 801 extern vfs_t *rootvfs; 802 803 int 804 secpolicy_fs_mount(cred_t *cr, vnode_t *mvp, struct vfs *vfsp) 805 { 806 boolean_t needoptchk; 807 int error; 808 809 /* 810 * If it's a remount, get the underlying mount point, 811 * except for the root where we use the rootvp. 812 */ 813 if ((vfsp->vfs_flag & VFS_REMOUNT) != 0) { 814 if (vfsp == rootvfs) 815 mvp = rootvp; 816 else 817 mvp = vfsp->vfs_vnodecovered; 818 } 819 820 error = secpolicy_fs_common(cr, mvp, vfsp, &needoptchk); 821 822 if (error == 0 && needoptchk) { 823 secpolicy_fs_mount_clearopts(cr, vfsp); 824 } 825 826 return (error); 827 } 828 829 /* 830 * Does the policy computations for "ownership" of a mount; 831 * here ownership is defined as the ability to "mount" 832 * the filesystem originally. The rootvfs doesn't cover any 833 * vnodes; we attribute its ownership to the rootvp. 834 */ 835 static int 836 secpolicy_fs_owner(cred_t *cr, const struct vfs *vfsp) 837 { 838 vnode_t *mvp; 839 840 if (vfsp == NULL) 841 mvp = NULL; 842 else if (vfsp == rootvfs) 843 mvp = rootvp; 844 else 845 mvp = vfsp->vfs_vnodecovered; 846 847 return (secpolicy_fs_common(cr, mvp, vfsp, NULL)); 848 } 849 850 int 851 secpolicy_fs_unmount(cred_t *cr, struct vfs *vfsp) 852 { 853 return (secpolicy_fs_owner(cr, vfsp)); 854 } 855 856 /* 857 * Quotas are a resource, but if one has the ability to mount a filesystem, he 858 * should be able to modify quotas on it. 859 */ 860 int 861 secpolicy_fs_quota(const cred_t *cr, const vfs_t *vfsp) 862 { 863 return (secpolicy_fs_owner((cred_t *)cr, vfsp)); 864 } 865 866 /* 867 * Exceeding minfree: also a per-mount resource constraint. 868 */ 869 int 870 secpolicy_fs_minfree(const cred_t *cr, const vfs_t *vfsp) 871 { 872 return (secpolicy_fs_owner((cred_t *)cr, vfsp)); 873 } 874 875 int 876 secpolicy_fs_config(const cred_t *cr, const vfs_t *vfsp) 877 { 878 return (secpolicy_fs_owner((cred_t *)cr, vfsp)); 879 } 880 881 /* ARGSUSED */ 882 int 883 secpolicy_fs_linkdir(const cred_t *cr, const vfs_t *vfsp) 884 { 885 return (PRIV_POLICY(cr, PRIV_SYS_LINKDIR, B_FALSE, EPERM, NULL)); 886 } 887 888 /* 889 * Name: secpolicy_vnode_access() 890 * 891 * Parameters: Process credential 892 * vnode 893 * uid of owner of vnode 894 * permission bits not granted to the caller when examining 895 * file mode bits (i.e., when a process wants to open a 896 * mode 444 file for VREAD|VWRITE, this function should be 897 * called only with a VWRITE argument). 898 * 899 * Normal: Verifies that cred has the appropriate privileges to 900 * override the mode bits that were denied. 901 * 902 * Override: file_dac_execute - if VEXEC bit was denied and vnode is 903 * not a directory. 904 * file_dac_read - if VREAD bit was denied. 905 * file_dac_search - if VEXEC bit was denied and vnode is 906 * a directory. 907 * file_dac_write - if VWRITE bit was denied. 908 * 909 * Root owned files are special cased to protect system 910 * configuration files and such. 911 * 912 * Output: EACCES - if privilege check fails. 913 */ 914 915 int 916 secpolicy_vnode_access(const cred_t *cr, vnode_t *vp, uid_t owner, mode_t mode) 917 { 918 if ((mode & VREAD) && priv_policy_va(cr, PRIV_FILE_DAC_READ, B_FALSE, 919 EACCES, NULL, KLPDARG_VNODE, vp, (char *)NULL, 920 KLPDARG_NOMORE) != 0) { 921 return (EACCES); 922 } 923 924 if (mode & VWRITE) { 925 boolean_t allzone; 926 927 if (owner == 0 && cr->cr_uid != 0) 928 allzone = B_TRUE; 929 else 930 allzone = B_FALSE; 931 if (priv_policy_va(cr, PRIV_FILE_DAC_WRITE, allzone, EACCES, 932 NULL, KLPDARG_VNODE, vp, (char *)NULL, 933 KLPDARG_NOMORE) != 0) { 934 return (EACCES); 935 } 936 } 937 938 if (mode & VEXEC) { 939 /* 940 * Directories use file_dac_search to override the execute bit. 941 */ 942 int p = vp->v_type == VDIR ? PRIV_FILE_DAC_SEARCH : 943 PRIV_FILE_DAC_EXECUTE; 944 945 return (priv_policy_va(cr, p, B_FALSE, EACCES, NULL, 946 KLPDARG_VNODE, vp, (char *)NULL, KLPDARG_NOMORE)); 947 } 948 return (0); 949 } 950 951 /* 952 * Like secpolicy_vnode_access() but we get the actual wanted mode and the 953 * current mode of the file, not the missing bits. 954 */ 955 int 956 secpolicy_vnode_access2(const cred_t *cr, vnode_t *vp, uid_t owner, 957 mode_t curmode, mode_t wantmode) 958 { 959 mode_t mode; 960 961 /* Inline the basic privileges tests. */ 962 if ((wantmode & VREAD) && 963 !PRIV_ISASSERT(&CR_OEPRIV(cr), PRIV_FILE_READ) && 964 priv_policy_va(cr, PRIV_FILE_READ, B_FALSE, EACCES, NULL, 965 KLPDARG_VNODE, vp, (char *)NULL, KLPDARG_NOMORE) != 0) { 966 return (EACCES); 967 } 968 969 if ((wantmode & VWRITE) && 970 !PRIV_ISASSERT(&CR_OEPRIV(cr), PRIV_FILE_WRITE) && 971 priv_policy_va(cr, PRIV_FILE_WRITE, B_FALSE, EACCES, NULL, 972 KLPDARG_VNODE, vp, (char *)NULL, KLPDARG_NOMORE) != 0) { 973 return (EACCES); 974 } 975 976 mode = ~curmode & wantmode; 977 978 if (mode == 0) 979 return (0); 980 981 if ((mode & VREAD) && priv_policy_va(cr, PRIV_FILE_DAC_READ, B_FALSE, 982 EACCES, NULL, KLPDARG_VNODE, vp, (char *)NULL, 983 KLPDARG_NOMORE) != 0) { 984 return (EACCES); 985 } 986 987 if (mode & VWRITE) { 988 boolean_t allzone; 989 990 if (owner == 0 && cr->cr_uid != 0) 991 allzone = B_TRUE; 992 else 993 allzone = B_FALSE; 994 if (priv_policy_va(cr, PRIV_FILE_DAC_WRITE, allzone, EACCES, 995 NULL, KLPDARG_VNODE, vp, (char *)NULL, 996 KLPDARG_NOMORE) != 0) { 997 return (EACCES); 998 } 999 } 1000 1001 if (mode & VEXEC) { 1002 /* 1003 * Directories use file_dac_search to override the execute bit. 1004 */ 1005 int p = vp->v_type == VDIR ? PRIV_FILE_DAC_SEARCH : 1006 PRIV_FILE_DAC_EXECUTE; 1007 1008 return (priv_policy_va(cr, p, B_FALSE, EACCES, NULL, 1009 KLPDARG_VNODE, vp, (char *)NULL, KLPDARG_NOMORE)); 1010 } 1011 return (0); 1012 } 1013 1014 /* 1015 * This is a special routine for ZFS; it is used to determine whether 1016 * any of the privileges in effect allow any form of access to the 1017 * file. There's no reason to audit this or any reason to record 1018 * this. More work is needed to do the "KPLD" stuff. 1019 */ 1020 int 1021 secpolicy_vnode_any_access(const cred_t *cr, vnode_t *vp, uid_t owner) 1022 { 1023 static int privs[] = { 1024 PRIV_FILE_OWNER, 1025 PRIV_FILE_CHOWN, 1026 PRIV_FILE_DAC_READ, 1027 PRIV_FILE_DAC_WRITE, 1028 PRIV_FILE_DAC_EXECUTE, 1029 PRIV_FILE_DAC_SEARCH, 1030 }; 1031 int i; 1032 1033 /* Same as secpolicy_vnode_setdac */ 1034 if (owner == cr->cr_uid) 1035 return (0); 1036 1037 for (i = 0; i < sizeof (privs)/sizeof (int); i++) { 1038 boolean_t allzone = B_FALSE; 1039 int priv; 1040 1041 switch (priv = privs[i]) { 1042 case PRIV_FILE_DAC_EXECUTE: 1043 if (vp->v_type == VDIR) 1044 continue; 1045 break; 1046 case PRIV_FILE_DAC_SEARCH: 1047 if (vp->v_type != VDIR) 1048 continue; 1049 break; 1050 case PRIV_FILE_DAC_WRITE: 1051 case PRIV_FILE_OWNER: 1052 case PRIV_FILE_CHOWN: 1053 /* We know here that if owner == 0, that cr_uid != 0 */ 1054 allzone = owner == 0; 1055 break; 1056 } 1057 if (PRIV_POLICY_CHOICE(cr, priv, allzone)) 1058 return (0); 1059 } 1060 return (EPERM); 1061 } 1062 1063 /* 1064 * Name: secpolicy_vnode_setid_modify() 1065 * 1066 * Normal: verify that subject can set the file setid flags. 1067 * 1068 * Output: EPERM - if not privileged. 1069 */ 1070 1071 static int 1072 secpolicy_vnode_setid_modify(const cred_t *cr, uid_t owner) 1073 { 1074 /* If changing to suid root, must have all zone privs */ 1075 boolean_t allzone = B_TRUE; 1076 1077 if (owner != 0) { 1078 if (owner == cr->cr_uid) 1079 return (0); 1080 allzone = B_FALSE; 1081 } 1082 return (PRIV_POLICY(cr, PRIV_FILE_SETID, allzone, EPERM, NULL)); 1083 } 1084 1085 /* 1086 * Are we allowed to retain the set-uid/set-gid bits when 1087 * changing ownership or when writing to a file? 1088 * "issuid" should be true when set-uid; only in that case 1089 * root ownership is checked (setgid is assumed). 1090 */ 1091 int 1092 secpolicy_vnode_setid_retain(const cred_t *cred, boolean_t issuidroot) 1093 { 1094 if (issuidroot && !HAS_ALLZONEPRIVS(cred)) 1095 return (EPERM); 1096 1097 return (!PRIV_POLICY_CHOICE(cred, PRIV_FILE_SETID, B_FALSE)); 1098 } 1099 1100 /* 1101 * Name: secpolicy_vnode_setids_setgids() 1102 * 1103 * Normal: verify that subject can set the file setgid flag. 1104 * 1105 * Output: EPERM - if not privileged 1106 */ 1107 1108 int 1109 secpolicy_vnode_setids_setgids(const cred_t *cred, gid_t gid) 1110 { 1111 if (!groupmember(gid, cred)) 1112 return (PRIV_POLICY(cred, PRIV_FILE_SETID, B_FALSE, EPERM, 1113 NULL)); 1114 return (0); 1115 } 1116 1117 /* 1118 * Name: secpolicy_vnode_chown 1119 * 1120 * Normal: Determine if subject can chown owner of a file. 1121 * 1122 * Output: EPERM - if access denied 1123 */ 1124 1125 int 1126 secpolicy_vnode_chown(const cred_t *cred, uid_t owner) 1127 { 1128 boolean_t is_owner = (owner == crgetuid(cred)); 1129 boolean_t allzone = B_FALSE; 1130 int priv; 1131 1132 if (!is_owner) { 1133 allzone = (owner == 0); 1134 priv = PRIV_FILE_CHOWN; 1135 } else { 1136 priv = HAS_PRIVILEGE(cred, PRIV_FILE_CHOWN) ? 1137 PRIV_FILE_CHOWN : PRIV_FILE_CHOWN_SELF; 1138 } 1139 1140 return (PRIV_POLICY(cred, priv, allzone, EPERM, NULL)); 1141 } 1142 1143 /* 1144 * Name: secpolicy_vnode_create_gid 1145 * 1146 * Normal: Determine if subject can change group ownership of a file. 1147 * 1148 * Output: EPERM - if access denied 1149 */ 1150 int 1151 secpolicy_vnode_create_gid(const cred_t *cred) 1152 { 1153 if (HAS_PRIVILEGE(cred, PRIV_FILE_CHOWN)) 1154 return (PRIV_POLICY(cred, PRIV_FILE_CHOWN, B_FALSE, EPERM, 1155 NULL)); 1156 else 1157 return (PRIV_POLICY(cred, PRIV_FILE_CHOWN_SELF, B_FALSE, EPERM, 1158 NULL)); 1159 } 1160 1161 /* 1162 * Name: secpolicy_vnode_utime_modify() 1163 * 1164 * Normal: verify that subject can modify the utime on a file. 1165 * 1166 * Output: EPERM - if access denied. 1167 */ 1168 1169 static int 1170 secpolicy_vnode_utime_modify(const cred_t *cred) 1171 { 1172 return (PRIV_POLICY(cred, PRIV_FILE_OWNER, B_FALSE, EPERM, 1173 "modify file times")); 1174 } 1175 1176 1177 /* 1178 * Name: secpolicy_vnode_setdac() 1179 * 1180 * Normal: verify that subject can modify the mode of a file. 1181 * allzone privilege needed when modifying root owned object. 1182 * 1183 * Output: EPERM - if access denied. 1184 */ 1185 1186 int 1187 secpolicy_vnode_setdac(const cred_t *cred, uid_t owner) 1188 { 1189 if (owner == cred->cr_uid) 1190 return (0); 1191 1192 return (PRIV_POLICY(cred, PRIV_FILE_OWNER, owner == 0, EPERM, NULL)); 1193 } 1194 /* 1195 * Name: secpolicy_vnode_stky_modify() 1196 * 1197 * Normal: verify that subject can make a file a "sticky". 1198 * 1199 * Output: EPERM - if access denied. 1200 */ 1201 1202 int 1203 secpolicy_vnode_stky_modify(const cred_t *cred) 1204 { 1205 return (PRIV_POLICY(cred, PRIV_SYS_CONFIG, B_FALSE, EPERM, 1206 "set file sticky")); 1207 } 1208 1209 /* 1210 * Policy determines whether we can remove an entry from a directory, 1211 * regardless of permission bits. 1212 */ 1213 int 1214 secpolicy_vnode_remove(const cred_t *cr) 1215 { 1216 return (PRIV_POLICY(cr, PRIV_FILE_OWNER, B_FALSE, EACCES, 1217 "sticky directory")); 1218 } 1219 1220 int 1221 secpolicy_vnode_owner(const cred_t *cr, uid_t owner) 1222 { 1223 boolean_t allzone = (owner == 0); 1224 1225 if (owner == cr->cr_uid) 1226 return (0); 1227 1228 return (PRIV_POLICY(cr, PRIV_FILE_OWNER, allzone, EPERM, NULL)); 1229 } 1230 1231 void 1232 secpolicy_setid_clear(vattr_t *vap, cred_t *cr) 1233 { 1234 if ((vap->va_mode & (S_ISUID | S_ISGID)) != 0 && 1235 secpolicy_vnode_setid_retain(cr, 1236 (vap->va_mode & S_ISUID) != 0 && 1237 (vap->va_mask & AT_UID) != 0 && vap->va_uid == 0) != 0) { 1238 vap->va_mask |= AT_MODE; 1239 vap->va_mode &= ~(S_ISUID|S_ISGID); 1240 } 1241 } 1242 1243 int 1244 secpolicy_setid_setsticky_clear(vnode_t *vp, vattr_t *vap, const vattr_t *ovap, 1245 cred_t *cr) 1246 { 1247 int error; 1248 1249 if ((vap->va_mode & S_ISUID) != 0 && 1250 (error = secpolicy_vnode_setid_modify(cr, 1251 ovap->va_uid)) != 0) { 1252 return (error); 1253 } 1254 1255 /* 1256 * Check privilege if attempting to set the 1257 * sticky bit on a non-directory. 1258 */ 1259 if (vp->v_type != VDIR && (vap->va_mode & S_ISVTX) != 0 && 1260 secpolicy_vnode_stky_modify(cr) != 0) { 1261 vap->va_mode &= ~S_ISVTX; 1262 } 1263 1264 /* 1265 * Check for privilege if attempting to set the 1266 * group-id bit. 1267 */ 1268 if ((vap->va_mode & S_ISGID) != 0 && 1269 secpolicy_vnode_setids_setgids(cr, ovap->va_gid) != 0) { 1270 vap->va_mode &= ~S_ISGID; 1271 } 1272 1273 return (0); 1274 } 1275 1276 #define ATTR_FLAG_PRIV(attr, value, cr) \ 1277 PRIV_POLICY(cr, value ? PRIV_FILE_FLAG_SET : PRIV_ALL, \ 1278 B_FALSE, EPERM, NULL) 1279 1280 /* 1281 * Check privileges for setting xvattr attributes 1282 */ 1283 int 1284 secpolicy_xvattr(xvattr_t *xvap, uid_t owner, cred_t *cr, vtype_t vtype) 1285 { 1286 xoptattr_t *xoap; 1287 int error = 0; 1288 1289 if ((xoap = xva_getxoptattr(xvap)) == NULL) 1290 return (EINVAL); 1291 1292 /* 1293 * First process the DOS bits 1294 */ 1295 if (XVA_ISSET_REQ(xvap, XAT_ARCHIVE) || 1296 XVA_ISSET_REQ(xvap, XAT_HIDDEN) || 1297 XVA_ISSET_REQ(xvap, XAT_READONLY) || 1298 XVA_ISSET_REQ(xvap, XAT_SYSTEM) || 1299 XVA_ISSET_REQ(xvap, XAT_CREATETIME)) { 1300 if ((error = secpolicy_vnode_owner(cr, owner)) != 0) 1301 return (error); 1302 } 1303 1304 /* 1305 * Now handle special attributes 1306 */ 1307 1308 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) 1309 error = ATTR_FLAG_PRIV(XAT_IMMUTABLE, 1310 xoap->xoa_immutable, cr); 1311 if (error == 0 && XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) 1312 error = ATTR_FLAG_PRIV(XAT_NOUNLINK, 1313 xoap->xoa_nounlink, cr); 1314 if (error == 0 && XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) 1315 error = ATTR_FLAG_PRIV(XAT_APPENDONLY, 1316 xoap->xoa_appendonly, cr); 1317 if (error == 0 && XVA_ISSET_REQ(xvap, XAT_NODUMP)) 1318 error = ATTR_FLAG_PRIV(XAT_NODUMP, 1319 xoap->xoa_nodump, cr); 1320 if (error == 0 && XVA_ISSET_REQ(xvap, XAT_OPAQUE)) 1321 error = EPERM; 1322 if (error == 0 && XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) { 1323 error = ATTR_FLAG_PRIV(XAT_AV_QUARANTINED, 1324 xoap->xoa_av_quarantined, cr); 1325 if (error == 0 && vtype != VREG && xoap->xoa_av_quarantined) 1326 error = EINVAL; 1327 } 1328 if (error == 0 && XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) 1329 error = ATTR_FLAG_PRIV(XAT_AV_MODIFIED, 1330 xoap->xoa_av_modified, cr); 1331 if (error == 0 && XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP)) { 1332 error = ATTR_FLAG_PRIV(XAT_AV_SCANSTAMP, 1333 xoap->xoa_av_scanstamp, cr); 1334 if (error == 0 && vtype != VREG) 1335 error = EINVAL; 1336 } 1337 return (error); 1338 } 1339 1340 /* 1341 * This function checks the policy decisions surrounding the 1342 * vop setattr call. 1343 * 1344 * It should be called after sufficient locks have been established 1345 * on the underlying data structures. No concurrent modifications 1346 * should be allowed. 1347 * 1348 * The caller must pass in unlocked version of its vaccess function 1349 * this is required because vop_access function should lock the 1350 * node for reading. A three argument function should be defined 1351 * which accepts the following argument: 1352 * A pointer to the internal "node" type (inode *) 1353 * vnode access bits (VREAD|VWRITE|VEXEC) 1354 * a pointer to the credential 1355 * 1356 * This function makes the following policy decisions: 1357 * 1358 * - change permissions 1359 * - permission to change file mode if not owner 1360 * - permission to add sticky bit to non-directory 1361 * - permission to add set-gid bit 1362 * 1363 * The ovap argument should include AT_MODE|AT_UID|AT_GID. 1364 * 1365 * If the vap argument does not include AT_MODE, the mode will be copied from 1366 * ovap. In certain situations set-uid/set-gid bits need to be removed; 1367 * this is done by marking vap->va_mask to include AT_MODE and va_mode 1368 * is updated to the newly computed mode. 1369 */ 1370 1371 int 1372 secpolicy_vnode_setattr(cred_t *cr, struct vnode *vp, struct vattr *vap, 1373 const struct vattr *ovap, int flags, 1374 int unlocked_access(void *, int, cred_t *), 1375 void *node) 1376 { 1377 int mask = vap->va_mask; 1378 int error = 0; 1379 boolean_t skipaclchk = (flags & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE; 1380 1381 if (mask & AT_SIZE) { 1382 if (vp->v_type == VDIR) { 1383 error = EISDIR; 1384 goto out; 1385 } 1386 1387 /* 1388 * If ATTR_NOACLCHECK is set in the flags, then we don't 1389 * perform the secondary unlocked_access() call since the 1390 * ACL (if any) is being checked there. 1391 */ 1392 if (skipaclchk == B_FALSE) { 1393 error = unlocked_access(node, VWRITE, cr); 1394 if (error) 1395 goto out; 1396 } 1397 } 1398 if (mask & AT_MODE) { 1399 /* 1400 * If not the owner of the file then check privilege 1401 * for two things: the privilege to set the mode at all 1402 * and, if we're setting setuid, we also need permissions 1403 * to add the set-uid bit, if we're not the owner. 1404 * In the specific case of creating a set-uid root 1405 * file, we need even more permissions. 1406 */ 1407 if ((error = secpolicy_vnode_setdac(cr, ovap->va_uid)) != 0) 1408 goto out; 1409 1410 if ((error = secpolicy_setid_setsticky_clear(vp, vap, 1411 ovap, cr)) != 0) 1412 goto out; 1413 } else 1414 vap->va_mode = ovap->va_mode; 1415 1416 if (mask & (AT_UID|AT_GID)) { 1417 boolean_t checkpriv = B_FALSE; 1418 1419 /* 1420 * Chowning files. 1421 * 1422 * If you are the file owner: 1423 * chown to other uid FILE_CHOWN_SELF 1424 * chown to gid (non-member) FILE_CHOWN_SELF 1425 * chown to gid (member) <none> 1426 * 1427 * Instead of PRIV_FILE_CHOWN_SELF, FILE_CHOWN is also 1428 * acceptable but the first one is reported when debugging. 1429 * 1430 * If you are not the file owner: 1431 * chown from root PRIV_FILE_CHOWN + zone 1432 * chown from other to any PRIV_FILE_CHOWN 1433 * 1434 */ 1435 if (cr->cr_uid != ovap->va_uid) { 1436 checkpriv = B_TRUE; 1437 } else { 1438 if (((mask & AT_UID) && vap->va_uid != ovap->va_uid) || 1439 ((mask & AT_GID) && vap->va_gid != ovap->va_gid && 1440 !groupmember(vap->va_gid, cr))) { 1441 checkpriv = B_TRUE; 1442 } 1443 } 1444 /* 1445 * If necessary, check privilege to see if update can be done. 1446 */ 1447 if (checkpriv && 1448 (error = secpolicy_vnode_chown(cr, ovap->va_uid)) != 0) { 1449 goto out; 1450 } 1451 1452 /* 1453 * If the file has either the set UID or set GID bits 1454 * set and the caller can set the bits, then leave them. 1455 */ 1456 secpolicy_setid_clear(vap, cr); 1457 } 1458 if (mask & (AT_ATIME|AT_MTIME)) { 1459 /* 1460 * If not the file owner and not otherwise privileged, 1461 * always return an error when setting the 1462 * time other than the current (ATTR_UTIME flag set). 1463 * If setting the current time (ATTR_UTIME not set) then 1464 * unlocked_access will check permissions according to policy. 1465 */ 1466 if (cr->cr_uid != ovap->va_uid) { 1467 if (flags & ATTR_UTIME) 1468 error = secpolicy_vnode_utime_modify(cr); 1469 else if (skipaclchk == B_FALSE) { 1470 error = unlocked_access(node, VWRITE, cr); 1471 if (error == EACCES && 1472 secpolicy_vnode_utime_modify(cr) == 0) 1473 error = 0; 1474 } 1475 if (error) 1476 goto out; 1477 } 1478 } 1479 1480 /* 1481 * Check for optional attributes here by checking the following: 1482 */ 1483 if (mask & AT_XVATTR) 1484 error = secpolicy_xvattr((xvattr_t *)vap, ovap->va_uid, cr, 1485 vp->v_type); 1486 out: 1487 return (error); 1488 } 1489 1490 /* 1491 * Name: secpolicy_pcfs_modify_bootpartition() 1492 * 1493 * Normal: verify that subject can modify a pcfs boot partition. 1494 * 1495 * Output: EACCES - if privilege check failed. 1496 */ 1497 /*ARGSUSED*/ 1498 int 1499 secpolicy_pcfs_modify_bootpartition(const cred_t *cred) 1500 { 1501 return (PRIV_POLICY(cred, PRIV_ALL, B_FALSE, EACCES, 1502 "modify pcfs boot partition")); 1503 } 1504 1505 /* 1506 * System V IPC routines 1507 */ 1508 int 1509 secpolicy_ipc_owner(const cred_t *cr, const struct kipc_perm *ip) 1510 { 1511 if (crgetzoneid(cr) != ip->ipc_zoneid || 1512 (cr->cr_uid != ip->ipc_uid && cr->cr_uid != ip->ipc_cuid)) { 1513 boolean_t allzone = B_FALSE; 1514 if (ip->ipc_uid == 0 || ip->ipc_cuid == 0) 1515 allzone = B_TRUE; 1516 return (PRIV_POLICY(cr, PRIV_IPC_OWNER, allzone, EPERM, NULL)); 1517 } 1518 return (0); 1519 } 1520 1521 int 1522 secpolicy_ipc_config(const cred_t *cr) 1523 { 1524 return (PRIV_POLICY(cr, PRIV_SYS_IPC_CONFIG, B_FALSE, EPERM, NULL)); 1525 } 1526 1527 int 1528 secpolicy_ipc_access(const cred_t *cr, const struct kipc_perm *ip, mode_t mode) 1529 { 1530 1531 boolean_t allzone = B_FALSE; 1532 1533 ASSERT((mode & (MSG_R|MSG_W)) != 0); 1534 1535 if ((mode & MSG_R) && 1536 PRIV_POLICY(cr, PRIV_IPC_DAC_READ, allzone, EACCES, NULL) != 0) 1537 return (EACCES); 1538 1539 if (mode & MSG_W) { 1540 if (cr->cr_uid != 0 && (ip->ipc_uid == 0 || ip->ipc_cuid == 0)) 1541 allzone = B_TRUE; 1542 1543 return (PRIV_POLICY(cr, PRIV_IPC_DAC_WRITE, allzone, EACCES, 1544 NULL)); 1545 } 1546 return (0); 1547 } 1548 1549 int 1550 secpolicy_rsm_access(const cred_t *cr, uid_t owner, mode_t mode) 1551 { 1552 boolean_t allzone = B_FALSE; 1553 1554 ASSERT((mode & (MSG_R|MSG_W)) != 0); 1555 1556 if ((mode & MSG_R) && 1557 PRIV_POLICY(cr, PRIV_IPC_DAC_READ, allzone, EACCES, NULL) != 0) 1558 return (EACCES); 1559 1560 if (mode & MSG_W) { 1561 if (cr->cr_uid != 0 && owner == 0) 1562 allzone = B_TRUE; 1563 1564 return (PRIV_POLICY(cr, PRIV_IPC_DAC_WRITE, allzone, EACCES, 1565 NULL)); 1566 } 1567 return (0); 1568 } 1569 1570 /* 1571 * Audit configuration. 1572 */ 1573 int 1574 secpolicy_audit_config(const cred_t *cr) 1575 { 1576 return (PRIV_POLICY(cr, PRIV_SYS_AUDIT, B_FALSE, EPERM, NULL)); 1577 } 1578 1579 /* 1580 * Audit record generation. 1581 */ 1582 int 1583 secpolicy_audit_modify(const cred_t *cr) 1584 { 1585 return (PRIV_POLICY(cr, PRIV_PROC_AUDIT, B_FALSE, EPERM, NULL)); 1586 } 1587 1588 /* 1589 * Get audit attributes. 1590 * Either PRIV_SYS_AUDIT or PRIV_PROC_AUDIT required; report the 1591 * "Least" of the two privileges on error. 1592 */ 1593 int 1594 secpolicy_audit_getattr(const cred_t *cr, boolean_t checkonly) 1595 { 1596 int priv; 1597 1598 if (PRIV_POLICY_ONLY(cr, PRIV_SYS_AUDIT, B_FALSE)) 1599 priv = PRIV_SYS_AUDIT; 1600 else 1601 priv = PRIV_PROC_AUDIT; 1602 1603 if (checkonly) 1604 return (!PRIV_POLICY_ONLY(cr, priv, B_FALSE)); 1605 else 1606 return (PRIV_POLICY(cr, priv, B_FALSE, EPERM, NULL)); 1607 } 1608 1609 1610 /* 1611 * Locking physical memory 1612 */ 1613 int 1614 secpolicy_lock_memory(const cred_t *cr) 1615 { 1616 return (PRIV_POLICY(cr, PRIV_PROC_LOCK_MEMORY, B_FALSE, EPERM, NULL)); 1617 } 1618 1619 /* 1620 * Accounting (both acct(2) and exacct). 1621 */ 1622 int 1623 secpolicy_acct(const cred_t *cr) 1624 { 1625 return (PRIV_POLICY(cr, PRIV_SYS_ACCT, B_FALSE, EPERM, NULL)); 1626 } 1627 1628 /* 1629 * Is this process privileged to change its uids at will? 1630 * Uid 0 is still considered "special" and having the SETID 1631 * privilege is not sufficient to get uid 0. 1632 * Files are owned by root, so the privilege would give 1633 * full access and euid 0 is still effective. 1634 * 1635 * If you have the privilege and euid 0 only then do you 1636 * get the powers of root wrt uid 0. 1637 * 1638 * For gid manipulations, this is should be called with an 1639 * uid of -1. 1640 * 1641 */ 1642 int 1643 secpolicy_allow_setid(const cred_t *cr, uid_t newuid, boolean_t checkonly) 1644 { 1645 boolean_t allzone = B_FALSE; 1646 1647 if (newuid == 0 && cr->cr_uid != 0 && cr->cr_suid != 0 && 1648 cr->cr_ruid != 0) { 1649 allzone = B_TRUE; 1650 } 1651 1652 return (checkonly ? !PRIV_POLICY_ONLY(cr, PRIV_PROC_SETID, allzone) : 1653 PRIV_POLICY(cr, PRIV_PROC_SETID, allzone, EPERM, NULL)); 1654 } 1655 1656 1657 /* 1658 * Acting on a different process: if the mode is for writing, 1659 * the restrictions are more severe. This is called after 1660 * we've verified that the uids do not match. 1661 */ 1662 int 1663 secpolicy_proc_owner(const cred_t *scr, const cred_t *tcr, int mode) 1664 { 1665 boolean_t allzone = B_FALSE; 1666 1667 if ((mode & VWRITE) && scr->cr_uid != 0 && 1668 (tcr->cr_uid == 0 || tcr->cr_ruid == 0 || tcr->cr_suid == 0)) 1669 allzone = B_TRUE; 1670 1671 return (PRIV_POLICY(scr, PRIV_PROC_OWNER, allzone, EPERM, NULL)); 1672 } 1673 1674 int 1675 secpolicy_proc_access(const cred_t *scr) 1676 { 1677 return (PRIV_POLICY(scr, PRIV_PROC_OWNER, B_FALSE, EACCES, NULL)); 1678 } 1679 1680 int 1681 secpolicy_proc_excl_open(const cred_t *scr) 1682 { 1683 return (PRIV_POLICY(scr, PRIV_PROC_OWNER, B_FALSE, EBUSY, NULL)); 1684 } 1685 1686 int 1687 secpolicy_proc_zone(const cred_t *scr) 1688 { 1689 return (PRIV_POLICY(scr, PRIV_PROC_ZONE, B_FALSE, EPERM, NULL)); 1690 } 1691 1692 /* 1693 * Destroying the system 1694 */ 1695 1696 int 1697 secpolicy_kmdb(const cred_t *scr) 1698 { 1699 return (PRIV_POLICY(scr, PRIV_ALL, B_FALSE, EPERM, NULL)); 1700 } 1701 1702 int 1703 secpolicy_error_inject(const cred_t *scr) 1704 { 1705 return (PRIV_POLICY(scr, PRIV_ALL, B_FALSE, EPERM, NULL)); 1706 } 1707 1708 /* 1709 * Processor sets, cpu configuration, resource pools. 1710 */ 1711 int 1712 secpolicy_pset(const cred_t *cr) 1713 { 1714 return (PRIV_POLICY(cr, PRIV_SYS_RES_CONFIG, B_FALSE, EPERM, NULL)); 1715 } 1716 1717 /* 1718 * Processor set binding. 1719 */ 1720 int 1721 secpolicy_pbind(const cred_t *cr) 1722 { 1723 if (PRIV_POLICY_ONLY(cr, PRIV_SYS_RES_CONFIG, B_FALSE)) 1724 return (secpolicy_pset(cr)); 1725 return (PRIV_POLICY(cr, PRIV_SYS_RES_BIND, B_FALSE, EPERM, NULL)); 1726 } 1727 1728 int 1729 secpolicy_ponline(const cred_t *cr) 1730 { 1731 return (PRIV_POLICY(cr, PRIV_SYS_RES_CONFIG, B_FALSE, EPERM, NULL)); 1732 } 1733 1734 int 1735 secpolicy_pool(const cred_t *cr) 1736 { 1737 return (PRIV_POLICY(cr, PRIV_SYS_RES_CONFIG, B_FALSE, EPERM, NULL)); 1738 } 1739 1740 int 1741 secpolicy_blacklist(const cred_t *cr) 1742 { 1743 return (PRIV_POLICY(cr, PRIV_SYS_RES_CONFIG, B_FALSE, EPERM, NULL)); 1744 } 1745 1746 /* 1747 * Catch all system configuration. 1748 */ 1749 int 1750 secpolicy_sys_config(const cred_t *cr, boolean_t checkonly) 1751 { 1752 if (checkonly) { 1753 return (PRIV_POLICY_ONLY(cr, PRIV_SYS_CONFIG, B_FALSE) ? 0 : 1754 EPERM); 1755 } else { 1756 return (PRIV_POLICY(cr, PRIV_SYS_CONFIG, B_FALSE, EPERM, NULL)); 1757 } 1758 } 1759 1760 /* 1761 * Zone administration (halt, reboot, etc.) from within zone. 1762 */ 1763 int 1764 secpolicy_zone_admin(const cred_t *cr, boolean_t checkonly) 1765 { 1766 if (checkonly) { 1767 return (PRIV_POLICY_ONLY(cr, PRIV_SYS_ADMIN, B_FALSE) ? 0 : 1768 EPERM); 1769 } else { 1770 return (PRIV_POLICY(cr, PRIV_SYS_ADMIN, B_FALSE, EPERM, 1771 NULL)); 1772 } 1773 } 1774 1775 /* 1776 * Zone configuration (create, halt, enter). 1777 */ 1778 int 1779 secpolicy_zone_config(const cred_t *cr) 1780 { 1781 /* 1782 * Require all privileges to avoid possibility of privilege 1783 * escalation. 1784 */ 1785 return (secpolicy_require_set(cr, PRIV_FULLSET, NULL, KLPDARG_NONE)); 1786 } 1787 1788 /* 1789 * Various other system configuration calls 1790 */ 1791 int 1792 secpolicy_coreadm(const cred_t *cr) 1793 { 1794 return (PRIV_POLICY(cr, PRIV_SYS_ADMIN, B_FALSE, EPERM, NULL)); 1795 } 1796 1797 int 1798 secpolicy_systeminfo(const cred_t *cr) 1799 { 1800 return (PRIV_POLICY(cr, PRIV_SYS_ADMIN, B_FALSE, EPERM, NULL)); 1801 } 1802 1803 int 1804 secpolicy_dispadm(const cred_t *cr) 1805 { 1806 return (PRIV_POLICY(cr, PRIV_SYS_CONFIG, B_FALSE, EPERM, NULL)); 1807 } 1808 1809 int 1810 secpolicy_settime(const cred_t *cr) 1811 { 1812 return (PRIV_POLICY(cr, PRIV_SYS_TIME, B_FALSE, EPERM, NULL)); 1813 } 1814 1815 /* 1816 * For realtime users: high resolution clock. 1817 */ 1818 int 1819 secpolicy_clock_highres(const cred_t *cr) 1820 { 1821 return (PRIV_POLICY(cr, PRIV_PROC_CLOCK_HIGHRES, B_FALSE, EPERM, 1822 NULL)); 1823 } 1824 1825 /* 1826 * drv_priv() is documented as callable from interrupt context, not that 1827 * anyone ever does, but still. No debugging or auditing can be done when 1828 * it is called from interrupt context. 1829 * returns 0 on succes, EPERM on failure. 1830 */ 1831 int 1832 drv_priv(cred_t *cr) 1833 { 1834 return (PRIV_POLICY(cr, PRIV_SYS_DEVICES, B_FALSE, EPERM, NULL)); 1835 } 1836 1837 int 1838 secpolicy_sys_devices(const cred_t *cr) 1839 { 1840 return (PRIV_POLICY(cr, PRIV_SYS_DEVICES, B_FALSE, EPERM, NULL)); 1841 } 1842 1843 int 1844 secpolicy_excl_open(const cred_t *cr) 1845 { 1846 return (PRIV_POLICY(cr, PRIV_SYS_DEVICES, B_FALSE, EBUSY, NULL)); 1847 } 1848 1849 int 1850 secpolicy_rctlsys(const cred_t *cr, boolean_t is_zone_rctl) 1851 { 1852 /* zone.* rctls can only be set from the global zone */ 1853 if (is_zone_rctl && priv_policy_global(cr) != 0) 1854 return (EPERM); 1855 return (PRIV_POLICY(cr, PRIV_SYS_RESOURCE, B_FALSE, EPERM, NULL)); 1856 } 1857 1858 int 1859 secpolicy_resource(const cred_t *cr) 1860 { 1861 return (PRIV_POLICY(cr, PRIV_SYS_RESOURCE, B_FALSE, EPERM, NULL)); 1862 } 1863 1864 int 1865 secpolicy_resource_anon_mem(const cred_t *cr) 1866 { 1867 return (PRIV_POLICY_ONLY(cr, PRIV_SYS_RESOURCE, B_FALSE)); 1868 } 1869 1870 /* 1871 * Processes with a real uid of 0 escape any form of accounting, much 1872 * like before. 1873 */ 1874 int 1875 secpolicy_newproc(const cred_t *cr) 1876 { 1877 if (cr->cr_ruid == 0) 1878 return (0); 1879 1880 return (PRIV_POLICY(cr, PRIV_SYS_RESOURCE, B_FALSE, EPERM, NULL)); 1881 } 1882 1883 /* 1884 * Networking 1885 */ 1886 int 1887 secpolicy_net_rawaccess(const cred_t *cr) 1888 { 1889 return (PRIV_POLICY(cr, PRIV_NET_RAWACCESS, B_FALSE, EACCES, NULL)); 1890 } 1891 1892 int 1893 secpolicy_net_observability(const cred_t *cr) 1894 { 1895 return (PRIV_POLICY(cr, PRIV_NET_OBSERVABILITY, B_FALSE, EACCES, NULL)); 1896 } 1897 1898 /* 1899 * Need this privilege for accessing the ICMP device 1900 */ 1901 int 1902 secpolicy_net_icmpaccess(const cred_t *cr) 1903 { 1904 return (PRIV_POLICY(cr, PRIV_NET_ICMPACCESS, B_FALSE, EACCES, NULL)); 1905 } 1906 1907 /* 1908 * There are a few rare cases where the kernel generates ioctls() from 1909 * interrupt context with a credential of kcred rather than NULL. 1910 * In those cases, we take the safe and cheap test. 1911 */ 1912 int 1913 secpolicy_net_config(const cred_t *cr, boolean_t checkonly) 1914 { 1915 if (checkonly) { 1916 return (PRIV_POLICY_ONLY(cr, PRIV_SYS_NET_CONFIG, B_FALSE) ? 1917 0 : EPERM); 1918 } else { 1919 return (PRIV_POLICY(cr, PRIV_SYS_NET_CONFIG, B_FALSE, EPERM, 1920 NULL)); 1921 } 1922 } 1923 1924 1925 /* 1926 * PRIV_SYS_NET_CONFIG is a superset of PRIV_SYS_IP_CONFIG. 1927 * 1928 * There are a few rare cases where the kernel generates ioctls() from 1929 * interrupt context with a credential of kcred rather than NULL. 1930 * In those cases, we take the safe and cheap test. 1931 */ 1932 int 1933 secpolicy_ip_config(const cred_t *cr, boolean_t checkonly) 1934 { 1935 if (PRIV_POLICY_ONLY(cr, PRIV_SYS_NET_CONFIG, B_FALSE)) 1936 return (secpolicy_net_config(cr, checkonly)); 1937 1938 if (checkonly) { 1939 return (PRIV_POLICY_ONLY(cr, PRIV_SYS_IP_CONFIG, B_FALSE) ? 1940 0 : EPERM); 1941 } else { 1942 return (PRIV_POLICY(cr, PRIV_SYS_IP_CONFIG, B_FALSE, EPERM, 1943 NULL)); 1944 } 1945 } 1946 1947 /* 1948 * PRIV_SYS_NET_CONFIG is a superset of PRIV_SYS_DL_CONFIG. 1949 */ 1950 int 1951 secpolicy_dl_config(const cred_t *cr) 1952 { 1953 if (PRIV_POLICY_ONLY(cr, PRIV_SYS_NET_CONFIG, B_FALSE)) 1954 return (secpolicy_net_config(cr, B_FALSE)); 1955 return (PRIV_POLICY(cr, PRIV_SYS_DL_CONFIG, B_FALSE, EPERM, NULL)); 1956 } 1957 1958 /* 1959 * PRIV_SYS_DL_CONFIG is a superset of PRIV_SYS_IPTUN_CONFIG. 1960 */ 1961 int 1962 secpolicy_iptun_config(const cred_t *cr) 1963 { 1964 if (PRIV_POLICY_ONLY(cr, PRIV_SYS_NET_CONFIG, B_FALSE)) 1965 return (secpolicy_net_config(cr, B_FALSE)); 1966 if (PRIV_POLICY_ONLY(cr, PRIV_SYS_DL_CONFIG, B_FALSE)) 1967 return (secpolicy_dl_config(cr)); 1968 return (PRIV_POLICY(cr, PRIV_SYS_IPTUN_CONFIG, B_FALSE, EPERM, NULL)); 1969 } 1970 1971 /* 1972 * Map IP pseudo privileges to actual privileges. 1973 * So we don't need to recompile IP when we change the privileges. 1974 */ 1975 int 1976 secpolicy_ip(const cred_t *cr, int netpriv, boolean_t checkonly) 1977 { 1978 int priv = PRIV_ALL; 1979 1980 switch (netpriv) { 1981 case OP_CONFIG: 1982 priv = PRIV_SYS_IP_CONFIG; 1983 break; 1984 case OP_RAW: 1985 priv = PRIV_NET_RAWACCESS; 1986 break; 1987 case OP_PRIVPORT: 1988 priv = PRIV_NET_PRIVADDR; 1989 break; 1990 } 1991 ASSERT(priv != PRIV_ALL); 1992 if (checkonly) 1993 return (PRIV_POLICY_ONLY(cr, priv, B_FALSE) ? 0 : EPERM); 1994 else 1995 return (PRIV_POLICY(cr, priv, B_FALSE, EPERM, NULL)); 1996 } 1997 1998 /* 1999 * Map network pseudo privileges to actual privileges. 2000 * So we don't need to recompile IP when we change the privileges. 2001 */ 2002 int 2003 secpolicy_net(const cred_t *cr, int netpriv, boolean_t checkonly) 2004 { 2005 int priv = PRIV_ALL; 2006 2007 switch (netpriv) { 2008 case OP_CONFIG: 2009 priv = PRIV_SYS_NET_CONFIG; 2010 break; 2011 case OP_RAW: 2012 priv = PRIV_NET_RAWACCESS; 2013 break; 2014 case OP_PRIVPORT: 2015 priv = PRIV_NET_PRIVADDR; 2016 break; 2017 } 2018 ASSERT(priv != PRIV_ALL); 2019 if (checkonly) 2020 return (PRIV_POLICY_ONLY(cr, priv, B_FALSE) ? 0 : EPERM); 2021 else 2022 return (PRIV_POLICY(cr, priv, B_FALSE, EPERM, NULL)); 2023 } 2024 2025 /* 2026 * Checks for operations that are either client-only or are used by 2027 * both clients and servers. 2028 */ 2029 int 2030 secpolicy_nfs(const cred_t *cr) 2031 { 2032 return (PRIV_POLICY(cr, PRIV_SYS_NFS, B_FALSE, EPERM, NULL)); 2033 } 2034 2035 /* 2036 * Special case for opening rpcmod: have NFS privileges or network 2037 * config privileges. 2038 */ 2039 int 2040 secpolicy_rpcmod_open(const cred_t *cr) 2041 { 2042 if (PRIV_POLICY_ONLY(cr, PRIV_SYS_NFS, B_FALSE)) 2043 return (secpolicy_nfs(cr)); 2044 else 2045 return (secpolicy_net_config(cr, NULL)); 2046 } 2047 2048 int 2049 secpolicy_chroot(const cred_t *cr) 2050 { 2051 return (PRIV_POLICY(cr, PRIV_PROC_CHROOT, B_FALSE, EPERM, NULL)); 2052 } 2053 2054 int 2055 secpolicy_tasksys(const cred_t *cr) 2056 { 2057 return (PRIV_POLICY(cr, PRIV_PROC_TASKID, B_FALSE, EPERM, NULL)); 2058 } 2059 2060 int 2061 secpolicy_pfexec_register(const cred_t *cr) 2062 { 2063 return (PRIV_POLICY(cr, PRIV_SYS_ADMIN, B_TRUE, EPERM, NULL)); 2064 } 2065 2066 /* 2067 * Basic privilege checks. 2068 */ 2069 int 2070 secpolicy_basic_exec(const cred_t *cr, vnode_t *vp) 2071 { 2072 FAST_BASIC_CHECK(cr, PRIV_PROC_EXEC); 2073 2074 return (priv_policy_va(cr, PRIV_PROC_EXEC, B_FALSE, EPERM, NULL, 2075 KLPDARG_VNODE, vp, (char *)NULL, KLPDARG_NOMORE)); 2076 } 2077 2078 int 2079 secpolicy_basic_fork(const cred_t *cr) 2080 { 2081 FAST_BASIC_CHECK(cr, PRIV_PROC_FORK); 2082 2083 return (PRIV_POLICY(cr, PRIV_PROC_FORK, B_FALSE, EPERM, NULL)); 2084 } 2085 2086 int 2087 secpolicy_basic_proc(const cred_t *cr) 2088 { 2089 FAST_BASIC_CHECK(cr, PRIV_PROC_SESSION); 2090 2091 return (PRIV_POLICY(cr, PRIV_PROC_SESSION, B_FALSE, EPERM, NULL)); 2092 } 2093 2094 /* 2095 * Slightly complicated because we don't want to trigger the policy too 2096 * often. First we shortcircuit access to "self" (tp == sp) or if 2097 * we don't have the privilege but if we have permission 2098 * just return (0) and we don't flag the privilege as needed. 2099 * Else, we test for the privilege because we either have it or need it. 2100 */ 2101 int 2102 secpolicy_basic_procinfo(const cred_t *cr, proc_t *tp, proc_t *sp) 2103 { 2104 if (tp == sp || 2105 !HAS_PRIVILEGE(cr, PRIV_PROC_INFO) && prochasprocperm(tp, sp, cr)) { 2106 return (0); 2107 } else { 2108 return (PRIV_POLICY(cr, PRIV_PROC_INFO, B_FALSE, EPERM, NULL)); 2109 } 2110 } 2111 2112 int 2113 secpolicy_basic_link(const cred_t *cr) 2114 { 2115 FAST_BASIC_CHECK(cr, PRIV_FILE_LINK_ANY); 2116 2117 return (PRIV_POLICY(cr, PRIV_FILE_LINK_ANY, B_FALSE, EPERM, NULL)); 2118 } 2119 2120 int 2121 secpolicy_basic_net_access(const cred_t *cr) 2122 { 2123 FAST_BASIC_CHECK(cr, PRIV_NET_ACCESS); 2124 2125 return (PRIV_POLICY(cr, PRIV_NET_ACCESS, B_FALSE, EACCES, NULL)); 2126 } 2127 2128 /* ARGSUSED */ 2129 int 2130 secpolicy_basic_file_read(const cred_t *cr, vnode_t *vp, const char *pn) 2131 { 2132 FAST_BASIC_CHECK(cr, PRIV_FILE_READ); 2133 2134 return (priv_policy_va(cr, PRIV_FILE_READ, B_FALSE, EACCES, NULL, 2135 KLPDARG_VNODE, vp, (char *)pn, KLPDARG_NOMORE)); 2136 } 2137 2138 /* ARGSUSED */ 2139 int 2140 secpolicy_basic_file_write(const cred_t *cr, vnode_t *vp, const char *pn) 2141 { 2142 FAST_BASIC_CHECK(cr, PRIV_FILE_WRITE); 2143 2144 return (priv_policy_va(cr, PRIV_FILE_WRITE, B_FALSE, EACCES, NULL, 2145 KLPDARG_VNODE, vp, (char *)pn, KLPDARG_NOMORE)); 2146 } 2147 2148 /* 2149 * Additional device protection. 2150 * 2151 * Traditionally, a device has specific permissions on the node in 2152 * the filesystem which govern which devices can be opened by what 2153 * processes. In certain cases, it is desirable to add extra 2154 * restrictions, as writing to certain devices is identical to 2155 * having a complete run of the system. 2156 * 2157 * This mechanism is called the device policy. 2158 * 2159 * When a device is opened, its policy entry is looked up in the 2160 * policy cache and checked. 2161 */ 2162 int 2163 secpolicy_spec_open(const cred_t *cr, struct vnode *vp, int oflag) 2164 { 2165 devplcy_t *plcy; 2166 int err; 2167 struct snode *csp = VTOS(common_specvp(vp)); 2168 priv_set_t pset; 2169 2170 mutex_enter(&csp->s_lock); 2171 2172 if (csp->s_plcy == NULL || csp->s_plcy->dp_gen != devplcy_gen) { 2173 plcy = devpolicy_find(vp); 2174 if (csp->s_plcy) 2175 dpfree(csp->s_plcy); 2176 csp->s_plcy = plcy; 2177 ASSERT(plcy != NULL); 2178 } else 2179 plcy = csp->s_plcy; 2180 2181 if (plcy == nullpolicy) { 2182 mutex_exit(&csp->s_lock); 2183 return (0); 2184 } 2185 2186 dphold(plcy); 2187 2188 mutex_exit(&csp->s_lock); 2189 2190 if (oflag & FWRITE) 2191 pset = plcy->dp_wrp; 2192 else 2193 pset = plcy->dp_rdp; 2194 /* 2195 * Special case: 2196 * PRIV_SYS_NET_CONFIG is a superset of PRIV_SYS_IP_CONFIG. 2197 * If PRIV_SYS_NET_CONFIG is present and PRIV_SYS_IP_CONFIG is 2198 * required, replace PRIV_SYS_IP_CONFIG with PRIV_SYS_NET_CONFIG 2199 * in the required privilege set before doing the check. 2200 */ 2201 if (priv_ismember(&pset, PRIV_SYS_IP_CONFIG) && 2202 priv_ismember(&CR_OEPRIV(cr), PRIV_SYS_NET_CONFIG) && 2203 !priv_ismember(&CR_OEPRIV(cr), PRIV_SYS_IP_CONFIG)) { 2204 priv_delset(&pset, PRIV_SYS_IP_CONFIG); 2205 priv_addset(&pset, PRIV_SYS_NET_CONFIG); 2206 } 2207 2208 err = secpolicy_require_set(cr, &pset, "devpolicy", KLPDARG_NONE); 2209 dpfree(plcy); 2210 2211 return (err); 2212 } 2213 2214 int 2215 secpolicy_modctl(const cred_t *cr, int cmd) 2216 { 2217 switch (cmd) { 2218 case MODINFO: 2219 case MODGETMAJBIND: 2220 case MODGETPATH: 2221 case MODGETPATHLEN: 2222 case MODGETNAME: 2223 case MODGETFBNAME: 2224 case MODGETDEVPOLICY: 2225 case MODGETDEVPOLICYBYNAME: 2226 case MODDEVT2INSTANCE: 2227 case MODSIZEOF_DEVID: 2228 case MODGETDEVID: 2229 case MODSIZEOF_MINORNAME: 2230 case MODGETMINORNAME: 2231 case MODGETDEVFSPATH_LEN: 2232 case MODGETDEVFSPATH: 2233 case MODGETDEVFSPATH_MI_LEN: 2234 case MODGETDEVFSPATH_MI: 2235 /* Unprivileged */ 2236 return (0); 2237 case MODLOAD: 2238 case MODSETDEVPOLICY: 2239 return (secpolicy_require_set(cr, PRIV_FULLSET, NULL, 2240 KLPDARG_NONE)); 2241 default: 2242 return (secpolicy_sys_config(cr, B_FALSE)); 2243 } 2244 } 2245 2246 int 2247 secpolicy_console(const cred_t *cr) 2248 { 2249 return (PRIV_POLICY(cr, PRIV_SYS_DEVICES, B_FALSE, EPERM, NULL)); 2250 } 2251 2252 int 2253 secpolicy_power_mgmt(const cred_t *cr) 2254 { 2255 return (PRIV_POLICY(cr, PRIV_SYS_DEVICES, B_FALSE, EPERM, NULL)); 2256 } 2257 2258 /* 2259 * Simulate terminal input; another escalation of privileges avenue. 2260 */ 2261 2262 int 2263 secpolicy_sti(const cred_t *cr) 2264 { 2265 return (secpolicy_require_set(cr, PRIV_FULLSET, NULL, KLPDARG_NONE)); 2266 } 2267 2268 boolean_t 2269 secpolicy_net_reply_equal(const cred_t *cr) 2270 { 2271 return (PRIV_POLICY(cr, PRIV_SYS_CONFIG, B_FALSE, EPERM, NULL)); 2272 } 2273 2274 int 2275 secpolicy_swapctl(const cred_t *cr) 2276 { 2277 return (PRIV_POLICY(cr, PRIV_SYS_CONFIG, B_FALSE, EPERM, NULL)); 2278 } 2279 2280 int 2281 secpolicy_cpc_cpu(const cred_t *cr) 2282 { 2283 return (PRIV_POLICY(cr, PRIV_CPC_CPU, B_FALSE, EACCES, NULL)); 2284 } 2285 2286 /* 2287 * secpolicy_contract_identity 2288 * 2289 * Determine if the subject may set the process contract FMRI value 2290 */ 2291 int 2292 secpolicy_contract_identity(const cred_t *cr) 2293 { 2294 return (PRIV_POLICY(cr, PRIV_CONTRACT_IDENTITY, B_FALSE, EPERM, NULL)); 2295 } 2296 2297 /* 2298 * secpolicy_contract_observer 2299 * 2300 * Determine if the subject may observe a specific contract's events. 2301 */ 2302 int 2303 secpolicy_contract_observer(const cred_t *cr, struct contract *ct) 2304 { 2305 if (contract_owned(ct, cr, B_FALSE)) 2306 return (0); 2307 return (PRIV_POLICY(cr, PRIV_CONTRACT_OBSERVER, B_FALSE, EPERM, NULL)); 2308 } 2309 2310 /* 2311 * secpolicy_contract_observer_choice 2312 * 2313 * Determine if the subject may observe any contract's events. Just 2314 * tests privilege and audits on success. 2315 */ 2316 boolean_t 2317 secpolicy_contract_observer_choice(const cred_t *cr) 2318 { 2319 return (PRIV_POLICY_CHOICE(cr, PRIV_CONTRACT_OBSERVER, B_FALSE)); 2320 } 2321 2322 /* 2323 * secpolicy_contract_event 2324 * 2325 * Determine if the subject may request critical contract events or 2326 * reliable contract event delivery. 2327 */ 2328 int 2329 secpolicy_contract_event(const cred_t *cr) 2330 { 2331 return (PRIV_POLICY(cr, PRIV_CONTRACT_EVENT, B_FALSE, EPERM, NULL)); 2332 } 2333 2334 /* 2335 * secpolicy_contract_event_choice 2336 * 2337 * Determine if the subject may retain contract events in its critical 2338 * set when a change in other terms would normally require a change in 2339 * the critical set. Just tests privilege and audits on success. 2340 */ 2341 boolean_t 2342 secpolicy_contract_event_choice(const cred_t *cr) 2343 { 2344 return (PRIV_POLICY_CHOICE(cr, PRIV_CONTRACT_EVENT, B_FALSE)); 2345 } 2346 2347 /* 2348 * secpolicy_gart_access 2349 * 2350 * Determine if the subject has sufficient priveleges to make ioctls to agpgart 2351 * device. 2352 */ 2353 int 2354 secpolicy_gart_access(const cred_t *cr) 2355 { 2356 return (PRIV_POLICY(cr, PRIV_GRAPHICS_ACCESS, B_FALSE, EPERM, NULL)); 2357 } 2358 2359 /* 2360 * secpolicy_gart_map 2361 * 2362 * Determine if the subject has sufficient priveleges to map aperture range 2363 * through agpgart driver. 2364 */ 2365 int 2366 secpolicy_gart_map(const cred_t *cr) 2367 { 2368 if (PRIV_POLICY_ONLY(cr, PRIV_GRAPHICS_ACCESS, B_FALSE)) { 2369 return (PRIV_POLICY(cr, PRIV_GRAPHICS_ACCESS, B_FALSE, EPERM, 2370 NULL)); 2371 } else { 2372 return (PRIV_POLICY(cr, PRIV_GRAPHICS_MAP, B_FALSE, EPERM, 2373 NULL)); 2374 } 2375 } 2376 2377 /* 2378 * secpolicy_zinject 2379 * 2380 * Determine if the subject can inject faults in the ZFS fault injection 2381 * framework. Requires all privileges. 2382 */ 2383 int 2384 secpolicy_zinject(const cred_t *cr) 2385 { 2386 return (secpolicy_require_set(cr, PRIV_FULLSET, NULL, KLPDARG_NONE)); 2387 } 2388 2389 /* 2390 * secpolicy_zfs 2391 * 2392 * Determine if the subject has permission to manipulate ZFS datasets 2393 * (not pools). Equivalent to the SYS_MOUNT privilege. 2394 */ 2395 int 2396 secpolicy_zfs(const cred_t *cr) 2397 { 2398 return (PRIV_POLICY(cr, PRIV_SYS_MOUNT, B_FALSE, EPERM, NULL)); 2399 } 2400 2401 /* 2402 * secpolicy_idmap 2403 * 2404 * Determine if the calling process has permissions to register an SID 2405 * mapping daemon and allocate ephemeral IDs. 2406 */ 2407 int 2408 secpolicy_idmap(const cred_t *cr) 2409 { 2410 return (PRIV_POLICY(cr, PRIV_FILE_SETID, B_TRUE, EPERM, NULL)); 2411 } 2412 2413 /* 2414 * secpolicy_ucode_update 2415 * 2416 * Determine if the subject has sufficient privilege to update microcode. 2417 */ 2418 int 2419 secpolicy_ucode_update(const cred_t *scr) 2420 { 2421 return (PRIV_POLICY(scr, PRIV_ALL, B_FALSE, EPERM, NULL)); 2422 } 2423 2424 /* 2425 * secpolicy_sadopen 2426 * 2427 * Determine if the subject has sufficient privilege to access /dev/sad/admin. 2428 * /dev/sad/admin appear in global zone and exclusive-IP zones only. 2429 * In global zone, sys_config is required. 2430 * In exclusive-IP zones, sys_ip_config is required. 2431 * Note that sys_config is prohibited in non-global zones. 2432 */ 2433 int 2434 secpolicy_sadopen(const cred_t *credp) 2435 { 2436 priv_set_t pset; 2437 2438 priv_emptyset(&pset); 2439 2440 if (crgetzoneid(credp) == GLOBAL_ZONEID) 2441 priv_addset(&pset, PRIV_SYS_CONFIG); 2442 else 2443 priv_addset(&pset, PRIV_SYS_IP_CONFIG); 2444 2445 return (secpolicy_require_set(credp, &pset, "devpolicy", KLPDARG_NONE)); 2446 } 2447 2448 2449 /* 2450 * Add privileges to a particular privilege set; this is called when the 2451 * current sets of privileges are not sufficient. I.e., we should always 2452 * call the policy override functions from here. 2453 * What we are allowed to have is in the Observed Permitted set; so 2454 * we compute the difference between that and the newset. 2455 */ 2456 int 2457 secpolicy_require_privs(const cred_t *cr, const priv_set_t *nset) 2458 { 2459 priv_set_t rqd; 2460 2461 rqd = CR_OPPRIV(cr); 2462 2463 priv_inverse(&rqd); 2464 priv_intersect(nset, &rqd); 2465 2466 return (secpolicy_require_set(cr, &rqd, NULL, KLPDARG_NONE)); 2467 } 2468 2469 /* 2470 * secpolicy_smb 2471 * 2472 * Determine if the cred_t has PRIV_SYS_SMB privilege, indicating 2473 * that it has permission to access the smbsrv kernel driver. 2474 * PRIV_POLICY checks the privilege and audits the check. 2475 * 2476 * Returns: 2477 * 0 Driver access is allowed. 2478 * EPERM Driver access is NOT permitted. 2479 */ 2480 int 2481 secpolicy_smb(const cred_t *cr) 2482 { 2483 return (PRIV_POLICY(cr, PRIV_SYS_SMB, B_FALSE, EPERM, NULL)); 2484 } 2485 2486 /* 2487 * secpolicy_vscan 2488 * 2489 * Determine if cred_t has the necessary privileges to access a file 2490 * for virus scanning and update its extended system attributes. 2491 * PRIV_FILE_DAC_SEARCH, PRIV_FILE_DAC_READ - file access 2492 * PRIV_FILE_FLAG_SET - set extended system attributes 2493 * 2494 * PRIV_POLICY checks the privilege and audits the check. 2495 * 2496 * Returns: 2497 * 0 file access for virus scanning allowed. 2498 * EPERM file access for virus scanning is NOT permitted. 2499 */ 2500 int 2501 secpolicy_vscan(const cred_t *cr) 2502 { 2503 if ((PRIV_POLICY(cr, PRIV_FILE_DAC_SEARCH, B_FALSE, EPERM, NULL)) || 2504 (PRIV_POLICY(cr, PRIV_FILE_DAC_READ, B_FALSE, EPERM, NULL)) || 2505 (PRIV_POLICY(cr, PRIV_FILE_FLAG_SET, B_FALSE, EPERM, NULL))) { 2506 return (EPERM); 2507 } 2508 2509 return (0); 2510 } 2511 2512 /* 2513 * secpolicy_smbfs_login 2514 * 2515 * Determines if the caller can add and delete the smbfs login 2516 * password in the the nsmb kernel module for the CIFS client. 2517 * 2518 * Returns: 2519 * 0 access is allowed. 2520 * EPERM access is NOT allowed. 2521 */ 2522 int 2523 secpolicy_smbfs_login(const cred_t *cr, uid_t uid) 2524 { 2525 uid_t cruid = crgetruid(cr); 2526 2527 if (cruid == uid) 2528 return (0); 2529 return (PRIV_POLICY(cr, PRIV_PROC_OWNER, B_FALSE, 2530 EPERM, NULL)); 2531 } 2532 2533 /* 2534 * secpolicy_xvm_control 2535 * 2536 * Determines if a caller can control the xVM hypervisor and/or running 2537 * domains (x86 specific). 2538 * 2539 * Returns: 2540 * 0 access is allowed. 2541 * EPERM access is NOT allowed. 2542 */ 2543 int 2544 secpolicy_xvm_control(const cred_t *cr) 2545 { 2546 if (PRIV_POLICY(cr, PRIV_XVM_CONTROL, B_FALSE, EPERM, NULL)) 2547 return (EPERM); 2548 return (0); 2549 } 2550 2551 /* 2552 * secpolicy_ppp_config 2553 * 2554 * Determine if the subject has sufficient privileges to configure PPP and 2555 * PPP-related devices. 2556 */ 2557 int 2558 secpolicy_ppp_config(const cred_t *cr) 2559 { 2560 if (PRIV_POLICY_ONLY(cr, PRIV_SYS_NET_CONFIG, B_FALSE)) 2561 return (secpolicy_net_config(cr, B_FALSE)); 2562 return (PRIV_POLICY(cr, PRIV_SYS_PPP_CONFIG, B_FALSE, EPERM, NULL)); 2563 } 2564