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 | /* * Copyright (c) 2005-2006 Apple Computer, 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@ */ /* * APPLE NOTE: This file is compiled even if dtrace is unconfig'd. A symbol * from this file (_dtrace_register_anon_DOF) always needs to be exported for * an external kext to link against. */ #if CONFIG_DTRACE #define MACH__POSIX_C_SOURCE_PRIVATE 1 /* pulls in suitable savearea from mach/ppc/thread_status.h */ #include <kern/thread.h> #include <mach/thread_status.h> #include <stdarg.h> #include <string.h> #include <sys/malloc.h> #include <sys/time.h> #include <sys/proc.h> #include <sys/proc_internal.h> #include <sys/kauth.h> #include <sys/user.h> #include <sys/systm.h> #include <sys/dtrace.h> #include <sys/dtrace_impl.h> #include <libkern/OSAtomic.h> #include <kern/thread_call.h> #include <kern/task.h> #include <kern/sched_prim.h> #include <kern/queue.h> #include <miscfs/devfs/devfs.h> #include <kern/kalloc.h> #include <mach/vm_param.h> #include <mach/mach_vm.h> #include <mach/task.h> #include <vm/pmap.h> #include <vm/vm_map.h> /* All the bits we care about are guarded by MACH_KERNEL_PRIVATE :-( */ /* * pid/proc */ #define proc_t struct proc /* Not called from probe context */ proc_t * sprlock(pid_t pid) { proc_t* p; if ((p = proc_find(pid)) == PROC_NULL) { return PROC_NULL; } task_suspend(p->task); proc_lock(p); lck_mtx_lock(&p->p_dtrace_sprlock); return p; } /* Not called from probe context */ void sprunlock(proc_t *p) { if (p != PROC_NULL) { lck_mtx_unlock(&p->p_dtrace_sprlock); proc_unlock(p); task_resume(p->task); proc_rele(p); } } /* * uread/uwrite */ // These are not exported from vm_map.h. extern kern_return_t vm_map_read_user(vm_map_t map, vm_map_address_t src_addr, void *dst_p, vm_size_t size); extern kern_return_t vm_map_write_user(vm_map_t map, void *src_p, vm_map_address_t dst_addr, vm_size_t size); /* Not called from probe context */ int uread(proc_t *p, void *buf, user_size_t len, user_addr_t a) { kern_return_t ret; ASSERT(p != PROC_NULL); ASSERT(p->task != NULL); task_t task = p->task; /* * Grab a reference to the task vm_map_t to make sure * the map isn't pulled out from under us. * * Because the proc_lock is not held at all times on all code * paths leading here, it is possible for the proc to have * exited. If the map is null, fail. */ vm_map_t map = get_task_map_reference(task); if (map) { ret = vm_map_read_user( map, (vm_map_address_t)a, buf, (vm_size_t)len); vm_map_deallocate(map); } else ret = KERN_TERMINATED; return (int)ret; } /* Not called from probe context */ int uwrite(proc_t *p, void *buf, user_size_t len, user_addr_t a) { kern_return_t ret; ASSERT(p != NULL); ASSERT(p->task != NULL); task_t task = p->task; /* * Grab a reference to the task vm_map_t to make sure * the map isn't pulled out from under us. * * Because the proc_lock is not held at all times on all code * paths leading here, it is possible for the proc to have * exited. If the map is null, fail. */ vm_map_t map = get_task_map_reference(task); if (map) { /* Find the memory permissions. */ uint32_t nestingDepth=999999; vm_region_submap_short_info_data_64_t info; mach_msg_type_number_t count = VM_REGION_SUBMAP_SHORT_INFO_COUNT_64; mach_vm_address_t address = (mach_vm_address_t)a; mach_vm_size_t sizeOfRegion = (mach_vm_size_t)len; ret = mach_vm_region_recurse(map, &address, &sizeOfRegion, &nestingDepth, (vm_region_recurse_info_t)&info, &count); if (ret != KERN_SUCCESS) goto done; vm_prot_t reprotect; if (!(info.protection & VM_PROT_WRITE)) { /* Save the original protection values for restoration later */ reprotect = info.protection; if (info.max_protection & VM_PROT_WRITE) { /* The memory is not currently writable, but can be made writable. */ ret = mach_vm_protect (map, (mach_vm_offset_t)a, (mach_vm_size_t)len, 0, reprotect | VM_PROT_WRITE); } else { /* * The memory is not currently writable, and cannot be made writable. We need to COW this memory. * * Strange, we can't just say "reprotect | VM_PROT_COPY", that fails. */ ret = mach_vm_protect (map, (mach_vm_offset_t)a, (mach_vm_size_t)len, 0, VM_PROT_COPY | VM_PROT_READ | VM_PROT_WRITE); } if (ret != KERN_SUCCESS) goto done; } else { /* The memory was already writable. */ reprotect = VM_PROT_NONE; } ret = vm_map_write_user( map, buf, (vm_map_address_t)a, (vm_size_t)len); if (ret != KERN_SUCCESS) goto done; if (reprotect != VM_PROT_NONE) { ASSERT(reprotect & VM_PROT_EXECUTE); ret = mach_vm_protect (map, (mach_vm_offset_t)a, (mach_vm_size_t)len, 0, reprotect); } done: vm_map_deallocate(map); } else ret = KERN_TERMINATED; return (int)ret; } /* * cpuvar */ lck_mtx_t cpu_lock; lck_mtx_t mod_lock; cpu_t *cpu_list; cpu_core_t *cpu_core; /* XXX TLB lockdown? */ /* * cred_t */ /* * dtrace_CRED() can be called from probe context. We cannot simply call kauth_cred_get() since * that function may try to resolve a lazy credential binding, which entails taking the proc_lock. */ cred_t * dtrace_CRED(void) { struct uthread *uthread = get_bsdthread_info(current_thread()); if (uthread == NULL) return NULL; else return uthread->uu_ucred; /* May return NOCRED which is defined to be 0 */ } #define HAS_ALLPRIVS(cr) priv_isfullset(&CR_OEPRIV(cr)) #define HAS_PRIVILEGE(cr, pr) ((pr) == PRIV_ALL ? \ HAS_ALLPRIVS(cr) : \ PRIV_ISASSERT(&CR_OEPRIV(cr), pr)) int PRIV_POLICY_CHOICE(void* cred, int priv, int all) { #pragma unused(priv, all) return kauth_cred_issuser(cred); /* XXX TODO: How is this different from PRIV_POLICY_ONLY? */ } int PRIV_POLICY_ONLY(void *cr, int priv, int boolean) { #pragma unused(priv, boolean) return kauth_cred_issuser(cr); /* XXX TODO: HAS_PRIVILEGE(cr, priv); */ } gid_t crgetgid(const cred_t *cr) { return cr->cr_groups[0]; } uid_t crgetuid(const cred_t *cr) { return cr->cr_uid; } /* * "cyclic" */ /* osfmk/kern/timer_call.h */ typedef void *call_entry_param_t; typedef void (*call_entry_func_t)( call_entry_param_t param0, call_entry_param_t param1); typedef struct call_entry { queue_chain_t q_link; call_entry_func_t func; call_entry_param_t param0; call_entry_param_t param1; uint64_t deadline; enum { IDLE, PENDING, DELAYED } state; } call_entry_data_t; typedef struct call_entry *timer_call_t; typedef void *timer_call_param_t; typedef void (*timer_call_func_t)( timer_call_param_t param0, timer_call_param_t param1); extern void timer_call_setup( timer_call_t call, timer_call_func_t func, timer_call_param_t param0); extern boolean_t timer_call_enter1( timer_call_t call, timer_call_param_t param1, uint64_t deadline); extern boolean_t timer_call_cancel( timer_call_t call); typedef struct wrap_timer_call { cyc_handler_t hdlr; cyc_time_t when; uint64_t deadline; struct call_entry call; } wrap_timer_call_t; #define WAKEUP_REAPER 0x7FFFFFFFFFFFFFFFLL #define NEARLY_FOREVER 0x7FFFFFFFFFFFFFFELL static void _timer_call_apply_cyclic( void *ignore, void *vTChdl ) { #pragma unused(ignore) wrap_timer_call_t *wrapTC = (wrap_timer_call_t *)vTChdl; (*(wrapTC->hdlr.cyh_func))( wrapTC->hdlr.cyh_arg ); clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, mach_absolute_time(), &(wrapTC->deadline) ); timer_call_enter1( &(wrapTC->call), (void *)wrapTC, wrapTC->deadline ); /* Did timer_call_remove_cyclic request a wakeup call when this timer call was re-armed? */ if (wrapTC->when.cyt_interval == WAKEUP_REAPER) thread_wakeup((event_t)wrapTC); } static cyclic_id_t timer_call_add_cyclic(wrap_timer_call_t *wrapTC, cyc_handler_t *handler, cyc_time_t *when) { uint64_t now; timer_call_setup( &(wrapTC->call), _timer_call_apply_cyclic, NULL ); wrapTC->hdlr = *handler; wrapTC->when = *when; nanoseconds_to_absolutetime( wrapTC->when.cyt_interval, (uint64_t *)&wrapTC->when.cyt_interval ); now = mach_absolute_time(); wrapTC->deadline = now; clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, now, &(wrapTC->deadline) ); timer_call_enter1( &(wrapTC->call), (void *)wrapTC, wrapTC->deadline ); return (cyclic_id_t)wrapTC; } static void timer_call_remove_cyclic(cyclic_id_t cyclic) { wrap_timer_call_t *wrapTC = (wrap_timer_call_t *)cyclic; while (!timer_call_cancel(&(wrapTC->call))) { int ret = assert_wait(wrapTC, THREAD_UNINT); ASSERT(ret == THREAD_WAITING); wrapTC->when.cyt_interval = WAKEUP_REAPER; ret = thread_block(THREAD_CONTINUE_NULL); ASSERT(ret == THREAD_AWAKENED); } } static void * timer_call_get_cyclic_arg(cyclic_id_t cyclic) { wrap_timer_call_t *wrapTC = (wrap_timer_call_t *)cyclic; return (wrapTC ? wrapTC->hdlr.cyh_arg : NULL); } cyclic_id_t cyclic_timer_add(cyc_handler_t *handler, cyc_time_t *when) { wrap_timer_call_t *wrapTC = _MALLOC(sizeof(wrap_timer_call_t), M_TEMP, M_ZERO | M_WAITOK); if (NULL == wrapTC) return CYCLIC_NONE; else return timer_call_add_cyclic( wrapTC, handler, when ); } void cyclic_timer_remove(cyclic_id_t cyclic) { ASSERT( cyclic != CYCLIC_NONE ); timer_call_remove_cyclic( cyclic ); _FREE((void *)cyclic, M_TEMP); } static void _cyclic_add_omni(cyclic_id_list_t cyc_list) { cyc_time_t cT; cyc_handler_t cH; wrap_timer_call_t *wrapTC; cyc_omni_handler_t *omni = (cyc_omni_handler_t *)cyc_list; char *t; (omni->cyo_online)(omni->cyo_arg, CPU, &cH, &cT); t = (char *)cyc_list; t += sizeof(cyc_omni_handler_t); cyc_list = (cyclic_id_list_t)t; t += sizeof(cyclic_id_t)*NCPU; t += (sizeof(wrap_timer_call_t))*cpu_number(); wrapTC = (wrap_timer_call_t *)t; cyc_list[cpu_number()] = timer_call_add_cyclic(wrapTC, &cH, &cT); } cyclic_id_list_t cyclic_add_omni(cyc_omni_handler_t *omni) { cyclic_id_list_t cyc_list = _MALLOC( (sizeof(wrap_timer_call_t))*NCPU + sizeof(cyclic_id_t)*NCPU + sizeof(cyc_omni_handler_t), M_TEMP, M_ZERO | M_WAITOK); if (NULL == cyc_list) return (cyclic_id_list_t)CYCLIC_NONE; *(cyc_omni_handler_t *)cyc_list = *omni; dtrace_xcall(DTRACE_CPUALL, (dtrace_xcall_t)_cyclic_add_omni, (void *)cyc_list); return cyc_list; } static void _cyclic_remove_omni(cyclic_id_list_t cyc_list) { cyc_omni_handler_t *omni = (cyc_omni_handler_t *)cyc_list; void *oarg; cyclic_id_t cid; char *t; t = (char *)cyc_list; t += sizeof(cyc_omni_handler_t); cyc_list = (cyclic_id_list_t)t; cid = cyc_list[cpu_number()]; oarg = timer_call_get_cyclic_arg(cid); timer_call_remove_cyclic( cid ); (omni->cyo_offline)(omni->cyo_arg, CPU, oarg); } void cyclic_remove_omni(cyclic_id_list_t cyc_list) { ASSERT( cyc_list != (cyclic_id_list_t)CYCLIC_NONE ); dtrace_xcall(DTRACE_CPUALL, (dtrace_xcall_t)_cyclic_remove_omni, (void *)cyc_list); _FREE(cyc_list, M_TEMP); } typedef struct wrap_thread_call { thread_call_t TChdl; cyc_handler_t hdlr; cyc_time_t when; uint64_t deadline; } wrap_thread_call_t; /* * _cyclic_apply will run on some thread under kernel_task. That's OK for the * cleaner and the deadman, but too distant in time and place for the profile provider. */ static void _cyclic_apply( void *ignore, void *vTChdl ) { #pragma unused(ignore) wrap_thread_call_t *wrapTC = (wrap_thread_call_t *)vTChdl; (*(wrapTC->hdlr.cyh_func))( wrapTC->hdlr.cyh_arg ); clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, mach_absolute_time(), &(wrapTC->deadline) ); (void)thread_call_enter1_delayed( wrapTC->TChdl, (void *)wrapTC, wrapTC->deadline ); /* Did cyclic_remove request a wakeup call when this thread call was re-armed? */ if (wrapTC->when.cyt_interval == WAKEUP_REAPER) thread_wakeup((event_t)wrapTC); } cyclic_id_t cyclic_add(cyc_handler_t *handler, cyc_time_t *when) { uint64_t now; wrap_thread_call_t *wrapTC = _MALLOC(sizeof(wrap_thread_call_t), M_TEMP, M_ZERO | M_WAITOK); if (NULL == wrapTC) return CYCLIC_NONE; wrapTC->TChdl = thread_call_allocate( _cyclic_apply, NULL ); wrapTC->hdlr = *handler; wrapTC->when = *when; ASSERT(when->cyt_when == 0); ASSERT(when->cyt_interval < WAKEUP_REAPER); nanoseconds_to_absolutetime(wrapTC->when.cyt_interval, (uint64_t *)&wrapTC->when.cyt_interval); now = mach_absolute_time(); wrapTC->deadline = now; clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, now, &(wrapTC->deadline) ); (void)thread_call_enter1_delayed( wrapTC->TChdl, (void *)wrapTC, wrapTC->deadline ); return (cyclic_id_t)wrapTC; } static void noop_cyh_func(void * ignore) { #pragma unused(ignore) } void cyclic_remove(cyclic_id_t cyclic) { wrap_thread_call_t *wrapTC = (wrap_thread_call_t *)cyclic; ASSERT(cyclic != CYCLIC_NONE); while (!thread_call_cancel(wrapTC->TChdl)) { int ret = assert_wait(wrapTC, THREAD_UNINT); ASSERT(ret == THREAD_WAITING); wrapTC->when.cyt_interval = WAKEUP_REAPER; ret = thread_block(THREAD_CONTINUE_NULL); ASSERT(ret == THREAD_AWAKENED); } if (thread_call_free(wrapTC->TChdl)) _FREE(wrapTC, M_TEMP); else { /* Gut this cyclic and move on ... */ wrapTC->hdlr.cyh_func = noop_cyh_func; wrapTC->when.cyt_interval = NEARLY_FOREVER; } } /* * timeout / untimeout (converted to dtrace_timeout / dtrace_untimeout due to name collision) */ thread_call_t dtrace_timeout(void (*func)(void *, void *), void* arg, uint64_t nanos) { #pragma unused(arg) thread_call_t call = thread_call_allocate(func, NULL); nanoseconds_to_absolutetime(nanos, &nanos); /* * This method does not use clock_deadline_for_periodic_event() because it is a one-shot, * and clock drift on later invocations is not a worry. */ uint64_t deadline = mach_absolute_time() + nanos; thread_call_enter_delayed(call, deadline); return call; } /* * ddi */ void ddi_report_dev(dev_info_t *devi) { #pragma unused(devi) } #define NSOFT_STATES 32 /* XXX No more than 32 clients at a time, please. */ static void *soft[NSOFT_STATES]; int ddi_soft_state_init(void **state_p, size_t size, size_t n_items) { #pragma unused(n_items) int i; for (i = 0; i < NSOFT_STATES; ++i) soft[i] = _MALLOC(size, M_TEMP, M_ZERO | M_WAITOK); *(size_t *)state_p = size; return 0; } int ddi_soft_state_zalloc(void *state, int item) { #pragma unused(state) if (item < NSOFT_STATES) return DDI_SUCCESS; else return DDI_FAILURE; } void * ddi_get_soft_state(void *state, int item) { #pragma unused(state) ASSERT(item < NSOFT_STATES); return soft[item]; } int ddi_soft_state_free(void *state, int item) { ASSERT(item < NSOFT_STATES); bzero( soft[item], (size_t)state ); return DDI_SUCCESS; } void ddi_soft_state_fini(void **state_p) { #pragma unused(state_p) int i; for (i = 0; i < NSOFT_STATES; ++i) _FREE( soft[i], M_TEMP ); } static unsigned int gRegisteredProps = 0; static struct { char name[32]; /* enough for "dof-data-" + digits */ int *data; uint_t nelements; } gPropTable[16]; kern_return_t _dtrace_register_anon_DOF(char *, uchar_t *, uint_t); kern_return_t _dtrace_register_anon_DOF(char *name, uchar_t *data, uint_t nelements) { if (gRegisteredProps < sizeof(gPropTable)/sizeof(gPropTable[0])) { int *p = (int *)_MALLOC(nelements*sizeof(int), M_TEMP, M_WAITOK); if (NULL == p) return KERN_FAILURE; strlcpy(gPropTable[gRegisteredProps].name, name, sizeof(gPropTable[0].name)); gPropTable[gRegisteredProps].nelements = nelements; gPropTable[gRegisteredProps].data = p; while (nelements-- > 0) { *p++ = (int)(*data++); } gRegisteredProps++; return KERN_SUCCESS; } else return KERN_FAILURE; } int ddi_prop_lookup_int_array(dev_t match_dev, dev_info_t *dip, uint_t flags, char *name, int **data, uint_t *nelements) { #pragma unused(match_dev,dip,flags) unsigned int i; for (i = 0; i < gRegisteredProps; ++i) { if (0 == strncmp(name, gPropTable[i].name, sizeof(gPropTable[i].name))) { *data = gPropTable[i].data; *nelements = gPropTable[i].nelements; return DDI_SUCCESS; } } return DDI_FAILURE; } int ddi_prop_free(void *buf) { _FREE(buf, M_TEMP); return DDI_SUCCESS; } int ddi_driver_major(dev_info_t *devi) { return (int)major(devi); } int ddi_create_minor_node(dev_info_t *dip, const char *name, int spec_type, minor_t minor_num, const char *node_type, int flag) { #pragma unused(spec_type,node_type,flag) dev_t dev = makedev( (uint32_t)dip, minor_num ); if (NULL == devfs_make_node( dev, DEVFS_CHAR, UID_ROOT, GID_WHEEL, 0666, name, 0 )) return DDI_FAILURE; else return DDI_SUCCESS; } void ddi_remove_minor_node(dev_info_t *dip, char *name) { #pragma unused(dip,name) /* XXX called from dtrace_detach, so NOTREACHED for now. */ } major_t getemajor( dev_t d ) { return (major_t) major(d); } minor_t getminor ( dev_t d ) { return (minor_t) minor(d); } dev_t makedevice(major_t major, minor_t minor) { return makedev( major, minor ); } int ddi_getprop(dev_t dev, dev_info_t *dip, int flags, const char *name, int defvalue) { #pragma unused(dev, dip, flags, name) return defvalue; } /* * Kernel Debug Interface */ int kdi_dtrace_set(kdi_dtrace_set_t ignore) { #pragma unused(ignore) return 0; /* Success */ } extern void Debugger(const char*); void debug_enter(char *c) { Debugger(c); } /* * kmem */ void * dt_kmem_alloc(size_t size, int kmflag) { #pragma unused(kmflag) /* * We ignore the M_NOWAIT bit in kmflag (all of kmflag, in fact). * Requests larger than 8K with M_NOWAIT fail in kalloc_canblock. */ #if defined(DTRACE_MEMORY_ZONES) return dtrace_alloc(size); #else return kalloc(size); #endif } void * dt_kmem_zalloc(size_t size, int kmflag) { #pragma unused(kmflag) /* * We ignore the M_NOWAIT bit in kmflag (all of kmflag, in fact). * Requests larger than 8K with M_NOWAIT fail in kalloc_canblock. */ #if defined(DTRACE_MEMORY_ZONES) void* buf = dtrace_alloc(size); #else void* buf = kalloc(size); #endif if(!buf) return NULL; bzero(buf, size); return buf; } void dt_kmem_free(void *buf, size_t size) { #pragma unused(size) /* * DTrace relies on this, its doing a lot of NULL frees. * A null free causes the debug builds to panic. */ if (buf == NULL) return; ASSERT(size > 0); #if defined(DTRACE_MEMORY_ZONES) dtrace_free(buf, size); #else kfree(buf, size); #endif } /* * aligned kmem allocator * align should be a power of two */ void* dt_kmem_alloc_aligned(size_t size, size_t align, int kmflag) { void* buf; intptr_t p; void** buf_backup; buf = dt_kmem_alloc(align + sizeof(void*) + size, kmflag); if(!buf) return NULL; p = (intptr_t)buf; p += sizeof(void*); /* now we have enough room to store the backup */ p = P2ROUNDUP(p, align); /* and now we're aligned */ buf_backup = (void**)(p - sizeof(void*)); *buf_backup = buf; /* back up the address we need to free */ return (void*)p; } void* dt_kmem_zalloc_aligned(size_t size, size_t align, int kmflag) { void* buf; buf = dt_kmem_alloc_aligned(size, align, kmflag); if(!buf) return NULL; bzero(buf, size); return buf; } void dt_kmem_free_aligned(void* buf, size_t size) { #pragma unused(size) intptr_t p; void** buf_backup; p = (intptr_t)buf; p -= sizeof(void*); buf_backup = (void**)(p); dt_kmem_free(*buf_backup, size + ((char*)buf - (char*)*buf_backup)); } /* * dtrace wants to manage just a single block: dtrace_state_percpu_t * NCPU, and * doesn't specify constructor, destructor, or reclaim methods. * At present, it always zeroes the block it obtains from kmem_cache_alloc(). * We'll manage this constricted use of kmem_cache with ordinary _MALLOC and _FREE. */ kmem_cache_t * kmem_cache_create( char *name, /* descriptive name for this cache */ size_t bufsize, /* size of the objects it manages */ size_t align, /* required object alignment */ int (*constructor)(void *, void *, int), /* object constructor */ void (*destructor)(void *, void *), /* object destructor */ void (*reclaim)(void *), /* memory reclaim callback */ void *private, /* pass-thru arg for constr/destr/reclaim */ vmem_t *vmp, /* vmem source for slab allocation */ int cflags) /* cache creation flags */ { #pragma unused(name,align,constructor,destructor,reclaim,private,vmp,cflags) return (kmem_cache_t *)bufsize; /* A cookie that tracks the single object size. */ } void * kmem_cache_alloc(kmem_cache_t *cp, int kmflag) { #pragma unused(kmflag) size_t bufsize = (size_t)cp; return (void *)_MALLOC(bufsize, M_TEMP, M_WAITOK); } void kmem_cache_free(kmem_cache_t *cp, void *buf) { #pragma unused(cp) _FREE(buf, M_TEMP); } void kmem_cache_destroy(kmem_cache_t *cp) { #pragma unused(cp) } /* * taskq */ extern void thread_call_setup(thread_call_t, thread_call_func_t, thread_call_param_t); /* XXX MACH_KERNEL_PRIVATE */ static void _taskq_apply( task_func_t func, thread_call_param_t arg ) { func( (void *)arg ); } taskq_t * taskq_create(const char *name, int nthreads, pri_t pri, int minalloc, int maxalloc, uint_t flags) { #pragma unused(name,nthreads,pri,minalloc,maxalloc,flags) return (taskq_t *)thread_call_allocate( (thread_call_func_t)_taskq_apply, NULL ); } taskqid_t taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags) { #pragma unused(flags) thread_call_setup( (thread_call_t) tq, (thread_call_func_t)_taskq_apply, (thread_call_param_t)func ); thread_call_enter1( (thread_call_t) tq, (thread_call_param_t)arg ); return (taskqid_t) tq /* for lack of anything better */; } void taskq_destroy(taskq_t *tq) { thread_call_cancel( (thread_call_t) tq ); thread_call_free( (thread_call_t) tq ); } pri_t maxclsyspri; /* * vmem (Solaris "slab" allocator) used by DTrace solely to hand out resource ids */ typedef unsigned int u_daddr_t; #include "blist.h" /* By passing around blist *handles*, the underlying blist can be resized as needed. */ struct blist_hdl { blist_t blist; }; vmem_t * vmem_create(const char *name, void *base, size_t size, size_t quantum, void *ignore5, void *ignore6, vmem_t *source, size_t qcache_max, int vmflag) { #pragma unused(name,quantum,ignore5,ignore6,source,qcache_max,vmflag) blist_t bl; struct blist_hdl *p = _MALLOC(sizeof(struct blist_hdl), M_TEMP, M_WAITOK); ASSERT(quantum == 1); ASSERT(NULL == ignore5); ASSERT(NULL == ignore6); ASSERT(NULL == source); ASSERT(0 == qcache_max); ASSERT(vmflag & VMC_IDENTIFIER); size = MIN(128, size); /* Clamp to 128 initially, since the underlying data structure is pre-allocated */ p->blist = bl = blist_create( size ); blist_free(bl, 0, size); if (base) blist_alloc( bl, (daddr_t)base ); /* Chomp off initial ID(s) */ return (vmem_t *)p; } void * vmem_alloc(vmem_t *vmp, size_t size, int vmflag) { #pragma unused(vmflag) struct blist_hdl *q = (struct blist_hdl *)vmp; blist_t bl = q->blist; daddr_t p; p = blist_alloc(bl, (daddr_t)size); if ((daddr_t)-1 == p) { blist_resize(&bl, (bl->bl_blocks) << 1, 1); q->blist = bl; p = blist_alloc(bl, (daddr_t)size); if ((daddr_t)-1 == p) panic("vmem_alloc: failure after blist_resize!"); } return (void *)p; } void vmem_free(vmem_t *vmp, void *vaddr, size_t size) { struct blist_hdl *p = (struct blist_hdl *)vmp; blist_free( p->blist, (daddr_t)vaddr, (daddr_t)size ); } void vmem_destroy(vmem_t *vmp) { struct blist_hdl *p = (struct blist_hdl *)vmp; blist_destroy( p->blist ); _FREE( p, sizeof(struct blist_hdl) ); } /* * Timing */ /* * dtrace_gethrestime() provides the "walltimestamp", a value that is anchored at * January 1, 1970. Because it can be called from probe context, it must take no locks. */ hrtime_t dtrace_gethrestime(void) { uint32_t secs, nanosecs; uint64_t secs64, ns64; clock_get_calendar_nanotime_nowait(&secs, &nanosecs); secs64 = (uint64_t)secs; ns64 = (uint64_t)nanosecs; ns64 = ns64 + (secs64 * 1000000000LL); return ns64; } /* * dtrace_gethrtime() provides high-resolution timestamps with machine-dependent origin. * Hence its primary use is to specify intervals. */ hrtime_t dtrace_abs_to_nano(uint64_t elapsed) { static mach_timebase_info_data_t sTimebaseInfo = { 0, 0 }; /* * If this is the first time we've run, get the timebase. * We can use denom == 0 to indicate that sTimebaseInfo is * uninitialised because it makes no sense to have a zero * denominator in a fraction. */ if ( sTimebaseInfo.denom == 0 ) { (void) clock_timebase_info(&sTimebaseInfo); } /* * Convert to nanoseconds. * return (elapsed * (uint64_t)sTimebaseInfo.numer)/(uint64_t)sTimebaseInfo.denom; * * Provided the final result is representable in 64 bits the following maneuver will * deliver that result without intermediate overflow. */ if (sTimebaseInfo.denom == sTimebaseInfo.numer) return elapsed; else if (sTimebaseInfo.denom == 1) return elapsed * (uint64_t)sTimebaseInfo.numer; else { /* Decompose elapsed = eta32 * 2^32 + eps32: */ uint64_t eta32 = elapsed >> 32; uint64_t eps32 = elapsed & 0x00000000ffffffffLL; uint32_t numer = sTimebaseInfo.numer, denom = sTimebaseInfo.denom; /* Form product of elapsed64 (decomposed) and numer: */ uint64_t mu64 = numer * eta32; uint64_t lambda64 = numer * eps32; /* Divide the constituents by denom: */ uint64_t q32 = mu64/denom; uint64_t r32 = mu64 - (q32 * denom); /* mu64 % denom */ return (q32 << 32) + ((r32 << 32) + lambda64)/denom; } } hrtime_t dtrace_gethrtime(void) { static uint64_t start = 0; if (start == 0) start = mach_absolute_time(); return dtrace_abs_to_nano(mach_absolute_time() - start); } /* * Atomicity and synchronization */ uint32_t dtrace_cas32(uint32_t *target, uint32_t cmp, uint32_t new) { if (OSCompareAndSwap( cmp, new, (unsigned long *)target )) return cmp; else return ~cmp; /* Must return something *other* than cmp */ } void * dtrace_casptr(void *target, void *cmp, void *new) { #if defined(__LP64__) #error dtrace_casptr implementation missing for LP64 #else if (OSCompareAndSwap( (uint32_t)cmp, (uint32_t)new, (unsigned long *)target )) return cmp; else return (void *)(~(uintptr_t)cmp); /* Must return something *other* than cmp */ #endif } /* * Interrupt manipulation */ dtrace_icookie_t dtrace_interrupt_disable(void) { return (dtrace_icookie_t)ml_set_interrupts_enabled(FALSE); } void dtrace_interrupt_enable(dtrace_icookie_t reenable) { (void)ml_set_interrupts_enabled((boolean_t)reenable); } /* * MP coordination */ static void dtrace_sync_func(void) {} /* * dtrace_sync() is not called from probe context. */ void dtrace_sync(void) { dtrace_xcall(DTRACE_CPUALL, (dtrace_xcall_t)dtrace_sync_func, NULL); } /* * The dtrace_copyin/out/instr and dtrace_fuword* routines can be called from probe context. */ extern kern_return_t dtrace_copyio_preflight(addr64_t); extern kern_return_t dtrace_copyio_postflight(addr64_t); static int dtrace_copycheck(user_addr_t uaddr, uintptr_t kaddr, size_t size) { #pragma unused(kaddr) vm_offset_t recover = dtrace_set_thread_recover( current_thread(), 0 ); /* Snare any extant recovery point. */ dtrace_set_thread_recover( current_thread(), recover ); /* Put it back. We *must not* re-enter and overwrite. */ ASSERT(kaddr + size >= kaddr); if (ml_at_interrupt_context() || /* Avoid possible copyio page fault on int stack, which panics! */ 0 != recover || /* Avoid reentrancy into copyio facility. */ uaddr + size < uaddr || /* Avoid address wrap. */ KERN_FAILURE == dtrace_copyio_preflight(uaddr)) /* Machine specific setup/constraints. */ { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = uaddr; return (0); } return (1); } void dtrace_copyin(user_addr_t src, uintptr_t dst, size_t len) { if (dtrace_copycheck( src, dst, len )) { if (copyin((const user_addr_t)src, (char *)dst, (vm_size_t)len)) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = src; } dtrace_copyio_postflight(src); } } void dtrace_copyinstr(user_addr_t src, uintptr_t dst, size_t len) { size_t actual; if (dtrace_copycheck( src, dst, len )) { if (copyinstr((const user_addr_t)src, (char *)dst, (vm_size_t)len, &actual)) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = src; } dtrace_copyio_postflight(src); } } void dtrace_copyout(uintptr_t src, user_addr_t dst, size_t len) { if (dtrace_copycheck( dst, src, len )) { if (copyout((const void *)src, dst, (vm_size_t)len)) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = dst; } dtrace_copyio_postflight(dst); } } void dtrace_copyoutstr(uintptr_t src, user_addr_t dst, size_t len) { size_t actual; if (dtrace_copycheck( dst, src, len )) { if (copyoutstr((const void *)src, dst, (size_t)len, &actual)) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = dst; } dtrace_copyio_postflight(dst); } } uint8_t dtrace_fuword8(user_addr_t uaddr) { uint8_t ret = 0; DTRACE_CPUFLAG_SET(CPU_DTRACE_NOFAULT); if (dtrace_copycheck( uaddr, (uintptr_t)&ret, sizeof(ret))) { if (copyin((const user_addr_t)uaddr, (char *)&ret, sizeof(ret))) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = uaddr; } dtrace_copyio_postflight(uaddr); } DTRACE_CPUFLAG_CLEAR(CPU_DTRACE_NOFAULT); return(ret); } uint16_t dtrace_fuword16(user_addr_t uaddr) { uint16_t ret = 0; DTRACE_CPUFLAG_SET(CPU_DTRACE_NOFAULT); if (dtrace_copycheck( uaddr, (uintptr_t)&ret, sizeof(ret))) { if (copyin((const user_addr_t)uaddr, (char *)&ret, sizeof(ret))) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = uaddr; } dtrace_copyio_postflight(uaddr); } DTRACE_CPUFLAG_CLEAR(CPU_DTRACE_NOFAULT); return(ret); } uint32_t dtrace_fuword32(user_addr_t uaddr) { uint32_t ret = 0; DTRACE_CPUFLAG_SET(CPU_DTRACE_NOFAULT); if (dtrace_copycheck( uaddr, (uintptr_t)&ret, sizeof(ret))) { if (copyin((const user_addr_t)uaddr, (char *)&ret, sizeof(ret))) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = uaddr; } dtrace_copyio_postflight(uaddr); } DTRACE_CPUFLAG_CLEAR(CPU_DTRACE_NOFAULT); return(ret); } uint64_t dtrace_fuword64(user_addr_t uaddr) { uint64_t ret = 0; DTRACE_CPUFLAG_SET(CPU_DTRACE_NOFAULT); if (dtrace_copycheck( uaddr, (uintptr_t)&ret, sizeof(ret))) { if (copyin((const user_addr_t)uaddr, (char *)&ret, sizeof(ret))) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = uaddr; } dtrace_copyio_postflight(uaddr); } DTRACE_CPUFLAG_CLEAR(CPU_DTRACE_NOFAULT); return(ret); } /* * Emulation of Solaris fuword / suword * Called from the fasttrap provider, so the use of copyin/out requires fewer safegaurds. */ int fuword8(user_addr_t uaddr, uint8_t *value) { if (copyin((const user_addr_t)uaddr, (char *)value, sizeof(uint8_t)) != 0) { return -1; } return 0; } int fuword16(user_addr_t uaddr, uint16_t *value) { if (copyin((const user_addr_t)uaddr, (char *)value, sizeof(uint16_t)) != 0) { return -1; } return 0; } int fuword32(user_addr_t uaddr, uint32_t *value) { if (copyin((const user_addr_t)uaddr, (char *)value, sizeof(uint32_t)) != 0) { return -1; } return 0; } int fuword64(user_addr_t uaddr, uint64_t *value) { if (copyin((const user_addr_t)uaddr, (char *)value, sizeof(uint64_t)) != 0) { return -1; } return 0; } void fuword8_noerr(user_addr_t uaddr, uint8_t *value) { if (copyin((const user_addr_t)uaddr, (char *)value, sizeof(uint8_t))) { *value = 0; } } void fuword16_noerr(user_addr_t uaddr, uint16_t *value) { if (copyin((const user_addr_t)uaddr, (char *)value, sizeof(uint16_t))) { *value = 0; } } void fuword32_noerr(user_addr_t uaddr, uint32_t *value) { if (copyin((const user_addr_t)uaddr, (char *)value, sizeof(uint32_t))) { *value = 0; } } void fuword64_noerr(user_addr_t uaddr, uint64_t *value) { if (copyin((const user_addr_t)uaddr, (char *)value, sizeof(uint64_t))) { *value = 0; } } int suword64(user_addr_t addr, uint64_t value) { if (copyout((const void *)&value, addr, sizeof(value)) != 0) { return -1; } return 0; } int suword32(user_addr_t addr, uint32_t value) { if (copyout((const void *)&value, addr, sizeof(value)) != 0) { return -1; } return 0; } int suword16(user_addr_t addr, uint16_t value) { if (copyout((const void *)&value, addr, sizeof(value)) != 0) { return -1; } return 0; } int suword8(user_addr_t addr, uint8_t value) { if (copyout((const void *)&value, addr, sizeof(value)) != 0) { return -1; } return 0; } /* * Miscellaneous */ extern boolean_t dtrace_tally_fault(user_addr_t); boolean_t dtrace_tally_fault(user_addr_t uaddr) { DTRACE_CPUFLAG_SET(CPU_DTRACE_BADADDR); cpu_core[CPU->cpu_id].cpuc_dtrace_illval = uaddr; return( DTRACE_CPUFLAG_ISSET(CPU_DTRACE_NOFAULT) ? TRUE : FALSE ); } void dtrace_vpanic(const char *format, va_list alist) { vuprintf( format, alist ); panic("dtrace_vpanic"); } #define TOTTY 0x02 extern int prf(const char *, va_list, int, struct tty *); /* bsd/kern/subr_prf.h */ int vuprintf(const char *format, va_list ap) { return prf(format, ap, TOTTY, NULL); } /* Not called from probe context */ void cmn_err( int level, const char *format, ... ) { #pragma unused(level) va_list alist; va_start(alist, format); vuprintf(format, alist); va_end(alist); uprintf("\n"); } /* * History: * 2002-01-24 gvdl Initial implementation of strstr */ __private_extern__ char * strstr(const char *in, const char *str) { char c; size_t len; c = *str++; if (!c) return (char *) in; // Trivial empty string case len = strlen(str); do { char sc; do { sc = *in++; if (!sc) return (char *) 0; } while (sc != c); } while (strncmp(in, str, len) != 0); return (char *) (in - 1); } /* * Runtime and ABI */ uintptr_t dtrace_caller(int ignore) { #pragma unused(ignore) return -1; /* Just as in Solaris dtrace_asm.s */ } int dtrace_getstackdepth(int aframes) { struct frame *fp = (struct frame *)dtrace_getfp(); struct frame *nextfp, *minfp, *stacktop; int depth = 0; int on_intr; if ((on_intr = CPU_ON_INTR(CPU)) != 0) stacktop = (struct frame *)dtrace_get_cpu_int_stack_top(); else stacktop = (struct frame *)(dtrace_get_kernel_stack(current_thread()) + KERNEL_STACK_SIZE); minfp = fp; aframes++; for (;;) { depth++; nextfp = *(struct frame **)fp; if (nextfp <= minfp || nextfp >= stacktop) { if (on_intr) { /* * Hop from interrupt stack to thread stack. */ vm_offset_t kstack_base = dtrace_get_kernel_stack(current_thread()); minfp = (struct frame *)kstack_base; stacktop = (struct frame *)(kstack_base + KERNEL_STACK_SIZE); on_intr = 0; continue; } break; } fp = nextfp; minfp = fp; } if (depth <= aframes) return (0); return (depth - aframes); } /* * Unconsidered */ void dtrace_vtime_enable(void) {} void dtrace_vtime_disable(void) {} #else /* else ! CONFIG_DTRACE */ #include <sys/types.h> #include <mach/vm_types.h> #include <mach/kmod.h> /* * This exists to prevent build errors when dtrace is unconfigured. */ kern_return_t _dtrace_register_anon_DOF(char *, unsigned char *, uint32_t); kern_return_t _dtrace_register_anon_DOF(char *arg1, unsigned char *arg2, uint32_t arg3) { #pragma unused(arg1, arg2, arg3) return KERN_FAILURE; } #endif /* CONFIG_DTRACE */ |