Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 | /* * Copyright (c) 2018 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include <sys/param.h> #include <sys/systm.h> #include <sys/filedesc.h> #include <sys/kernel.h> #include <sys/file_internal.h> #include <sys/guarded.h> #include <sys/sysproto.h> #include <sys/vnode.h> #include <sys/vnode_internal.h> #include <sys/uio_internal.h> #include <sys/ubc_internal.h> #include <vfs/vfs_support.h> #include <security/audit/audit.h> #include <sys/syscall.h> #include <sys/kauth.h> #include <sys/kdebug.h> #include <sys/reason.h> #include <stdbool.h> #include <vm/vm_protos.h> #include <libkern/section_keywords.h> #include <kern/kalloc.h> #include <kern/task.h> #include <kern/exc_guard.h> #if CONFIG_MACF && CONFIG_VNGUARD #include <security/mac.h> #include <security/mac_framework.h> #include <security/mac_policy.h> #include <pexpert/pexpert.h> #include <sys/sysctl.h> #include <sys/reason.h> #endif #define f_flag fp_glob->fg_flag extern int writev_uio(struct proc *p, int fd, user_addr_t user_iovp, int iovcnt, off_t offset, int flags, guardid_t *puguard, user_ssize_t *retval); extern int write_internal(struct proc *p, int fd, user_addr_t buf, user_size_t nbyte, off_t offset, int flags, guardid_t *puguard, user_ssize_t *retval); /* * Experimental guarded file descriptor support. */ kern_return_t task_exception_notify(exception_type_t exception, mach_exception_data_type_t code, mach_exception_data_type_t subcode, const bool fatal); #define GUARD_REQUIRED (GUARD_DUP) #define GUARD_ALL (GUARD_REQUIRED | \ (GUARD_CLOSE | GUARD_SOCKET_IPC | GUARD_FILEPORT | GUARD_WRITE)) static KALLOC_TYPE_DEFINE(fp_guard_zone, struct fileproc_guard, KT_DEFAULT); struct gfp_crarg { guardid_t gca_guard; uint16_t gca_attrs; }; static struct fileproc_guard * guarded_fileproc_alloc(guardid_t guard) { struct fileproc_guard *fpg; fpg = zalloc_flags(fp_guard_zone, Z_WAITOK | Z_ZERO | Z_NOFAIL); fpg->fpg_guard = guard; return fpg; } static void guarded_fileproc_init(struct fileproc *fp, void *initarg) { struct gfp_crarg *arg = initarg; assert(arg->gca_attrs); fp->fp_guard = guarded_fileproc_alloc(arg->gca_guard); fp->fp_guard_attrs = arg->gca_attrs; } /* * This is called from fdt_fork(), * where it needs to copy a guarded * fd to the new shadow proc. */ void guarded_fileproc_copy_guard(struct fileproc *ofp, struct fileproc *nfp) { struct gfp_crarg arg = { .gca_guard = ofp->fp_guard->fpg_guard, .gca_attrs = ofp->fp_guard_attrs }; guarded_fileproc_init(nfp, &arg); } /* * This is called from fileproc_free(), * which is why it is safe to call * without holding the proc_fdlock. */ void guarded_fileproc_unguard(struct fileproc *fp) { struct fileproc_guard *fpg = fp->fp_guard; fp->fp_guard_attrs = 0; fp->fp_wset = fpg->fpg_wset; zfree(fp_guard_zone, fpg); } static int fp_lookup_guarded_locked(proc_t p, int fd, guardid_t guard, struct fileproc **fpp) { int error; struct fileproc *fp; if ((error = fp_lookup(p, fd, &fp, 1)) != 0) { return error; } if (fp->fp_guard_attrs == 0) { (void) fp_drop(p, fd, fp, 1); return EINVAL; } if (guard != fp->fp_guard->fpg_guard) { (void) fp_drop(p, fd, fp, 1); return EPERM; /* *not* a mismatch exception */ } *fpp = fp; return 0; } int fp_lookup_guarded(proc_t p, int fd, guardid_t guard, struct fileproc **fpp, int locked) { int error; if (!locked) { proc_fdlock_spin(p); } error = fp_lookup_guarded_locked(p, fd, guard, fpp); if (!locked) { proc_fdunlock(p); } return error; } /* * Expected use pattern: * * if (fp_isguarded(fp, GUARD_CLOSE)) { * error = fp_guard_exception(p, fd, fp, kGUARD_EXC_CLOSE); * proc_fdunlock(p); * return error; * } */ int fp_isguarded(struct fileproc *fp, u_int attrs) { return fp->fp_guard_attrs && (fp->fp_guard_attrs & attrs) == attrs; } extern char *proc_name_address(void *p); int fp_guard_exception(proc_t p, int fd, struct fileproc *fp, u_int flavor) { /* all fp guard fields protected via proc_fdlock() */ proc_fdlock_assert(p, LCK_MTX_ASSERT_OWNED); mach_exception_code_t code = 0; EXC_GUARD_ENCODE_TYPE(code, GUARD_TYPE_FD); EXC_GUARD_ENCODE_FLAVOR(code, flavor); EXC_GUARD_ENCODE_TARGET(code, fd); mach_exception_subcode_t subcode = fp->fp_guard->fpg_guard; assert(fp->fp_guard_attrs); thread_t t = current_thread(); thread_guard_violation(t, code, subcode, TRUE); return EPERM; } /* * (Invoked before returning to userland from the syscall handler.) */ void fd_guard_ast( thread_t __unused t, mach_exception_code_t code, mach_exception_subcode_t subcode) { const bool fatal = true; /* * Check if anyone has registered for Synchronous EXC_GUARD, if yes then, * deliver it synchronously and then kill the process, else kill the process * and deliver the exception via EXC_CORPSE_NOTIFY. Always kill the process if we are not in dev mode. */ int flags = PX_DEBUG_NO_HONOR; exception_info_t info = { .os_reason = OS_REASON_GUARD, .exception_type = EXC_GUARD, .mx_code = code, .mx_subcode = subcode, }; if (task_exception_notify(EXC_GUARD, code, subcode, fatal) == KERN_SUCCESS) { flags |= PX_PSIGNAL; } exit_with_mach_exception(current_proc(), info, flags); } /* * Experimental guarded file descriptor SPIs */ /* * int guarded_open_np(const char *pathname, int flags, * const guardid_t *guard, u_int guardflags, ...); * * In this initial implementation, GUARD_DUP must be specified. * GUARD_CLOSE, GUARD_SOCKET_IPC and GUARD_FILEPORT are optional. * * If GUARD_DUP wasn't specified, then we'd have to do the (extra) work * to allow dup-ing a descriptor to inherit the guard onto the new * descriptor. (Perhaps GUARD_DUP behaviours should just always be true * for a guarded fd? Or, more sanely, all the dup operations should * just always propagate the guard?) * * Guarded descriptors are always close-on-exec, and GUARD_CLOSE * requires close-on-fork; O_CLOEXEC must be set in flags. * This setting is immutable; attempts to clear the flag will * cause a guard exception. * * XXX It's somewhat broken that change_fdguard_np() can completely * remove the guard and thus revoke down the immutability * promises above. Ick. */ int guarded_open_np(proc_t p, struct guarded_open_np_args *uap, int32_t *retval) { if ((uap->flags & O_CLOEXEC) == 0) { return EINVAL; } if (((uap->guardflags & GUARD_REQUIRED) != GUARD_REQUIRED) || ((uap->guardflags & ~GUARD_ALL) != 0)) { return EINVAL; } int error; struct gfp_crarg crarg = { .gca_attrs = (uint16_t)uap->guardflags }; if ((error = copyin(uap->guard, &(crarg.gca_guard), sizeof(crarg.gca_guard))) != 0) { return error; } /* * Disallow certain guard values -- is zero enough? */ if (crarg.gca_guard == 0) { return EINVAL; } struct vnode_attr va; struct nameidata nd; vfs_context_t ctx = vfs_context_current(); int cmode; VATTR_INIT(&va); cmode = ((uap->mode & ~p->p_fd.fd_cmask) & ALLPERMS) & ~S_ISTXT; VATTR_SET(&va, va_mode, cmode & ACCESSPERMS); NDINIT(&nd, LOOKUP, OP_OPEN, FOLLOW | AUDITVNPATH1, UIO_USERSPACE, uap->path, ctx); return open1(ctx, &nd, uap->flags | O_CLOFORK, &va, guarded_fileproc_init, &crarg, retval, AUTH_OPEN_NOAUTHFD); } /* * int guarded_open_dprotected_np(const char *pathname, int flags, * const guardid_t *guard, u_int guardflags, int dpclass, int dpflags, ...); * * This SPI is extension of guarded_open_np() to include dataprotection class on creation * in "dpclass" and dataprotection flags 'dpflags'. Otherwise behaviors are same as in * guarded_open_np() */ int guarded_open_dprotected_np(proc_t p, struct guarded_open_dprotected_np_args *uap, int32_t *retval) { if ((uap->flags & O_CLOEXEC) == 0) { return EINVAL; } if (((uap->guardflags & GUARD_REQUIRED) != GUARD_REQUIRED) || ((uap->guardflags & ~GUARD_ALL) != 0)) { return EINVAL; } int error; struct gfp_crarg crarg = { .gca_attrs = (uint16_t)uap->guardflags }; if ((error = copyin(uap->guard, &(crarg.gca_guard), sizeof(crarg.gca_guard))) != 0) { return error; } /* * Disallow certain guard values -- is zero enough? */ if (crarg.gca_guard == 0) { return EINVAL; } struct vnode_attr va; struct nameidata nd; vfs_context_t ctx = vfs_context_current(); int cmode; VATTR_INIT(&va); cmode = ((uap->mode & ~p->p_fd.fd_cmask) & ALLPERMS) & ~S_ISTXT; VATTR_SET(&va, va_mode, cmode & ACCESSPERMS); NDINIT(&nd, LOOKUP, OP_OPEN, FOLLOW | AUDITVNPATH1, UIO_USERSPACE, uap->path, ctx); /* * Initialize the extra fields in vnode_attr to pass down dataprotection * extra fields. * 1. target cprotect class. * 2. set a flag to mark it as requiring open-raw-encrypted semantics. */ if (uap->flags & O_CREAT) { VATTR_SET(&va, va_dataprotect_class, uap->dpclass); } if (uap->dpflags & (O_DP_GETRAWENCRYPTED | O_DP_GETRAWUNENCRYPTED)) { if (uap->flags & (O_RDWR | O_WRONLY)) { /* Not allowed to write raw encrypted bytes */ return EINVAL; } if (uap->dpflags & O_DP_GETRAWENCRYPTED) { VATTR_SET(&va, va_dataprotect_flags, VA_DP_RAWENCRYPTED); } if (uap->dpflags & O_DP_GETRAWUNENCRYPTED) { VATTR_SET(&va, va_dataprotect_flags, VA_DP_RAWUNENCRYPTED); } } return open1(ctx, &nd, uap->flags | O_CLOFORK, &va, guarded_fileproc_init, &crarg, retval, AUTH_OPEN_NOAUTHFD); } /* * int guarded_kqueue_np(const guardid_t *guard, u_int guardflags); * * Create a guarded kqueue descriptor with guardid and guardflags. * * Same restrictions on guardflags as for guarded_open_np(). * All kqueues are -always- close-on-exec and close-on-fork by themselves * and are not sendable. */ int guarded_kqueue_np(proc_t p, struct guarded_kqueue_np_args *uap, int32_t *retval) { if (((uap->guardflags & GUARD_REQUIRED) != GUARD_REQUIRED) || ((uap->guardflags & ~GUARD_ALL) != 0)) { return EINVAL; } int error; struct gfp_crarg crarg = { .gca_attrs = (uint16_t)uap->guardflags }; if ((error = copyin(uap->guard, &(crarg.gca_guard), sizeof(crarg.gca_guard))) != 0) { return error; } if (crarg.gca_guard == 0) { return EINVAL; } return kqueue_internal(p, guarded_fileproc_init, &crarg, retval); } /* * int guarded_close_np(int fd, const guardid_t *guard); */ int guarded_close_np(proc_t p, struct guarded_close_np_args *uap, __unused int32_t *retval) { struct fileproc *fp; kauth_cred_t p_cred; int fd = uap->fd; int error; guardid_t uguard; AUDIT_SYSCLOSE(p, fd); if ((error = copyin(uap->guard, &uguard, sizeof(uguard))) != 0) { return error; } proc_fdlock(p); if ((error = fp_lookup_guarded(p, fd, uguard, &fp, 1)) != 0) { proc_fdunlock(p); return error; } fp_drop(p, fd, fp, 1); p_cred = current_cached_proc_cred(p); return fp_close_and_unlock(p, p_cred, fd, fp, 0); } /* * int * change_fdguard_np(int fd, const guardid_t *guard, u_int guardflags, * const guardid_t *nguard, u_int nguardflags, int *fdflagsp); * * Given a file descriptor, atomically exchange <guard, guardflags> for * a new guard <nguard, nguardflags>, returning the previous fd * flags (see fcntl:F_SETFD) in *fdflagsp. * * This syscall can be used to either (a) add a new guard to an existing * unguarded file descriptor (b) remove the old guard from an existing * guarded file descriptor or (c) change the guard (guardid and/or * guardflags) on a guarded file descriptor. * * If 'guard' is NULL, fd must be unguarded at entry. If the call completes * successfully the fd will be guarded with <nguard, nguardflags>. * * Guarding a file descriptor has some side-effects on the "fp_flags" * associated with the descriptor - in particular FD_CLOEXEC is * forced ON unconditionally, and FD_CLOFORK is forced ON by GUARD_CLOSE. * Callers who wish to subsequently restore the state of the fd should save * the value of *fdflagsp after a successful invocation. * * If 'nguard' is NULL, fd must be guarded at entry, <guard, guardflags> * must match with what's already guarding the descriptor, and the * result will be to completely remove the guard. * * If the descriptor is guarded, and neither 'guard' nor 'nguard' is NULL * and <guard, guardflags> matches what's already guarding the descriptor, * then <nguard, nguardflags> becomes the new guard. In this case, even if * the GUARD_CLOSE flag is being cleared, it is still possible to continue * to keep FD_CLOFORK on the descriptor by passing FD_CLOFORK via fdflagsp. * * (File descriptors whose underlying fileglobs are marked FG_CONFINED are * still close-on-fork, regardless of the setting of FD_CLOFORK.) * * Example 1: Guard an unguarded descriptor during a set of operations, * then restore the original state of the descriptor. * * int sav_flags = 0; * change_fdguard_np(fd, NULL, 0, &myguard, GUARD_CLOSE, &sav_flags); * // do things with now guarded 'fd' * change_fdguard_np(fd, &myguard, GUARD_CLOSE, NULL, 0, &sav_flags); * // fd now unguarded. * * Example 2: Change the guard of a guarded descriptor during a set of * operations, then restore the original state of the descriptor. * * int sav_flags = (gdflags & GUARD_CLOSE) ? FD_CLOFORK : 0; * change_fdguard_np(fd, &gd, gdflags, &myguard, GUARD_CLOSE, &sav_flags); * // do things with 'fd' with a different guard * change_fdguard_np(fd, &myg, GUARD_CLOSE, &gd, gdflags, &sav_flags); * // back to original guarded state * * XXX This SPI is too much of a chainsaw and should be revised. */ int change_fdguard_np(proc_t p, struct change_fdguard_np_args *uap, __unused int32_t *retval) { struct fileproc_guard *fpg = NULL; struct fileproc *fp; int fd = uap->fd; int error; guardid_t oldg = 0, newg = 0; int nfdflags = 0; if (0 != uap->guard && 0 != (error = copyin(uap->guard, &oldg, sizeof(oldg)))) { return error; /* can't copyin current guard */ } if (0 != uap->nguard && 0 != (error = copyin(uap->nguard, &newg, sizeof(newg)))) { return error; /* can't copyin new guard */ } if (0 != uap->fdflagsp && 0 != (error = copyin(uap->fdflagsp, &nfdflags, sizeof(nfdflags)))) { return error; /* can't copyin new fdflags */ } if (oldg == 0 && newg) { fpg = guarded_fileproc_alloc(newg); } proc_fdlock(p); if ((error = fp_lookup(p, fd, &fp, 1)) != 0) { proc_fdunlock(p); return error; } if (0 != uap->fdflagsp) { int ofl = 0; if (fp->fp_flags & FP_CLOEXEC) { ofl |= FD_CLOEXEC; } if (fp->fp_flags & FP_CLOFORK) { ofl |= FD_CLOFORK; } proc_fdunlock(p); if (0 != (error = copyout(&ofl, uap->fdflagsp, sizeof(ofl)))) { proc_fdlock(p); goto dropout; /* can't copyout old fdflags */ } proc_fdlock(p); } if (fp->fp_guard_attrs) { if (0 == uap->guard || 0 == uap->guardflags) { error = EINVAL; /* missing guard! */ } else if (0 == oldg) { error = EPERM; /* guardids cannot be zero */ } } else { if (0 != uap->guard || 0 != uap->guardflags) { error = EINVAL; /* guard provided, but none needed! */ } } if (0 != error) { goto dropout; } if (0 != uap->nguard) { /* * There's a new guard in town. */ if (0 == newg) { error = EINVAL; /* guards cannot contain zero */ } else if (((uap->nguardflags & GUARD_REQUIRED) != GUARD_REQUIRED) || ((uap->nguardflags & ~GUARD_ALL) != 0)) { error = EINVAL; /* must have valid attributes too */ } if (0 != error) { goto dropout; } if (fp->fp_guard_attrs) { /* * Replace old guard with new guard */ if (oldg == fp->fp_guard->fpg_guard && uap->guardflags == fp->fp_guard_attrs) { /* * Must match existing guard + attributes * before we'll swap them to new ones, managing * fdflags "side-effects" as we go. Note that * userland can request FD_CLOFORK semantics. */ if (fp->fp_guard_attrs & GUARD_CLOSE) { fp->fp_flags &= ~FP_CLOFORK; } fp->fp_guard->fpg_guard = newg; fp->fp_guard_attrs = (uint16_t)uap->nguardflags; if ((fp->fp_guard_attrs & GUARD_CLOSE) || (nfdflags & FD_CLOFORK)) { fp->fp_flags |= FP_CLOFORK; } /* FG_CONFINED enforced regardless */ } else { error = EPERM; } } else { /* * Add a guard to a previously unguarded descriptor */ switch (FILEGLOB_DTYPE(fp->fp_glob)) { case DTYPE_VNODE: case DTYPE_PIPE: case DTYPE_SOCKET: case DTYPE_KQUEUE: case DTYPE_NETPOLICY: break; default: error = ENOTSUP; goto dropout; } fp->fp_guard_attrs = (uint16_t)uap->nguardflags; fpg->fpg_wset = fp->fp_wset; fp->fp_guard = fpg; fpg = NULL; if (fp->fp_guard_attrs & GUARD_CLOSE) { fp->fp_flags |= FP_CLOFORK; } fp->fp_flags |= FP_CLOEXEC; } } else { if (fp->fp_guard_attrs) { /* * Remove the guard altogether. */ if (0 != uap->nguardflags) { error = EINVAL; goto dropout; } if (oldg != fp->fp_guard->fpg_guard || uap->guardflags != fp->fp_guard_attrs) { error = EPERM; goto dropout; } assert(fpg == NULL); fp->fp_guard_attrs = 0; fpg = fp->fp_guard; fp->fp_wset = fpg->fpg_wset; fp->fp_flags &= ~(FP_CLOEXEC | FP_CLOFORK); if (nfdflags & FD_CLOFORK) { fp->fp_flags |= FP_CLOFORK; } if (nfdflags & FD_CLOEXEC) { fp->fp_flags |= FP_CLOEXEC; } } else { /* * Not already guarded, and no new guard? */ error = EINVAL; } } dropout: (void) fp_drop(p, fd, fp, 1); proc_fdunlock(p); if (fpg) { zfree(fp_guard_zone, fpg); } return error; } /* * user_ssize_t guarded_write_np(int fd, const guardid_t *guard, * user_addr_t cbuf, user_ssize_t nbyte); * * Initial implementation of guarded writes. */ int guarded_write_np(struct proc *p, struct guarded_write_np_args *uap, user_ssize_t *retval) { int error; guardid_t uguard; AUDIT_ARG(fd, uap->fd); if ((error = copyin(uap->guard, &uguard, sizeof(uguard))) != 0) { return error; } return write_internal(p, uap->fd, uap->cbuf, uap->nbyte, 0, 0, &uguard, retval); } /* * user_ssize_t guarded_pwrite_np(int fd, const guardid_t *guard, * user_addr_t buf, user_size_t nbyte, off_t offset); * * Initial implementation of guarded pwrites. */ int guarded_pwrite_np(struct proc *p, struct guarded_pwrite_np_args *uap, user_ssize_t *retval) { int error; guardid_t uguard; AUDIT_ARG(fd, uap->fd); if ((error = copyin(uap->guard, &uguard, sizeof(uguard))) != 0) { return error; } KERNEL_DEBUG_CONSTANT((BSDDBG_CODE(DBG_BSD_SC_EXTENDED_INFO, SYS_guarded_pwrite_np) | DBG_FUNC_NONE), uap->fd, uap->nbyte, (unsigned int)((uap->offset >> 32)), (unsigned int)(uap->offset), 0); return write_internal(p, uap->fd, uap->buf, uap->nbyte, uap->offset, FOF_OFFSET, &uguard, retval); } /* * user_ssize_t guarded_writev_np(int fd, const guardid_t *guard, * struct iovec *iovp, u_int iovcnt); * * Initial implementation of guarded writev. * */ int guarded_writev_np(struct proc *p, struct guarded_writev_np_args *uap, user_ssize_t *retval) { int error; guardid_t uguard; AUDIT_ARG(fd, uap->fd); if ((error = copyin(uap->guard, &uguard, sizeof(uguard))) != 0) { return error; } return writev_uio(p, uap->fd, uap->iovp, uap->iovcnt, 0, 0, &uguard, retval); } /* * int falloc_guarded(struct proc *p, struct fileproc **fp, int *fd, * vfs_context_t ctx, const guardid_t *guard, u_int attrs); * * This SPI is the guarded variant of falloc(). It borrows the same * restrictions as those used by the rest of the guarded_* routines. */ int falloc_guarded(struct proc *p, struct fileproc **fp, int *fd, vfs_context_t ctx, const guardid_t *guard, u_int attrs) { kauth_cred_t p_cred = current_cached_proc_cred(p); struct gfp_crarg crarg; if (((attrs & GUARD_REQUIRED) != GUARD_REQUIRED) || ((attrs & ~GUARD_ALL) != 0) || (*guard == 0)) { return EINVAL; } bzero(&crarg, sizeof(crarg)); crarg.gca_guard = *guard; crarg.gca_attrs = (uint16_t)attrs; return falloc_withinit(p, p_cred, ctx, fp, fd, guarded_fileproc_init, &crarg); } #if CONFIG_MACF && CONFIG_VNGUARD /* * Guarded vnodes * * Uses MAC hooks to guard operations on vnodes in the system. Given an fd, * add data to the label on the fileglob and the vnode it points at. * The data contains a pointer to the fileglob, the set of attributes to * guard, a guard value for uniquification, and the pid of the process * who set the guard up in the first place. * * The fd must have been opened read/write, and the underlying * fileglob is FG_CONFINED so that there's no ambiguity about the * owning process. * * When there's a callback for a vnode operation of interest (rename, unlink, * etc.) check to see if the guard permits that operation, and if not * take an action e.g. log a message or generate a crash report. * * The label is removed from the vnode and the fileglob when the fileglob * is closed. * * The initial action to be taken can be specified by a boot arg (vnguard=0x42) * and change via the "kern.vnguard.flags" sysctl. */ struct vng_owner; struct vng_info { /* lives on the vnode label */ guardid_t vgi_guard; unsigned vgi_attrs; TAILQ_HEAD(, vng_owner) vgi_owners; }; struct vng_owner { /* lives on the fileglob label */ proc_t vgo_p; struct vng_info *vgo_vgi; TAILQ_ENTRY(vng_owner) vgo_link; }; static struct vng_info * new_vgi(unsigned attrs, guardid_t guard) { struct vng_info *vgi = kalloc_type(struct vng_info, Z_WAITOK); vgi->vgi_guard = guard; vgi->vgi_attrs = attrs; TAILQ_INIT(&vgi->vgi_owners); return vgi; } static struct vng_owner * new_vgo(proc_t p) { struct vng_owner *vgo = kalloc_type(struct vng_owner, Z_WAITOK | Z_ZERO); vgo->vgo_p = p; return vgo; } static void vgi_add_vgo(struct vng_info *vgi, struct vng_owner *vgo) { vgo->vgo_vgi = vgi; TAILQ_INSERT_HEAD(&vgi->vgi_owners, vgo, vgo_link); } static boolean_t vgi_remove_vgo(struct vng_info *vgi, struct vng_owner *vgo) { TAILQ_REMOVE(&vgi->vgi_owners, vgo, vgo_link); vgo->vgo_vgi = NULL; return TAILQ_EMPTY(&vgi->vgi_owners); } static void free_vgi(struct vng_info *vgi) { assert(TAILQ_EMPTY(&vgi->vgi_owners)); #if DEVELOP || DEBUG memset(vgi, 0xbeadfade, sizeof(*vgi)); #endif kfree_type(struct vng_info, vgi); } static void free_vgo(struct vng_owner *vgo) { #if DEVELOP || DEBUG memset(vgo, 0x2bedf1d0, sizeof(*vgo)); #endif kfree_type(struct vng_owner, vgo); } static int label_slot; static LCK_GRP_DECLARE(llock_grp, VNG_POLICY_NAME); static LCK_RW_DECLARE(llock, &llock_grp); static __inline void * vng_lbl_get(struct label *label) { lck_rw_assert(&llock, LCK_RW_ASSERT_HELD); void *data; if (NULL == label) { data = NULL; } else { data = (void *)mac_label_get(label, label_slot); } return data; } static __inline struct vng_info * vng_lbl_get_withattr(struct label *label, unsigned attrmask) { struct vng_info *vgi = vng_lbl_get(label); assert(NULL == vgi || (vgi->vgi_attrs & ~VNG_ALL) == 0); if (NULL != vgi && 0 == (vgi->vgi_attrs & attrmask)) { vgi = NULL; } return vgi; } static __inline void vng_lbl_set(struct label *label, void *data) { assert(NULL != label); lck_rw_assert(&llock, LCK_RW_ASSERT_EXCLUSIVE); mac_label_set(label, label_slot, (intptr_t)data); } static int vnguard_sysc_getguardattr(proc_t p, struct vnguard_getattr *vga) { const int fd = vga->vga_fd; if (0 == vga->vga_guard) { return EINVAL; } int error; struct fileproc *fp; if (0 != (error = fp_lookup(p, fd, &fp, 0))) { return error; } do { struct fileglob *fg = fp->fp_glob; if (FILEGLOB_DTYPE(fg) != DTYPE_VNODE) { error = EBADF; break; } struct vnode *vp = fg_get_data(fg); if (!vnode_isreg(vp) || NULL == vp->v_mount) { error = EBADF; break; } error = vnode_getwithref(vp); if (0 != error) { break; } vga->vga_attrs = 0; lck_rw_lock_shared(&llock); if (NULL != mac_vnode_label(vp)) { const struct vng_info *vgi = vng_lbl_get(mac_vnode_label(vp)); if (NULL != vgi) { if (vgi->vgi_guard != vga->vga_guard) { error = EPERM; } else { vga->vga_attrs = vgi->vgi_attrs; } } } lck_rw_unlock_shared(&llock); vnode_put(vp); } while (0); fp_drop(p, fd, fp, 0); return error; } static int vnguard_sysc_setguard(proc_t p, const struct vnguard_set *vns) { const int fd = vns->vns_fd; if ((vns->vns_attrs & ~VNG_ALL) != 0 || 0 == vns->vns_attrs || 0 == vns->vns_guard) { return EINVAL; } int error; struct fileproc *fp; if (0 != (error = fp_lookup(p, fd, &fp, 0))) { return error; } do { /* * To avoid trivial DoS, insist that the caller * has read/write access to the file. */ if ((FREAD | FWRITE) != (fp->f_flag & (FREAD | FWRITE))) { error = EBADF; break; } struct fileglob *fg = fp->fp_glob; if (FILEGLOB_DTYPE(fg) != DTYPE_VNODE) { error = EBADF; break; } /* * Confinement means there's only one fd pointing at * this fileglob, and will always be associated with * this pid. */ if (0 == (FG_CONFINED & fg->fg_lflags)) { error = EBADF; break; } struct vnode *vp = fg_get_data(fg); if (!vnode_isreg(vp) || NULL == vp->v_mount) { error = EBADF; break; } error = vnode_getwithref(vp); if (0 != error) { break; } /* Ensure the target vnode -has- a label */ struct vfs_context *ctx = vfs_context_current(); mac_vnode_label_update(ctx, vp, NULL); struct vng_info *nvgi = new_vgi(vns->vns_attrs, vns->vns_guard); struct vng_owner *nvgo = new_vgo(p); lck_rw_lock_exclusive(&llock); do { /* * A vnode guard is associated with one or more * fileglobs in one or more processes. */ struct vng_info *vgi = vng_lbl_get(mac_vnode_label(vp)); struct vng_owner *vgo = fg->fg_vgo; if (NULL == vgi) { /* vnode unguarded, add the first guard */ if (NULL != vgo) { panic("vnguard label on fileglob " "but not vnode"); } /* add a kusecount so we can unlabel later */ error = vnode_ref_ext(vp, O_EVTONLY, 0); if (0 == error) { /* add the guard */ vgi_add_vgo(nvgi, nvgo); vng_lbl_set(mac_vnode_label(vp), nvgi); fg->fg_vgo = nvgo; } else { free_vgo(nvgo); free_vgi(nvgi); } } else { /* vnode already guarded */ free_vgi(nvgi); if (vgi->vgi_guard != vns->vns_guard) { error = EPERM; /* guard mismatch */ } else if (vgi->vgi_attrs != vns->vns_attrs) { /* * Temporary workaround for older versions of SQLite: * allow newer guard attributes to be silently cleared. */ const unsigned mask = ~(VNG_WRITE_OTHER | VNG_TRUNC_OTHER); if ((vgi->vgi_attrs & mask) == (vns->vns_attrs & mask)) { vgi->vgi_attrs &= vns->vns_attrs; } else { error = EACCES; /* attr mismatch */ } } if (0 != error || NULL != vgo) { free_vgo(nvgo); break; } /* record shared ownership */ vgi_add_vgo(vgi, nvgo); fg->fg_vgo = nvgo; } } while (0); lck_rw_unlock_exclusive(&llock); vnode_put(vp); } while (0); fp_drop(p, fd, fp, 0); return error; } static int vng_policy_syscall(proc_t p, int cmd, user_addr_t arg) { int error = EINVAL; switch (cmd) { case VNG_SYSC_PING: if (0 == arg) { error = 0; } break; case VNG_SYSC_SET_GUARD: { struct vnguard_set vns; error = copyin(arg, (void *)&vns, sizeof(vns)); if (error) { break; } error = vnguard_sysc_setguard(p, &vns); break; } case VNG_SYSC_GET_ATTR: { struct vnguard_getattr vga; error = copyin(arg, (void *)&vga, sizeof(vga)); if (error) { break; } error = vnguard_sysc_getguardattr(p, &vga); if (error) { break; } error = copyout((void *)&vga, arg, sizeof(vga)); break; } default: break; } return error; } /* * This is called just before the fileglob disappears in fg_free(). * Take the exclusive lock: no other thread can add or remove * a vng_info to any vnode in the system. */ void vng_file_label_destroy(struct fileglob *fg) { struct vng_owner *lvgo = fg->fg_vgo; struct vng_info *vgi = NULL; if (lvgo) { lck_rw_lock_exclusive(&llock); fg->fg_vgo = NULL; vgi = lvgo->vgo_vgi; assert(vgi); if (vgi_remove_vgo(vgi, lvgo)) { /* that was the last reference */ vgi->vgi_attrs = 0; if (DTYPE_VNODE == FILEGLOB_DTYPE(fg)) { struct vnode *vp = fg_get_data(fg); int error = vnode_getwithref(vp); if (0 == error) { vng_lbl_set(mac_vnode_label(vp), 0); lck_rw_unlock_exclusive(&llock); /* may trigger VNOP_INACTIVE */ vnode_rele_ext(vp, O_EVTONLY, 0); vnode_put(vp); free_vgi(vgi); free_vgo(lvgo); return; } } } lck_rw_unlock_exclusive(&llock); free_vgo(lvgo); } } static os_reason_t vng_reason_from_pathname(const char *path, uint32_t pathlen) { os_reason_t r = os_reason_create(OS_REASON_GUARD, GUARD_REASON_VNODE); if (NULL == r) { return r; } /* * If the pathname is very long, just keep the trailing part */ const uint32_t pathmax = 3 * EXIT_REASON_USER_DESC_MAX_LEN / 4; if (pathlen > pathmax) { path += (pathlen - pathmax); pathlen = pathmax; } uint32_t rsize = kcdata_estimate_required_buffer_size(1, pathlen); if (0 == os_reason_alloc_buffer(r, rsize)) { struct kcdata_descriptor *kcd = &r->osr_kcd_descriptor; mach_vm_address_t addr; if (kcdata_get_memory_addr(kcd, EXIT_REASON_USER_DESC, pathlen, &addr) == KERN_SUCCESS) { kcdata_memcpy(kcd, addr, path, pathlen); return r; } } os_reason_free(r); return OS_REASON_NULL; } static int vng_policy_flags; /* * Note: if an EXC_GUARD is generated, llock will be dropped and * subsequently reacquired by this routine. Data derived from * any label in the caller should be regenerated. */ static int vng_guard_violation(const struct vng_info *vgi, unsigned opval, vnode_t vp) { int retval = 0; if (vng_policy_flags & kVNG_POLICY_EPERM) { /* deny the operation */ retval = EPERM; } if (vng_policy_flags & (kVNG_POLICY_LOGMSG | kVNG_POLICY_UPRINTMSG)) { /* log a message */ const char *op; switch (opval) { case VNG_RENAME_FROM: op = "rename-from"; break; case VNG_RENAME_TO: op = "rename-to"; break; case VNG_UNLINK: op = "unlink"; break; case VNG_LINK: op = "link"; break; case VNG_EXCHDATA: op = "exchdata"; break; case VNG_WRITE_OTHER: op = "write"; break; case VNG_TRUNC_OTHER: op = "truncate"; break; default: op = "(unknown)"; break; } const char *nm = vnode_getname(vp); proc_t p = current_proc(); const struct vng_owner *vgo; TAILQ_FOREACH(vgo, &vgi->vgi_owners, vgo_link) { const char fmt[] = "%s[%d]: %s%s: '%s' guarded by %s[%d] (0x%llx)\n"; if (vng_policy_flags & kVNG_POLICY_LOGMSG) { printf(fmt, proc_name_address(p), proc_pid(p), op, 0 != retval ? " denied" : "", NULL != nm ? nm : "(unknown)", proc_name_address(vgo->vgo_p), proc_pid(vgo->vgo_p), vgi->vgi_guard); } if (vng_policy_flags & kVNG_POLICY_UPRINTMSG) { uprintf(fmt, proc_name_address(p), proc_pid(p), op, 0 != retval ? " denied" : "", NULL != nm ? nm : "(unknown)", proc_name_address(vgo->vgo_p), proc_pid(vgo->vgo_p), vgi->vgi_guard); } } if (NULL != nm) { vnode_putname(nm); } } if (vng_policy_flags & (kVNG_POLICY_EXC | kVNG_POLICY_EXC_CORPSE | kVNG_POLICY_EXC_CORE)) { /* EXC_GUARD exception */ const struct vng_owner *vgo = TAILQ_FIRST(&vgi->vgi_owners); pid_t pid = vgo ? proc_pid(vgo->vgo_p) : 0; mach_exception_code_t code; mach_exception_subcode_t subcode; code = 0; EXC_GUARD_ENCODE_TYPE(code, GUARD_TYPE_VN); EXC_GUARD_ENCODE_FLAVOR(code, opval); EXC_GUARD_ENCODE_TARGET(code, pid); subcode = vgi->vgi_guard; lck_rw_unlock_shared(&llock); if (vng_policy_flags & (kVNG_POLICY_EXC_CORPSE | kVNG_POLICY_EXC_CORE)) { char *path; int len = MAXPATHLEN; path = zalloc_flags(ZV_NAMEI, Z_WAITOK | Z_NOFAIL); os_reason_t r = NULL; vn_getpath(vp, path, &len); if (*path && len) { r = vng_reason_from_pathname(path, len); } const bool backtrace_only = !(vng_policy_flags & kVNG_POLICY_EXC_CORE); /* not fatal */ task_violated_guard(code, subcode, r, backtrace_only); if (NULL != r) { os_reason_free(r); } zfree(ZV_NAMEI, path); } else { thread_t t = current_thread(); thread_guard_violation(t, code, subcode, TRUE); } lck_rw_lock_shared(&llock); } else if (vng_policy_flags & kVNG_POLICY_SIGKILL) { proc_t p = current_proc(); psignal(p, SIGKILL); } return retval; } #endif /* CONFIG_MACF && CONFIG_VNGUARD */ /* KPI used by APFS Kext to generate fault when someone tries to change permissions on some files */ void generate_file_permissions_guard_exception(unsigned int code_target, int64_t subcode) { mach_exception_code_t code = 0; EXC_GUARD_ENCODE_TYPE(code, GUARD_TYPE_VN); EXC_GUARD_ENCODE_FLAVOR(code, VNG_PERMISSIONS); EXC_GUARD_ENCODE_TARGET(code, code_target); thread_t t = current_thread(); thread_guard_violation(t, code, subcode, FALSE); } /* * A vnode guard was tripped on this thread. * * (Invoked before returning to userland from the syscall handler.) */ void vn_guard_ast(thread_t __unused t, mach_exception_data_type_t code, mach_exception_data_type_t subcode) { unsigned int flavor = EXC_GUARD_DECODE_GUARD_FLAVOR(code); const bool fatal = (flavor == VNG_PERMISSIONS) ? false : true; /* * All the VN guard except VNG_PERMISSIONS are experimental and * are only turned on when CONFIG_VNGUARD is set. */ bool early_bailout = (flavor == VNG_PERMISSIONS) ? false : true; #if CONFIG_MACF && CONFIG_VNGUARD early_bailout = false; #endif /* CONFIG_MACF && CONFIG_VNGUARD */ if (early_bailout) { return; } /* * Deliver exception Synchronously if anyone has registered for Sync EXC_GUARD. * If Sync exception delivery succeeds, then kill process if the exception * is fatal. * * If Sync exception delivery fails, then deliver the exception via EXC_CORPSE_NOTIFY, * the exception would have a corpse for a FATAL one and a corpse-fork for a NON-Fatal * exception. */ int flags = PX_DEBUG_NO_HONOR; exception_info_t info = { .os_reason = OS_REASON_GUARD, .exception_type = EXC_GUARD, .mx_code = code, .mx_subcode = subcode, }; if (task_exception_notify(EXC_GUARD, code, subcode, fatal) == KERN_SUCCESS) { if (fatal) { flags |= PX_PSIGNAL; } } else { if (!fatal) { task_violated_guard(code, subcode, NULL, FALSE); /* not fatal */ } } if (fatal) { exit_with_mach_exception(current_proc(), info, flags); } } #if CONFIG_MACF && CONFIG_VNGUARD /* * vnode callbacks */ static int vng_vnode_check_rename(kauth_cred_t __unused cred, struct vnode *__unused dvp, struct label *__unused dlabel, struct vnode *vp, struct label *label, struct componentname *__unused cnp, struct vnode *__unused tdvp, struct label *__unused tdlabel, struct vnode *tvp, struct label *tlabel, struct componentname *__unused tcnp) { int error = 0; if (NULL != label || NULL != tlabel) { lck_rw_lock_shared(&llock); const struct vng_info *vgi = vng_lbl_get_withattr(label, VNG_RENAME_FROM); if (NULL != vgi) { error = vng_guard_violation(vgi, VNG_RENAME_FROM, vp); } if (0 == error) { vgi = vng_lbl_get_withattr(tlabel, VNG_RENAME_TO); if (NULL != vgi) { error = vng_guard_violation(vgi, VNG_RENAME_TO, tvp); } } lck_rw_unlock_shared(&llock); } return error; } static int vng_vnode_check_link(kauth_cred_t __unused cred, struct vnode *__unused dvp, struct label *__unused dlabel, struct vnode *vp, struct label *label, struct componentname *__unused cnp) { int error = 0; if (NULL != label) { lck_rw_lock_shared(&llock); const struct vng_info *vgi = vng_lbl_get_withattr(label, VNG_LINK); if (vgi) { error = vng_guard_violation(vgi, VNG_LINK, vp); } lck_rw_unlock_shared(&llock); } return error; } static int vng_vnode_check_unlink(kauth_cred_t __unused cred, struct vnode *__unused dvp, struct label *__unused dlabel, struct vnode *vp, struct label *label, struct componentname *__unused cnp) { int error = 0; if (NULL != label) { lck_rw_lock_shared(&llock); const struct vng_info *vgi = vng_lbl_get_withattr(label, VNG_UNLINK); if (vgi) { error = vng_guard_violation(vgi, VNG_UNLINK, vp); } lck_rw_unlock_shared(&llock); } return error; } /* * Only check violations for writes performed by "other processes" */ static int vng_vnode_check_write(kauth_cred_t __unused actv_cred, kauth_cred_t __unused file_cred, struct vnode *vp, struct label *label) { int error = 0; if (NULL != label) { lck_rw_lock_shared(&llock); const struct vng_info *vgi = vng_lbl_get_withattr(label, VNG_WRITE_OTHER); if (vgi) { proc_t p = current_proc(); const struct vng_owner *vgo; TAILQ_FOREACH(vgo, &vgi->vgi_owners, vgo_link) { if (vgo->vgo_p == p) { goto done; } } error = vng_guard_violation(vgi, VNG_WRITE_OTHER, vp); } done: lck_rw_unlock_shared(&llock); } return error; } /* * Only check violations for truncates performed by "other processes" */ static int vng_vnode_check_truncate(kauth_cred_t __unused actv_cred, kauth_cred_t __unused file_cred, struct vnode *vp, struct label *label) { int error = 0; if (NULL != label) { lck_rw_lock_shared(&llock); const struct vng_info *vgi = vng_lbl_get_withattr(label, VNG_TRUNC_OTHER); if (vgi) { proc_t p = current_proc(); const struct vng_owner *vgo; TAILQ_FOREACH(vgo, &vgi->vgi_owners, vgo_link) { if (vgo->vgo_p == p) { goto done; } } error = vng_guard_violation(vgi, VNG_TRUNC_OTHER, vp); } done: lck_rw_unlock_shared(&llock); } return error; } static int vng_vnode_check_exchangedata(kauth_cred_t __unused cred, struct vnode *fvp, struct label *flabel, struct vnode *svp, struct label *slabel) { int error = 0; if (NULL != flabel || NULL != slabel) { lck_rw_lock_shared(&llock); const struct vng_info *vgi = vng_lbl_get_withattr(flabel, VNG_EXCHDATA); if (NULL != vgi) { error = vng_guard_violation(vgi, VNG_EXCHDATA, fvp); } if (0 == error) { vgi = vng_lbl_get_withattr(slabel, VNG_EXCHDATA); if (NULL != vgi) { error = vng_guard_violation(vgi, VNG_EXCHDATA, svp); } } lck_rw_unlock_shared(&llock); } return error; } /* Intercept open-time truncations (by "other") of a guarded vnode */ static int vng_vnode_check_open(kauth_cred_t cred, struct vnode *vp, struct label *label, int acc_mode) { if (0 == (acc_mode & O_TRUNC)) { return 0; } return vng_vnode_check_truncate(cred, NULL, vp, label); } /* * Configuration gorp */ SECURITY_READ_ONLY_EARLY(static struct mac_policy_ops) vng_policy_ops = { .mpo_vnode_check_link = vng_vnode_check_link, .mpo_vnode_check_unlink = vng_vnode_check_unlink, .mpo_vnode_check_rename = vng_vnode_check_rename, .mpo_vnode_check_write = vng_vnode_check_write, .mpo_vnode_check_truncate = vng_vnode_check_truncate, .mpo_vnode_check_exchangedata = vng_vnode_check_exchangedata, .mpo_vnode_check_open = vng_vnode_check_open, .mpo_policy_syscall = vng_policy_syscall, }; static const char *vng_labelnames[] = { "vnguard", }; #define ACOUNT(arr) ((unsigned)(sizeof (arr) / sizeof (arr[0]))) SECURITY_READ_ONLY_LATE(static struct mac_policy_conf) vng_policy_conf = { .mpc_name = VNG_POLICY_NAME, .mpc_fullname = "Guarded vnode policy", .mpc_field_off = &label_slot, .mpc_labelnames = vng_labelnames, .mpc_labelname_count = ACOUNT(vng_labelnames), .mpc_ops = &vng_policy_ops, .mpc_loadtime_flags = 0, .mpc_runtime_flags = 0 }; SECURITY_READ_ONLY_LATE(static mac_policy_handle_t) vng_policy_handle; void vnguard_policy_init(void) { if (0 == PE_i_can_has_debugger(NULL)) { return; } vng_policy_flags = kVNG_POLICY_LOGMSG | kVNG_POLICY_EXC_CORPSE | kVNG_POLICY_UPRINTMSG; PE_parse_boot_argn("vnguard", &vng_policy_flags, sizeof(vng_policy_flags)); if (vng_policy_flags) { mac_policy_register(&vng_policy_conf, &vng_policy_handle, NULL); } } #if DEBUG || DEVELOPMENT #include <sys/sysctl.h> SYSCTL_DECL(_kern_vnguard); SYSCTL_NODE(_kern, OID_AUTO, vnguard, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "vnguard"); SYSCTL_INT(_kern_vnguard, OID_AUTO, flags, CTLFLAG_RW | CTLFLAG_LOCKED, &vng_policy_flags, 0, "vnguard policy flags"); #endif #endif /* CONFIG_MACF && CONFIG_VNGUARD */ |