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 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 | /* * Copyright (c) 2000-2007 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@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* * NOTICE: This file was modified by McAfee Research in 2004 to introduce * support for mandatory and extensible security protections. This notice * is included in support of clause 2.2 (b) of the Apple Public License, * Version 2.0. * Copyright (c) 2005 SPARTA, Inc. */ /* */ /* * File: ipc/ipc_kmsg.c * Author: Rich Draves * Date: 1989 * * Operations on kernel messages. */ #include <mach/mach_types.h> #include <mach/boolean.h> #include <mach/kern_return.h> #include <mach/message.h> #include <mach/port.h> #include <mach/vm_map.h> #include <mach/mach_vm.h> #include <mach/vm_statistics.h> #include <kern/kern_types.h> #include <kern/assert.h> #include <kern/debug.h> #include <kern/ipc_kobject.h> #include <kern/kalloc.h> #include <kern/zalloc.h> #include <kern/processor.h> #include <kern/thread.h> #include <kern/sched_prim.h> #include <kern/spl.h> #include <kern/misc_protos.h> #include <kern/counters.h> #include <kern/cpu_data.h> #include <kern/policy_internal.h> #include <machine/machlimits.h> #include <vm/vm_map.h> #include <vm/vm_object.h> #include <vm/vm_kern.h> #include <ipc/port.h> #include <ipc/ipc_types.h> #include <ipc/ipc_entry.h> #include <ipc/ipc_kmsg.h> #include <ipc/ipc_notify.h> #include <ipc/ipc_object.h> #include <ipc/ipc_space.h> #include <ipc/ipc_port.h> #include <ipc/ipc_right.h> #include <ipc/ipc_hash.h> #include <ipc/ipc_table.h> #include <ipc/ipc_importance.h> #if MACH_FLIPC #include <kern/mach_node.h> #include <ipc/flipc.h> #endif #include <security/mac_mach_internal.h> #include <device/device_server.h> #include <string.h> #ifdef ppc #include <ppc/Firmware.h> #include <ppc/low_trace.h> #endif #if DEBUG #define DEBUG_MSGS_K64 1 #endif #include <sys/kdebug.h> #include <libkern/OSAtomic.h> #pragma pack(4) typedef struct { mach_msg_bits_t msgh_bits; mach_msg_size_t msgh_size; mach_port_name_t msgh_remote_port; mach_port_name_t msgh_local_port; mach_port_name_t msgh_voucher_port; mach_msg_id_t msgh_id; } mach_msg_legacy_header_t; typedef struct { mach_msg_legacy_header_t header; mach_msg_body_t body; } mach_msg_legacy_base_t; typedef struct { mach_port_name_t name; mach_msg_size_t pad1; uint32_t pad2 : 16; mach_msg_type_name_t disposition : 8; mach_msg_descriptor_type_t type : 8; } mach_msg_legacy_port_descriptor_t; typedef union { mach_msg_legacy_port_descriptor_t port; mach_msg_ool_descriptor32_t out_of_line32; mach_msg_ool_ports_descriptor32_t ool_ports32; mach_msg_type_descriptor_t type; } mach_msg_legacy_descriptor_t; #pragma pack() #define LEGACY_HEADER_SIZE_DELTA ((mach_msg_size_t)(sizeof(mach_msg_header_t) - sizeof(mach_msg_legacy_header_t))) // END LP64 fixes #if DEBUG_MSGS_K64 extern void ipc_pset_print64( ipc_pset_t pset); extern void ipc_kmsg_print64( ipc_kmsg_t kmsg, const char *str); extern void ipc_msg_print64( mach_msg_header_t *msgh); extern ipc_port_t ipc_name_to_data64( task_t task, mach_port_name_t name); /* * Forward declarations */ void ipc_msg_print_untyped64( mach_msg_body_t *body); const char * ipc_type_name64( int type_name, boolean_t received); void ipc_print_type_name64( int type_name); const char * msgh_bit_decode64( mach_msg_bits_t bit); const char * mm_copy_options_string64( mach_msg_copy_options_t option); void db_print_msg_uid64(mach_msg_header_t *); static void ipc_msg_body_print64(void *body, int size) { uint32_t *word = (uint32_t *) body; uint32_t *end = (uint32_t *)(((uintptr_t) body) + size - sizeof(mach_msg_header_t)); int i; kprintf(" body(%p-%p):\n %p: ", body, end, word); for (;;) { for (i = 0; i < 8; i++, word++) { if (word >= end) { kprintf("\n"); return; } kprintf("%08x ", *word); } kprintf("\n %p: ", word); } } const char * ipc_type_name64( int type_name, boolean_t received) { switch (type_name) { case MACH_MSG_TYPE_PORT_NAME: return "port_name"; case MACH_MSG_TYPE_MOVE_RECEIVE: if (received) { return "port_receive"; } else { return "move_receive"; } case MACH_MSG_TYPE_MOVE_SEND: if (received) { return "port_send"; } else { return "move_send"; } case MACH_MSG_TYPE_MOVE_SEND_ONCE: if (received) { return "port_send_once"; } else { return "move_send_once"; } case MACH_MSG_TYPE_COPY_SEND: return "copy_send"; case MACH_MSG_TYPE_MAKE_SEND: return "make_send"; case MACH_MSG_TYPE_MAKE_SEND_ONCE: return "make_send_once"; default: return (char *) 0; } } void ipc_print_type_name64( int type_name) { const char *name = ipc_type_name64(type_name, TRUE); if (name) { kprintf("%s", name); } else { kprintf("type%d", type_name); } } /* * ipc_kmsg_print64 [ debug ] */ void ipc_kmsg_print64( ipc_kmsg_t kmsg, const char *str) { kprintf("%s kmsg=%p:\n", str, kmsg); kprintf(" next=%p, prev=%p, size=%d", kmsg->ikm_next, kmsg->ikm_prev, kmsg->ikm_size); kprintf("\n"); ipc_msg_print64(kmsg->ikm_header); } const char * msgh_bit_decode64( mach_msg_bits_t bit) { switch (bit) { case MACH_MSGH_BITS_COMPLEX: return "complex"; case MACH_MSGH_BITS_CIRCULAR: return "circular"; default: return (char *) 0; } } /* * ipc_msg_print64 [ debug ] */ void ipc_msg_print64( mach_msg_header_t *msgh) { mach_msg_bits_t mbits; unsigned int bit, i; const char *bit_name; int needs_comma; mbits = msgh->msgh_bits; kprintf(" msgh_bits=0x%x: l=0x%x,r=0x%x\n", mbits, MACH_MSGH_BITS_LOCAL(msgh->msgh_bits), MACH_MSGH_BITS_REMOTE(msgh->msgh_bits)); mbits = MACH_MSGH_BITS_OTHER(mbits) & MACH_MSGH_BITS_USED; kprintf(" decoded bits: "); needs_comma = 0; for (i = 0, bit = 1; i < sizeof(mbits) * 8; ++i, bit <<= 1) { if ((mbits & bit) == 0) continue; bit_name = msgh_bit_decode64((mach_msg_bits_t)bit); if (bit_name) kprintf("%s%s", needs_comma ? "," : "", bit_name); else kprintf("%sunknown(0x%x),", needs_comma ? "," : "", bit); ++needs_comma; } if (msgh->msgh_bits & ~MACH_MSGH_BITS_USED) { kprintf("%sunused=0x%x,", needs_comma ? "," : "", msgh->msgh_bits & ~MACH_MSGH_BITS_USED); } kprintf("\n"); needs_comma = 1; if (msgh->msgh_remote_port) { kprintf(" remote=%p(", msgh->msgh_remote_port); ipc_print_type_name64(MACH_MSGH_BITS_REMOTE(msgh->msgh_bits)); kprintf(")"); } else { kprintf(" remote=null"); } if (msgh->msgh_local_port) { kprintf("%slocal=%p(", needs_comma ? "," : "", msgh->msgh_local_port); ipc_print_type_name64(MACH_MSGH_BITS_LOCAL(msgh->msgh_bits)); kprintf(")\n"); } else { kprintf("local=null\n"); } kprintf(" msgh_id=%d, size=%d\n", msgh->msgh_id, msgh->msgh_size); if (mbits & MACH_MSGH_BITS_COMPLEX) { ipc_msg_print_untyped64((mach_msg_body_t *) (msgh + 1)); } ipc_msg_body_print64((void *)(msgh + 1), msgh->msgh_size); } const char * mm_copy_options_string64( mach_msg_copy_options_t option) { const char *name; switch (option) { case MACH_MSG_PHYSICAL_COPY: name = "PHYSICAL"; break; case MACH_MSG_VIRTUAL_COPY: name = "VIRTUAL"; break; case MACH_MSG_OVERWRITE: name = "OVERWRITE(DEPRECATED)"; break; case MACH_MSG_ALLOCATE: name = "ALLOCATE"; break; case MACH_MSG_KALLOC_COPY_T: name = "KALLOC_COPY_T"; break; default: name = "unknown"; break; } return name; } void ipc_msg_print_untyped64( mach_msg_body_t *body) { mach_msg_descriptor_t *saddr, *send; mach_msg_descriptor_type_t type; kprintf(" %d descriptors: \n", body->msgh_descriptor_count); saddr = (mach_msg_descriptor_t *) (body + 1); send = saddr + body->msgh_descriptor_count; for ( ; saddr < send; saddr++ ) { type = saddr->type.type; switch (type) { case MACH_MSG_PORT_DESCRIPTOR: { mach_msg_port_descriptor_t *dsc; dsc = &saddr->port; kprintf(" PORT name = %p disp = ", dsc->name); ipc_print_type_name64(dsc->disposition); kprintf("\n"); break; } case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_DESCRIPTOR: { mach_msg_ool_descriptor_t *dsc; dsc = (mach_msg_ool_descriptor_t *) &saddr->out_of_line; kprintf(" OOL%s addr = %p size = 0x%x copy = %s %s\n", type == MACH_MSG_OOL_DESCRIPTOR ? "" : " VOLATILE", dsc->address, dsc->size, mm_copy_options_string64(dsc->copy), dsc->deallocate ? "DEALLOC" : ""); break; } case MACH_MSG_OOL_PORTS_DESCRIPTOR : { mach_msg_ool_ports_descriptor_t *dsc; dsc = (mach_msg_ool_ports_descriptor_t *) &saddr->ool_ports; kprintf(" OOL_PORTS addr = %p count = 0x%x ", dsc->address, dsc->count); kprintf("disp = "); ipc_print_type_name64(dsc->disposition); kprintf(" copy = %s %s\n", mm_copy_options_string64(dsc->copy), dsc->deallocate ? "DEALLOC" : ""); break; } default: { kprintf(" UNKNOWN DESCRIPTOR 0x%x\n", type); break; } } } } #define DEBUG_IPC_KMSG_PRINT(kmsg,string) \ __unreachable_ok_push \ if (DEBUG_KPRINT_SYSCALL_PREDICATE(DEBUG_KPRINT_SYSCALL_IPC_MASK)) { \ ipc_kmsg_print64(kmsg, string); \ } \ __unreachable_ok_pop #define DEBUG_IPC_MSG_BODY_PRINT(body,size) \ __unreachable_ok_push \ if (DEBUG_KPRINT_SYSCALL_PREDICATE(DEBUG_KPRINT_SYSCALL_IPC_MASK)) { \ ipc_msg_body_print64(body,size);\ } \ __unreachable_ok_pop #else /* !DEBUG_MSGS_K64 */ #define DEBUG_IPC_KMSG_PRINT(kmsg,string) #define DEBUG_IPC_MSG_BODY_PRINT(body,size) #endif /* !DEBUG_MSGS_K64 */ extern vm_map_t ipc_kernel_copy_map; extern vm_size_t ipc_kmsg_max_space; extern vm_size_t ipc_kmsg_max_vm_space; extern vm_size_t ipc_kmsg_max_body_space; extern vm_size_t msg_ool_size_small; #define MSG_OOL_SIZE_SMALL msg_ool_size_small #if defined(__LP64__) #define MAP_SIZE_DIFFERS(map) (map->max_offset < MACH_VM_MAX_ADDRESS) #define OTHER_OOL_DESCRIPTOR mach_msg_ool_descriptor32_t #define OTHER_OOL_PORTS_DESCRIPTOR mach_msg_ool_ports_descriptor32_t #else #define MAP_SIZE_DIFFERS(map) (map->max_offset > VM_MAX_ADDRESS) #define OTHER_OOL_DESCRIPTOR mach_msg_ool_descriptor64_t #define OTHER_OOL_PORTS_DESCRIPTOR mach_msg_ool_ports_descriptor64_t #endif #define DESC_SIZE_ADJUSTMENT ((mach_msg_size_t)(sizeof(mach_msg_ool_descriptor64_t) - \ sizeof(mach_msg_ool_descriptor32_t))) /* scatter list macros */ #define SKIP_PORT_DESCRIPTORS(s, c) \ MACRO_BEGIN \ if ((s) != MACH_MSG_DESCRIPTOR_NULL) { \ while ((c) > 0) { \ if ((s)->type.type != MACH_MSG_PORT_DESCRIPTOR) \ break; \ (s)++; (c)--; \ } \ if (c == 0) \ (s) = MACH_MSG_DESCRIPTOR_NULL; \ } \ MACRO_END #define INCREMENT_SCATTER(s, c, d) \ MACRO_BEGIN \ if ((s) != MACH_MSG_DESCRIPTOR_NULL) { \ s = (d) ? (mach_msg_descriptor_t *) \ ((OTHER_OOL_DESCRIPTOR *)(s) + 1) : \ (s + 1); \ (c)--; \ } \ MACRO_END #define KMSG_TRACE_FLAG_TRACED 0x000001 #define KMSG_TRACE_FLAG_COMPLEX 0x000002 #define KMSG_TRACE_FLAG_OOLMEM 0x000004 #define KMSG_TRACE_FLAG_VCPY 0x000008 #define KMSG_TRACE_FLAG_PCPY 0x000010 #define KMSG_TRACE_FLAG_SND64 0x000020 #define KMSG_TRACE_FLAG_RAISEIMP 0x000040 #define KMSG_TRACE_FLAG_APP_SRC 0x000080 #define KMSG_TRACE_FLAG_APP_DST 0x000100 #define KMSG_TRACE_FLAG_DAEMON_SRC 0x000200 #define KMSG_TRACE_FLAG_DAEMON_DST 0x000400 #define KMSG_TRACE_FLAG_DST_NDFLTQ 0x000800 #define KMSG_TRACE_FLAG_SRC_NDFLTQ 0x001000 #define KMSG_TRACE_FLAG_DST_SONCE 0x002000 #define KMSG_TRACE_FLAG_SRC_SONCE 0x004000 #define KMSG_TRACE_FLAG_CHECKIN 0x008000 #define KMSG_TRACE_FLAG_ONEWAY 0x010000 #define KMSG_TRACE_FLAG_IOKIT 0x020000 #define KMSG_TRACE_FLAG_SNDRCV 0x040000 #define KMSG_TRACE_FLAG_DSTQFULL 0x080000 #define KMSG_TRACE_FLAG_VOUCHER 0x100000 #define KMSG_TRACE_FLAG_TIMER 0x200000 #define KMSG_TRACE_FLAG_SEMA 0x400000 #define KMSG_TRACE_FLAG_DTMPOWNER 0x800000 #define KMSG_TRACE_FLAGS_MASK 0xffffff #define KMSG_TRACE_FLAGS_SHIFT 8 #define KMSG_TRACE_PORTS_MASK 0xff #define KMSG_TRACE_PORTS_SHIFT 0 #if (KDEBUG_LEVEL >= KDEBUG_LEVEL_STANDARD) extern boolean_t kdebug_debugid_enabled(uint32_t debugid); void ipc_kmsg_trace_send(ipc_kmsg_t kmsg, mach_msg_option_t option) { task_t send_task = TASK_NULL; ipc_port_t dst_port, src_port; boolean_t is_task_64bit; mach_msg_header_t *msg; mach_msg_trailer_t *trailer; int kotype = 0; uint32_t msg_size = 0; uint32_t msg_flags = KMSG_TRACE_FLAG_TRACED; uint32_t num_ports = 0; uint32_t send_pid, dst_pid; /* * check to see not only if ktracing is enabled, but if we will * _actually_ emit the KMSG_INFO tracepoint. This saves us a * significant amount of processing (and a port lock hold) in * the non-tracing case. */ if (__probable((kdebug_enable & KDEBUG_TRACE) == 0)) return; if (!kdebug_debugid_enabled(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_KMSG_INFO))) return; msg = kmsg->ikm_header; dst_port = (ipc_port_t)(msg->msgh_remote_port); if (!IPC_PORT_VALID(dst_port)) return; /* * Message properties / options */ if ((option & (MACH_SEND_MSG|MACH_RCV_MSG)) == (MACH_SEND_MSG|MACH_RCV_MSG)) msg_flags |= KMSG_TRACE_FLAG_SNDRCV; if (msg->msgh_id >= is_iokit_subsystem.start && msg->msgh_id < is_iokit_subsystem.end + 100) msg_flags |= KMSG_TRACE_FLAG_IOKIT; /* magic XPC checkin message id (XPC_MESSAGE_ID_CHECKIN) from libxpc */ else if (msg->msgh_id == 0x77303074u /* w00t */) msg_flags |= KMSG_TRACE_FLAG_CHECKIN; if (msg->msgh_bits & MACH_MSGH_BITS_RAISEIMP) msg_flags |= KMSG_TRACE_FLAG_RAISEIMP; if (unsafe_convert_port_to_voucher(kmsg->ikm_voucher)) msg_flags |= KMSG_TRACE_FLAG_VOUCHER; /* * Sending task / port */ send_task = current_task(); send_pid = task_pid(send_task); if (send_pid != 0) { if (task_is_daemon(send_task)) msg_flags |= KMSG_TRACE_FLAG_DAEMON_SRC; else if (task_is_app(send_task)) msg_flags |= KMSG_TRACE_FLAG_APP_SRC; } is_task_64bit = (send_task->map->max_offset > VM_MAX_ADDRESS); if (is_task_64bit) msg_flags |= KMSG_TRACE_FLAG_SND64; src_port = (ipc_port_t)(msg->msgh_local_port); if (src_port) { if (src_port->ip_messages.imq_qlimit != MACH_PORT_QLIMIT_DEFAULT) msg_flags |= KMSG_TRACE_FLAG_SRC_NDFLTQ; switch (MACH_MSGH_BITS_LOCAL(msg->msgh_bits)) { case MACH_MSG_TYPE_MOVE_SEND_ONCE: msg_flags |= KMSG_TRACE_FLAG_SRC_SONCE; break; default: break; } } else { msg_flags |= KMSG_TRACE_FLAG_ONEWAY; } /* * Destination task / port */ ip_lock(dst_port); if (!ip_active(dst_port)) { /* dst port is being torn down */ dst_pid = (uint32_t)0xfffffff0; } else if (dst_port->ip_tempowner) { msg_flags |= KMSG_TRACE_FLAG_DTMPOWNER; if (IIT_NULL != dst_port->ip_imp_task) dst_pid = task_pid(dst_port->ip_imp_task->iit_task); else dst_pid = (uint32_t)0xfffffff1; } else if (dst_port->ip_receiver_name == MACH_PORT_NULL) { /* dst_port is otherwise in-transit */ dst_pid = (uint32_t)0xfffffff2; } else { if (dst_port->ip_receiver == ipc_space_kernel) { dst_pid = 0; } else { ipc_space_t dst_space; dst_space = dst_port->ip_receiver; if (dst_space && is_active(dst_space)) { dst_pid = task_pid(dst_space->is_task); if (task_is_daemon(dst_space->is_task)) msg_flags |= KMSG_TRACE_FLAG_DAEMON_DST; else if (task_is_app(dst_space->is_task)) msg_flags |= KMSG_TRACE_FLAG_APP_DST; } else { /* receiving task is being torn down */ dst_pid = (uint32_t)0xfffffff3; } } } if (dst_port->ip_messages.imq_qlimit != MACH_PORT_QLIMIT_DEFAULT) msg_flags |= KMSG_TRACE_FLAG_DST_NDFLTQ; if (imq_full(&dst_port->ip_messages)) msg_flags |= KMSG_TRACE_FLAG_DSTQFULL; kotype = ip_kotype(dst_port); ip_unlock(dst_port); switch (kotype) { case IKOT_SEMAPHORE: msg_flags |= KMSG_TRACE_FLAG_SEMA; break; case IKOT_TIMER: case IKOT_CLOCK: msg_flags |= KMSG_TRACE_FLAG_TIMER; break; case IKOT_MASTER_DEVICE: case IKOT_IOKIT_CONNECT: case IKOT_IOKIT_OBJECT: case IKOT_IOKIT_SPARE: msg_flags |= KMSG_TRACE_FLAG_IOKIT; break; default: break; } switch(MACH_MSGH_BITS_REMOTE(msg->msgh_bits)) { case MACH_MSG_TYPE_PORT_SEND_ONCE: msg_flags |= KMSG_TRACE_FLAG_DST_SONCE; break; default: break; } /* * Message size / content */ msg_size = msg->msgh_size - sizeof(mach_msg_header_t); if (msg->msgh_bits & MACH_MSGH_BITS_COMPLEX) { mach_msg_body_t *msg_body; mach_msg_descriptor_t *kern_dsc; int dsc_count; msg_flags |= KMSG_TRACE_FLAG_COMPLEX; msg_body = (mach_msg_body_t *)(kmsg->ikm_header + 1); dsc_count = (int)msg_body->msgh_descriptor_count; kern_dsc = (mach_msg_descriptor_t *)(msg_body + 1); /* this is gross: see ipc_kmsg_copyin_body()... */ if (!is_task_64bit) msg_size -= (dsc_count * 12); for (int i = 0; i < dsc_count; i++) { switch (kern_dsc[i].type.type) { case MACH_MSG_PORT_DESCRIPTOR: num_ports++; if (is_task_64bit) msg_size -= 12; break; case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_DESCRIPTOR: { mach_msg_ool_descriptor_t *dsc; dsc = (mach_msg_ool_descriptor_t *)&kern_dsc[i]; msg_flags |= KMSG_TRACE_FLAG_OOLMEM; msg_size += dsc->size; if ((dsc->size >= MSG_OOL_SIZE_SMALL) && (dsc->copy == MACH_MSG_PHYSICAL_COPY) && !dsc->deallocate) msg_flags |= KMSG_TRACE_FLAG_PCPY; else if (dsc->size <= MSG_OOL_SIZE_SMALL) msg_flags |= KMSG_TRACE_FLAG_PCPY; else msg_flags |= KMSG_TRACE_FLAG_VCPY; if (is_task_64bit) msg_size -= 16; } break; case MACH_MSG_OOL_PORTS_DESCRIPTOR: { mach_msg_ool_ports_descriptor_t *dsc; dsc = (mach_msg_ool_ports_descriptor_t *)&kern_dsc[i]; num_ports += dsc->count; if (is_task_64bit) msg_size -= 16; } break; default: break; } } } /* * Trailer contents */ trailer = (mach_msg_trailer_t *)((vm_offset_t)msg + (vm_offset_t)msg->msgh_size); if (trailer->msgh_trailer_size <= sizeof(mach_msg_security_trailer_t)) { extern security_token_t KERNEL_SECURITY_TOKEN; mach_msg_security_trailer_t *strailer; strailer = (mach_msg_security_trailer_t *)trailer; /* * verify the sender PID: replies from the kernel often look * like self-talk because the sending port is not reset. */ if (memcmp(&strailer->msgh_sender, &KERNEL_SECURITY_TOKEN, sizeof(KERNEL_SECURITY_TOKEN)) == 0) { send_pid = 0; msg_flags &= ~(KMSG_TRACE_FLAG_APP_SRC | KMSG_TRACE_FLAG_DAEMON_SRC); } } KDBG(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_KMSG_INFO) | DBG_FUNC_END, (uintptr_t)send_pid, (uintptr_t)dst_pid, (uintptr_t)msg_size, (uintptr_t)( ((msg_flags & KMSG_TRACE_FLAGS_MASK) << KMSG_TRACE_FLAGS_SHIFT) | ((num_ports & KMSG_TRACE_PORTS_MASK) << KMSG_TRACE_PORTS_SHIFT) ) ); } #endif /* zone for cached ipc_kmsg_t structures */ zone_t ipc_kmsg_zone; /* * Forward declarations */ void ipc_kmsg_clean( ipc_kmsg_t kmsg); void ipc_kmsg_clean_body( ipc_kmsg_t kmsg, mach_msg_type_number_t number, mach_msg_descriptor_t *desc); void ipc_kmsg_clean_partial( ipc_kmsg_t kmsg, mach_msg_type_number_t number, mach_msg_descriptor_t *desc, vm_offset_t paddr, vm_size_t length); mach_msg_return_t ipc_kmsg_copyin_body( ipc_kmsg_t kmsg, ipc_space_t space, vm_map_t map); /* * We keep a per-processor cache of kernel message buffers. * The cache saves the overhead/locking of using kalloc/kfree. * The per-processor cache seems to miss less than a per-thread cache, * and it also uses less memory. Access to the cache doesn't * require locking. */ /* * Routine: ipc_kmsg_alloc * Purpose: * Allocate a kernel message structure. If we can get one from * the cache, that is best. Otherwise, allocate a new one. * Conditions: * Nothing locked. */ ipc_kmsg_t ipc_kmsg_alloc( mach_msg_size_t msg_and_trailer_size) { mach_msg_size_t max_expanded_size; ipc_kmsg_t kmsg; /* * LP64support - * Pad the allocation in case we need to expand the * message descrptors for user spaces with pointers larger than * the kernel's own, or vice versa. We don't know how many descriptors * there are yet, so just assume the whole body could be * descriptors (if there could be any at all). * * The expansion space is left in front of the header, * because it is easier to pull the header and descriptors * forward as we process them than it is to push all the * data backwards. */ mach_msg_size_t size = msg_and_trailer_size - MAX_TRAILER_SIZE; /* compare against implementation upper limit for the body */ if (size > ipc_kmsg_max_body_space) return IKM_NULL; if (size > sizeof(mach_msg_base_t)) { mach_msg_size_t max_desc = (mach_msg_size_t)(((size - sizeof(mach_msg_base_t)) / sizeof(mach_msg_ool_descriptor32_t)) * DESC_SIZE_ADJUSTMENT); /* make sure expansion won't cause wrap */ if (msg_and_trailer_size > MACH_MSG_SIZE_MAX - max_desc) return IKM_NULL; max_expanded_size = msg_and_trailer_size + max_desc; } else max_expanded_size = msg_and_trailer_size; if (max_expanded_size < IKM_SAVED_MSG_SIZE) max_expanded_size = IKM_SAVED_MSG_SIZE; /* round up for ikm_cache */ if (max_expanded_size == IKM_SAVED_MSG_SIZE) { struct ikm_cache *cache; unsigned int i; disable_preemption(); cache = &PROCESSOR_DATA(current_processor(), ikm_cache); if ((i = cache->avail) > 0) { assert(i <= IKM_STASH); kmsg = cache->entries[--i]; cache->avail = i; enable_preemption(); ikm_check_init(kmsg, max_expanded_size); ikm_set_header(kmsg, msg_and_trailer_size); return (kmsg); } enable_preemption(); kmsg = (ipc_kmsg_t)zalloc(ipc_kmsg_zone); } else { kmsg = (ipc_kmsg_t)kalloc(ikm_plus_overhead(max_expanded_size)); } if (kmsg != IKM_NULL) { ikm_init(kmsg, max_expanded_size); ikm_set_header(kmsg, msg_and_trailer_size); } return(kmsg); } /* * Routine: ipc_kmsg_free * Purpose: * Free a kernel message buffer. If the kms is preallocated * to a port, just "put it back (marked unused)." We have to * do this with the port locked. The port may have its hold * on our message released. In that case, we have to just * revert the message to a traditional one and free it normally. * Conditions: * Nothing locked. */ void ipc_kmsg_free( ipc_kmsg_t kmsg) { mach_msg_size_t size = kmsg->ikm_size; ipc_port_t port; assert(!IP_VALID(kmsg->ikm_voucher)); KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_KMSG_FREE) | DBG_FUNC_NONE, VM_KERNEL_ADDRPERM((uintptr_t)kmsg), 0, 0, 0, 0); /* * Check to see if the message is bound to the port. If so, * mark it not in use. If the port isn't already dead, then * leave the message associated with it. Otherwise, free it. */ port = ikm_prealloc_inuse_port(kmsg); if (port != IP_NULL) { ip_lock(port); ikm_prealloc_clear_inuse(kmsg, port); if (ip_active(port) && (port->ip_premsg == kmsg)) { assert(IP_PREALLOC(port)); ip_unlock(port); ip_release(port); return; } ip_unlock(port); ip_release(port); /* May be last reference */ } /* * Peek and see if it has to go back in the cache. */ if (kmsg->ikm_size == IKM_SAVED_MSG_SIZE) { struct ikm_cache *cache; unsigned int i; disable_preemption(); cache = &PROCESSOR_DATA(current_processor(), ikm_cache); if ((i = cache->avail) < IKM_STASH) { cache->entries[i] = kmsg; cache->avail = i + 1; enable_preemption(); return; } enable_preemption(); zfree(ipc_kmsg_zone, kmsg); return; } kfree(kmsg, ikm_plus_overhead(size)); } /* * Routine: ipc_kmsg_enqueue * Purpose: * Enqueue a kmsg. */ void ipc_kmsg_enqueue( ipc_kmsg_queue_t queue, ipc_kmsg_t kmsg) { ipc_kmsg_t first = queue->ikmq_base; ipc_kmsg_t last; if (first == IKM_NULL) { queue->ikmq_base = kmsg; kmsg->ikm_next = kmsg; kmsg->ikm_prev = kmsg; } else { last = first->ikm_prev; kmsg->ikm_next = first; kmsg->ikm_prev = last; first->ikm_prev = kmsg; last->ikm_next = kmsg; } } /* * Routine: ipc_kmsg_enqueue_qos * Purpose: * Enqueue a kmsg, propagating qos * overrides towards the head of the queue. * * Returns: * whether the head of the queue had * it's override-qos adjusted because * of this insertion. */ boolean_t ipc_kmsg_enqueue_qos( ipc_kmsg_queue_t queue, ipc_kmsg_t kmsg) { ipc_kmsg_t first = queue->ikmq_base; ipc_kmsg_t prev; mach_msg_priority_t override; if (first == IKM_NULL) { /* insert a first message */ queue->ikmq_base = kmsg; kmsg->ikm_next = kmsg; kmsg->ikm_prev = kmsg; return TRUE; } /* insert at the tail */ prev = first->ikm_prev; kmsg->ikm_next = first; kmsg->ikm_prev = prev; first->ikm_prev = kmsg; prev->ikm_next = kmsg; /* apply QoS overrides towards the head */ override = kmsg->ikm_qos_override; while (prev != kmsg && override > prev->ikm_qos_override) { prev->ikm_qos_override = override; prev = prev->ikm_prev; } /* did we adjust everything? */ return (prev == kmsg); } /* * Routine: ipc_kmsg_override_qos * Purpose: * Update the override for a given kmsg already * enqueued, propagating qos override adjustments * towards the head of the queue. * * Returns: * whether the head of the queue had * it's override-qos adjusted because * of this insertion. */ boolean_t ipc_kmsg_override_qos( ipc_kmsg_queue_t queue, ipc_kmsg_t kmsg, mach_msg_priority_t override) { ipc_kmsg_t first = queue->ikmq_base; ipc_kmsg_t cur = kmsg; /* apply QoS overrides towards the head */ while (override > cur->ikm_qos_override) { cur->ikm_qos_override = override; if (cur == first) return TRUE; cur = cur->ikm_next; } return FALSE; } /* * Routine: ipc_kmsg_dequeue * Purpose: * Dequeue and return a kmsg. */ ipc_kmsg_t ipc_kmsg_dequeue( ipc_kmsg_queue_t queue) { ipc_kmsg_t first; first = ipc_kmsg_queue_first(queue); if (first != IKM_NULL) ipc_kmsg_rmqueue(queue, first); return first; } /* * Routine: ipc_kmsg_rmqueue * Purpose: * Pull a kmsg out of a queue. */ void ipc_kmsg_rmqueue( ipc_kmsg_queue_t queue, ipc_kmsg_t kmsg) { ipc_kmsg_t next, prev; assert(queue->ikmq_base != IKM_NULL); next = kmsg->ikm_next; prev = kmsg->ikm_prev; if (next == kmsg) { assert(prev == kmsg); assert(queue->ikmq_base == kmsg); queue->ikmq_base = IKM_NULL; } else { if (queue->ikmq_base == kmsg) queue->ikmq_base = next; next->ikm_prev = prev; prev->ikm_next = next; } /* XXX Temporary debug logic */ assert((kmsg->ikm_next = IKM_BOGUS) == IKM_BOGUS); assert((kmsg->ikm_prev = IKM_BOGUS) == IKM_BOGUS); } /* * Routine: ipc_kmsg_queue_next * Purpose: * Return the kmsg following the given kmsg. * (Or IKM_NULL if it is the last one in the queue.) */ ipc_kmsg_t ipc_kmsg_queue_next( ipc_kmsg_queue_t queue, ipc_kmsg_t kmsg) { ipc_kmsg_t next; assert(queue->ikmq_base != IKM_NULL); next = kmsg->ikm_next; if (queue->ikmq_base == next) next = IKM_NULL; return next; } /* * Routine: ipc_kmsg_destroy * Purpose: * Destroys a kernel message. Releases all rights, * references, and memory held by the message. * Frees the message. * Conditions: * No locks held. */ void ipc_kmsg_destroy( ipc_kmsg_t kmsg) { /* * Destroying a message can cause more messages to be destroyed. * Curtail recursion by putting messages on the deferred * destruction queue. If this was the first message on the * queue, this instance must process the full queue. */ if (ipc_kmsg_delayed_destroy(kmsg)) ipc_kmsg_reap_delayed(); } /* * Routine: ipc_kmsg_delayed_destroy * Purpose: * Enqueues a kernel message for deferred destruction. * Returns: * Boolean indicator that the caller is responsible to reap * deferred messages. */ boolean_t ipc_kmsg_delayed_destroy( ipc_kmsg_t kmsg) { ipc_kmsg_queue_t queue = &(current_thread()->ith_messages); boolean_t first = ipc_kmsg_queue_empty(queue); ipc_kmsg_enqueue(queue, kmsg); return first; } /* * Routine: ipc_kmsg_destroy_queue * Purpose: * Destroys messages from the per-thread * deferred reaping queue. * Conditions: * No locks held. */ void ipc_kmsg_reap_delayed(void) { ipc_kmsg_queue_t queue = &(current_thread()->ith_messages); ipc_kmsg_t kmsg; /* * must leave kmsg in queue while cleaning it to assure * no nested calls recurse into here. */ while ((kmsg = ipc_kmsg_queue_first(queue)) != IKM_NULL) { ipc_kmsg_clean(kmsg); ipc_kmsg_rmqueue(queue, kmsg); ipc_kmsg_free(kmsg); } } /* * Routine: ipc_kmsg_clean_body * Purpose: * Cleans the body of a kernel message. * Releases all rights, references, and memory. * * Conditions: * No locks held. */ static unsigned int _ipc_kmsg_clean_invalid_desc = 0; void ipc_kmsg_clean_body( __unused ipc_kmsg_t kmsg, mach_msg_type_number_t number, mach_msg_descriptor_t *saddr) { mach_msg_type_number_t i; if ( number == 0 ) return; for (i = 0 ; i < number; i++, saddr++ ) { switch (saddr->type.type) { case MACH_MSG_PORT_DESCRIPTOR: { mach_msg_port_descriptor_t *dsc; dsc = &saddr->port; /* * Destroy port rights carried in the message */ if (!IO_VALID((ipc_object_t) dsc->name)) continue; ipc_object_destroy((ipc_object_t) dsc->name, dsc->disposition); break; } case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_DESCRIPTOR : { mach_msg_ool_descriptor_t *dsc; dsc = (mach_msg_ool_descriptor_t *)&saddr->out_of_line; /* * Destroy memory carried in the message */ if (dsc->size == 0) { assert(dsc->address == (void *) 0); } else { vm_map_copy_discard((vm_map_copy_t) dsc->address); } break; } case MACH_MSG_OOL_PORTS_DESCRIPTOR : { ipc_object_t *objects; mach_msg_type_number_t j; mach_msg_ool_ports_descriptor_t *dsc; dsc = (mach_msg_ool_ports_descriptor_t *)&saddr->ool_ports; objects = (ipc_object_t *) dsc->address; if (dsc->count == 0) { break; } assert(objects != (ipc_object_t *) 0); /* destroy port rights carried in the message */ for (j = 0; j < dsc->count; j++) { ipc_object_t object = objects[j]; if (!IO_VALID(object)) continue; ipc_object_destroy(object, dsc->disposition); } /* destroy memory carried in the message */ assert(dsc->count != 0); kfree(dsc->address, (vm_size_t) dsc->count * sizeof(mach_port_t)); break; } default : { _ipc_kmsg_clean_invalid_desc++; /* don't understand this type of descriptor */ } } } } /* * Routine: ipc_kmsg_clean_partial * Purpose: * Cleans a partially-acquired kernel message. * number is the index of the type descriptor * in the body of the message that contained the error. * If dolast, the memory and port rights in this last * type spec are also cleaned. In that case, number * specifies the number of port rights to clean. * Conditions: * Nothing locked. */ void ipc_kmsg_clean_partial( ipc_kmsg_t kmsg, mach_msg_type_number_t number, mach_msg_descriptor_t *desc, vm_offset_t paddr, vm_size_t length) { ipc_object_t object; mach_msg_bits_t mbits = kmsg->ikm_header->msgh_bits; /* deal with importance chain while we still have dest and voucher references */ ipc_importance_clean(kmsg); object = (ipc_object_t) kmsg->ikm_header->msgh_remote_port; assert(IO_VALID(object)); ipc_object_destroy_dest(object, MACH_MSGH_BITS_REMOTE(mbits)); object = (ipc_object_t) kmsg->ikm_header->msgh_local_port; if (IO_VALID(object)) ipc_object_destroy(object, MACH_MSGH_BITS_LOCAL(mbits)); object = (ipc_object_t) kmsg->ikm_voucher; if (IO_VALID(object)) { assert(MACH_MSGH_BITS_VOUCHER(mbits) == MACH_MSG_TYPE_MOVE_SEND); ipc_object_destroy(object, MACH_MSG_TYPE_PORT_SEND); kmsg->ikm_voucher = IP_NULL; } if (paddr) { (void) vm_deallocate(ipc_kernel_copy_map, paddr, length); } ipc_kmsg_clean_body(kmsg, number, desc); } /* * Routine: ipc_kmsg_clean * Purpose: * Cleans a kernel message. Releases all rights, * references, and memory held by the message. * Conditions: * No locks held. */ void ipc_kmsg_clean( ipc_kmsg_t kmsg) { ipc_object_t object; mach_msg_bits_t mbits; /* deal with importance chain while we still have dest and voucher references */ ipc_importance_clean(kmsg); mbits = kmsg->ikm_header->msgh_bits; object = (ipc_object_t) kmsg->ikm_header->msgh_remote_port; if (IO_VALID(object)) ipc_object_destroy_dest(object, MACH_MSGH_BITS_REMOTE(mbits)); object = (ipc_object_t) kmsg->ikm_header->msgh_local_port; if (IO_VALID(object)) ipc_object_destroy(object, MACH_MSGH_BITS_LOCAL(mbits)); object = (ipc_object_t) kmsg->ikm_voucher; if (IO_VALID(object)) { assert(MACH_MSGH_BITS_VOUCHER(mbits) == MACH_MSG_TYPE_MOVE_SEND); ipc_object_destroy(object, MACH_MSG_TYPE_PORT_SEND); kmsg->ikm_voucher = IP_NULL; } if (mbits & MACH_MSGH_BITS_COMPLEX) { mach_msg_body_t *body; body = (mach_msg_body_t *) (kmsg->ikm_header + 1); ipc_kmsg_clean_body(kmsg, body->msgh_descriptor_count, (mach_msg_descriptor_t *)(body + 1)); } } /* * Routine: ipc_kmsg_set_prealloc * Purpose: * Assign a kmsg as a preallocated message buffer to a port. * Conditions: * port locked. */ void ipc_kmsg_set_prealloc( ipc_kmsg_t kmsg, ipc_port_t port) { assert(kmsg->ikm_prealloc == IP_NULL); kmsg->ikm_prealloc = IP_NULL; IP_SET_PREALLOC(port, kmsg); } /* * Routine: ipc_kmsg_clear_prealloc * Purpose: * Release the Assignment of a preallocated message buffer from a port. * Conditions: * port locked. */ void ipc_kmsg_clear_prealloc( ipc_kmsg_t kmsg, ipc_port_t port) { assert(kmsg->ikm_prealloc == port); kmsg->ikm_prealloc = IP_NULL; IP_CLEAR_PREALLOC(port, kmsg); } /* * Routine: ipc_kmsg_prealloc * Purpose: * Wraper to ipc_kmsg_alloc() to account for * header expansion requirements. */ ipc_kmsg_t ipc_kmsg_prealloc(mach_msg_size_t size) { #if defined(__LP64__) if (size > MACH_MSG_SIZE_MAX - LEGACY_HEADER_SIZE_DELTA) return IKM_NULL; size += LEGACY_HEADER_SIZE_DELTA; #endif return ipc_kmsg_alloc(size); } /* * Routine: ipc_kmsg_get * Purpose: * Allocates a kernel message buffer. * Copies a user message to the message buffer. * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS Acquired a message buffer. * MACH_SEND_MSG_TOO_SMALL Message smaller than a header. * MACH_SEND_MSG_TOO_SMALL Message size not long-word multiple. * MACH_SEND_TOO_LARGE Message too large to ever be sent. * MACH_SEND_NO_BUFFER Couldn't allocate a message buffer. * MACH_SEND_INVALID_DATA Couldn't copy message data. */ mach_msg_return_t ipc_kmsg_get( mach_vm_address_t msg_addr, mach_msg_size_t size, ipc_kmsg_t *kmsgp) { mach_msg_size_t msg_and_trailer_size; ipc_kmsg_t kmsg; mach_msg_max_trailer_t *trailer; mach_msg_legacy_base_t legacy_base; mach_msg_size_t len_copied; legacy_base.body.msgh_descriptor_count = 0; if ((size < sizeof(mach_msg_legacy_header_t)) || (size & 3)) return MACH_SEND_MSG_TOO_SMALL; if (size > ipc_kmsg_max_body_space) return MACH_SEND_TOO_LARGE; if(size == sizeof(mach_msg_legacy_header_t)) len_copied = sizeof(mach_msg_legacy_header_t); else len_copied = sizeof(mach_msg_legacy_base_t); if (copyinmsg(msg_addr, (char *)&legacy_base, len_copied)) return MACH_SEND_INVALID_DATA; msg_addr += sizeof(legacy_base.header); #if defined(__LP64__) size += LEGACY_HEADER_SIZE_DELTA; #endif /* unreachable if !DEBUG */ __unreachable_ok_push if (DEBUG_KPRINT_SYSCALL_PREDICATE(DEBUG_KPRINT_SYSCALL_IPC_MASK)) { unsigned int j; for (j=0; j<sizeof(legacy_base.header); j++) { kprintf("%02x\n", ((unsigned char*)&legacy_base.header)[j]); } } __unreachable_ok_pop msg_and_trailer_size = size + MAX_TRAILER_SIZE; kmsg = ipc_kmsg_alloc(msg_and_trailer_size); if (kmsg == IKM_NULL) return MACH_SEND_NO_BUFFER; kmsg->ikm_header->msgh_size = size; kmsg->ikm_header->msgh_bits = legacy_base.header.msgh_bits; kmsg->ikm_header->msgh_remote_port = CAST_MACH_NAME_TO_PORT(legacy_base.header.msgh_remote_port); kmsg->ikm_header->msgh_local_port = CAST_MACH_NAME_TO_PORT(legacy_base.header.msgh_local_port); kmsg->ikm_header->msgh_voucher_port = legacy_base.header.msgh_voucher_port; kmsg->ikm_header->msgh_id = legacy_base.header.msgh_id; DEBUG_KPRINT_SYSCALL_IPC("ipc_kmsg_get header:\n" " size: 0x%.8x\n" " bits: 0x%.8x\n" " remote_port: %p\n" " local_port: %p\n" " voucher_port: 0x%.8x\n" " id: %.8d\n", kmsg->ikm_header->msgh_size, kmsg->ikm_header->msgh_bits, kmsg->ikm_header->msgh_remote_port, kmsg->ikm_header->msgh_local_port, kmsg->ikm_header->msgh_voucher_port, kmsg->ikm_header->msgh_id); if (copyinmsg(msg_addr, (char *)(kmsg->ikm_header + 1), size - (mach_msg_size_t)sizeof(mach_msg_header_t))) { ipc_kmsg_free(kmsg); return MACH_SEND_INVALID_DATA; } /* unreachable if !DEBUG */ __unreachable_ok_push if (DEBUG_KPRINT_SYSCALL_PREDICATE(DEBUG_KPRINT_SYSCALL_IPC_MASK)) { kprintf("body: size: %lu\n", (size - sizeof(mach_msg_header_t))); uint32_t i; for(i=0;i*4 < (size - sizeof(mach_msg_header_t));i++) { kprintf("%.4x\n",((uint32_t *)(kmsg->ikm_header + 1))[i]); } } __unreachable_ok_pop DEBUG_IPC_KMSG_PRINT(kmsg, "ipc_kmsg_get()"); /* * I reserve for the trailer the largest space (MAX_TRAILER_SIZE) * However, the internal size field of the trailer (msgh_trailer_size) * is initialized to the minimum (sizeof(mach_msg_trailer_t)), to optimize * the cases where no implicit data is requested. */ trailer = (mach_msg_max_trailer_t *) ((vm_offset_t)kmsg->ikm_header + size); trailer->msgh_sender = current_thread()->task->sec_token; trailer->msgh_audit = current_thread()->task->audit_token; trailer->msgh_trailer_type = MACH_MSG_TRAILER_FORMAT_0; trailer->msgh_trailer_size = MACH_MSG_TRAILER_MINIMUM_SIZE; #ifdef ppc if(trcWork.traceMask) dbgTrace(0x1100, (unsigned int)kmsg->ikm_header->msgh_id, (unsigned int)kmsg->ikm_header->msgh_remote_port, (unsigned int)kmsg->ikm_header->msgh_local_port, 0); #endif trailer->msgh_labels.sender = 0; *kmsgp = kmsg; return MACH_MSG_SUCCESS; } /* * Routine: ipc_kmsg_get_from_kernel * Purpose: * First checks for a preallocated message * reserved for kernel clients. If not found - * allocates a new kernel message buffer. * Copies a kernel message to the message buffer. * Only resource errors are allowed. * Conditions: * Nothing locked. * Ports in header are ipc_port_t. * Returns: * MACH_MSG_SUCCESS Acquired a message buffer. * MACH_SEND_NO_BUFFER Couldn't allocate a message buffer. */ mach_msg_return_t ipc_kmsg_get_from_kernel( mach_msg_header_t *msg, mach_msg_size_t size, ipc_kmsg_t *kmsgp) { ipc_kmsg_t kmsg; mach_msg_size_t msg_and_trailer_size; mach_msg_max_trailer_t *trailer; ipc_port_t dest_port; assert(size >= sizeof(mach_msg_header_t)); assert((size & 3) == 0); dest_port = (ipc_port_t)msg->msgh_remote_port; msg_and_trailer_size = size + MAX_TRAILER_SIZE; /* * See if the port has a pre-allocated kmsg for kernel * clients. These are set up for those kernel clients * which cannot afford to wait. */ if (IP_VALID(dest_port) && IP_PREALLOC(dest_port)) { mach_msg_size_t max_desc = 0; ip_lock(dest_port); if (!ip_active(dest_port)) { ip_unlock(dest_port); return MACH_SEND_NO_BUFFER; } assert(IP_PREALLOC(dest_port)); kmsg = dest_port->ip_premsg; if (ikm_prealloc_inuse(kmsg)) { ip_unlock(dest_port); return MACH_SEND_NO_BUFFER; } #if !defined(__LP64__) if (msg->msgh_bits & MACH_MSGH_BITS_COMPLEX) { assert(size > sizeof(mach_msg_base_t)); max_desc = ((mach_msg_base_t *)msg)->body.msgh_descriptor_count * DESC_SIZE_ADJUSTMENT; } #endif if (msg_and_trailer_size > kmsg->ikm_size - max_desc) { ip_unlock(dest_port); return MACH_SEND_TOO_LARGE; } ikm_prealloc_set_inuse(kmsg, dest_port); ikm_set_header(kmsg, msg_and_trailer_size); ip_unlock(dest_port); } else { kmsg = ipc_kmsg_alloc(msg_and_trailer_size); if (kmsg == IKM_NULL) return MACH_SEND_NO_BUFFER; } (void) memcpy((void *) kmsg->ikm_header, (const void *) msg, size); kmsg->ikm_header->msgh_size = size; /* * I reserve for the trailer the largest space (MAX_TRAILER_SIZE) * However, the internal size field of the trailer (msgh_trailer_size) * is initialized to the minimum (sizeof(mach_msg_trailer_t)), to * optimize the cases where no implicit data is requested. */ trailer = (mach_msg_max_trailer_t *) ((vm_offset_t)kmsg->ikm_header + size); trailer->msgh_sender = KERNEL_SECURITY_TOKEN; trailer->msgh_audit = KERNEL_AUDIT_TOKEN; trailer->msgh_trailer_type = MACH_MSG_TRAILER_FORMAT_0; trailer->msgh_trailer_size = MACH_MSG_TRAILER_MINIMUM_SIZE; trailer->msgh_labels.sender = 0; *kmsgp = kmsg; return MACH_MSG_SUCCESS; } /* * Routine: ipc_kmsg_send * Purpose: * Send a message. The message holds a reference * for the destination port in the msgh_remote_port field. * * If unsuccessful, the caller still has possession of * the message and must do something with it. If successful, * the message is queued, given to a receiver, destroyed, * or handled directly by the kernel via mach_msg. * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS The message was accepted. * MACH_SEND_TIMED_OUT Caller still has message. * MACH_SEND_INTERRUPTED Caller still has message. * MACH_SEND_INVALID_DEST Caller still has message. */ mach_msg_return_t ipc_kmsg_send( ipc_kmsg_t kmsg, mach_msg_option_t option, mach_msg_timeout_t send_timeout) { ipc_port_t port; thread_t th = current_thread(); mach_msg_return_t error = MACH_MSG_SUCCESS; boolean_t kernel_reply = FALSE; /* Check if honor qlimit flag is set on thread. */ if ((th->options & TH_OPT_HONOR_QLIMIT) == TH_OPT_HONOR_QLIMIT) { /* Remove the MACH_SEND_ALWAYS flag to honor queue limit. */ option &= (~MACH_SEND_ALWAYS); /* Add the timeout flag since the message queue might be full. */ option |= MACH_SEND_TIMEOUT; th->options &= (~TH_OPT_HONOR_QLIMIT); } #if IMPORTANCE_INHERITANCE boolean_t did_importance = FALSE; #if IMPORTANCE_DEBUG mach_msg_id_t imp_msgh_id = -1; int sender_pid = -1; #endif /* IMPORTANCE_DEBUG */ #endif /* IMPORTANCE_INHERITANCE */ /* don't allow the creation of a circular loop */ if (kmsg->ikm_header->msgh_bits & MACH_MSGH_BITS_CIRCULAR) { ipc_kmsg_destroy(kmsg); KDBG(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_KMSG_INFO) | DBG_FUNC_END, MACH_MSGH_BITS_CIRCULAR); return MACH_MSG_SUCCESS; } ipc_voucher_send_preprocessing(kmsg); port = (ipc_port_t) kmsg->ikm_header->msgh_remote_port; assert(IP_VALID(port)); ip_lock(port); #if IMPORTANCE_INHERITANCE retry: #endif /* IMPORTANCE_INHERITANCE */ /* * Can't deliver to a dead port. * However, we can pretend it got sent * and was then immediately destroyed. */ if (!ip_active(port)) { ip_unlock(port); #if MACH_FLIPC if (MACH_NODE_VALID(kmsg->ikm_node) && FPORT_VALID(port->ip_messages.imq_fport)) flipc_msg_ack(kmsg->ikm_node, &port->ip_messages, FALSE); #endif ip_release(port); /* JMM - Future: release right, not just ref */ kmsg->ikm_header->msgh_remote_port = MACH_PORT_NULL; ipc_kmsg_destroy(kmsg); KDBG(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_KMSG_INFO) | DBG_FUNC_END, MACH_SEND_INVALID_DEST); return MACH_MSG_SUCCESS; } if (port->ip_receiver == ipc_space_kernel) { /* * We can check ip_receiver == ipc_space_kernel * before checking that the port is active because * ipc_port_dealloc_kernel clears ip_receiver * before destroying a kernel port. */ assert(ip_active(port)); port->ip_messages.imq_seqno++; ip_unlock(port); current_task()->messages_sent++; /* * Call the server routine, and get the reply message to send. */ kmsg = ipc_kobject_server(kmsg, option); if (kmsg == IKM_NULL) return MACH_MSG_SUCCESS; /* restart the KMSG_INFO tracing for the reply message */ KDBG(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_KMSG_INFO) | DBG_FUNC_START); port = (ipc_port_t) kmsg->ikm_header->msgh_remote_port; assert(IP_VALID(port)); ip_lock(port); /* fall thru with reply - same options */ kernel_reply = TRUE; if (!ip_active(port)) error = MACH_SEND_INVALID_DEST; } #if IMPORTANCE_INHERITANCE /* * Need to see if this message needs importance donation and/or * propagation. That routine can drop the port lock temporarily. * If it does we'll have to revalidate the destination. */ if (did_importance == FALSE) { did_importance = TRUE; if (ipc_importance_send(kmsg, option)) goto retry; } #endif /* IMPORTANCE_INHERITANCE */ if (error != MACH_MSG_SUCCESS) { ip_unlock(port); } else { /* * We have a valid message and a valid reference on the port. * we can unlock the port and call mqueue_send() on its message * queue. Lock message queue while port is locked. */ imq_lock(&port->ip_messages); ip_unlock(port); error = ipc_mqueue_send(&port->ip_messages, kmsg, option, send_timeout); } #if IMPORTANCE_INHERITANCE if (did_importance == TRUE) { __unused int importance_cleared = 0; switch (error) { case MACH_SEND_TIMED_OUT: case MACH_SEND_NO_BUFFER: case MACH_SEND_INTERRUPTED: case MACH_SEND_INVALID_DEST: /* * We still have the kmsg and its * reference on the port. But we * have to back out the importance * boost. * * The port could have changed hands, * be inflight to another destination, * etc... But in those cases our * back-out will find the new owner * (and all the operations that * transferred the right should have * applied their own boost adjustments * to the old owner(s)). */ importance_cleared = 1; ipc_importance_clean(kmsg); break; case MACH_MSG_SUCCESS: default: break; } #if IMPORTANCE_DEBUG KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (IMPORTANCE_CODE(IMP_MSG, IMP_MSG_SEND)) | DBG_FUNC_END, task_pid(current_task()), sender_pid, imp_msgh_id, importance_cleared, 0); #endif /* IMPORTANCE_DEBUG */ } #endif /* IMPORTANCE_INHERITANCE */ /* * If the port has been destroyed while we wait, treat the message * as a successful delivery (like we do for an inactive port). */ if (error == MACH_SEND_INVALID_DEST) { #if MACH_FLIPC if (MACH_NODE_VALID(kmsg->ikm_node) && FPORT_VALID(port->ip_messages.imq_fport)) flipc_msg_ack(kmsg->ikm_node, &port->ip_messages, FALSE); #endif ip_release(port); /* JMM - Future: release right, not just ref */ kmsg->ikm_header->msgh_remote_port = MACH_PORT_NULL; ipc_kmsg_destroy(kmsg); KDBG(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_KMSG_INFO) | DBG_FUNC_END, MACH_SEND_INVALID_DEST); return MACH_MSG_SUCCESS; } if (error != MACH_MSG_SUCCESS && kernel_reply) { /* * Kernel reply messages that fail can't be allowed to * pseudo-receive on error conditions. We need to just treat * the message as a successful delivery. */ #if MACH_FLIPC if (MACH_NODE_VALID(kmsg->ikm_node) && FPORT_VALID(port->ip_messages.imq_fport)) flipc_msg_ack(kmsg->ikm_node, &port->ip_messages, FALSE); #endif ip_release(port); /* JMM - Future: release right, not just ref */ kmsg->ikm_header->msgh_remote_port = MACH_PORT_NULL; ipc_kmsg_destroy(kmsg); KDBG(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_KMSG_INFO) | DBG_FUNC_END, error); return MACH_MSG_SUCCESS; } return error; } /* * Routine: ipc_kmsg_put * Purpose: * Copies a message buffer to a user message. * Copies only the specified number of bytes. * Frees the message buffer. * Conditions: * Nothing locked. The message buffer must have clean * header fields. * Returns: * MACH_MSG_SUCCESS Copied data out of message buffer. * MACH_RCV_INVALID_DATA Couldn't copy to user message. */ mach_msg_return_t ipc_kmsg_put( ipc_kmsg_t kmsg, mach_msg_option_t option, mach_vm_address_t rcv_addr, mach_msg_size_t rcv_size, mach_msg_size_t trailer_size, mach_msg_size_t *sizep) { mach_msg_size_t size = kmsg->ikm_header->msgh_size + trailer_size; mach_msg_return_t mr; DEBUG_IPC_KMSG_PRINT(kmsg, "ipc_kmsg_put()"); DEBUG_KPRINT_SYSCALL_IPC("ipc_kmsg_put header:\n" " size: 0x%.8x\n" " bits: 0x%.8x\n" " remote_port: %p\n" " local_port: %p\n" " voucher_port: 0x%.8x\n" " id: %.8d\n", kmsg->ikm_header->msgh_size, kmsg->ikm_header->msgh_bits, kmsg->ikm_header->msgh_remote_port, kmsg->ikm_header->msgh_local_port, kmsg->ikm_header->msgh_voucher_port, kmsg->ikm_header->msgh_id); #if defined(__LP64__) if (current_task() != kernel_task) { /* don't if receiver expects fully-cooked in-kernel msg; ux_exception */ mach_msg_legacy_header_t *legacy_header = (mach_msg_legacy_header_t *)((vm_offset_t)(kmsg->ikm_header) + LEGACY_HEADER_SIZE_DELTA); mach_msg_bits_t bits = kmsg->ikm_header->msgh_bits; mach_msg_size_t msg_size = kmsg->ikm_header->msgh_size; mach_port_name_t remote_port = CAST_MACH_PORT_TO_NAME(kmsg->ikm_header->msgh_remote_port); mach_port_name_t local_port = CAST_MACH_PORT_TO_NAME(kmsg->ikm_header->msgh_local_port); mach_port_name_t voucher_port = kmsg->ikm_header->msgh_voucher_port; mach_msg_id_t id = kmsg->ikm_header->msgh_id; legacy_header->msgh_id = id; legacy_header->msgh_local_port = local_port; legacy_header->msgh_remote_port = remote_port; legacy_header->msgh_voucher_port = voucher_port; legacy_header->msgh_size = msg_size - LEGACY_HEADER_SIZE_DELTA; legacy_header->msgh_bits = bits; size -= LEGACY_HEADER_SIZE_DELTA; kmsg->ikm_header = (mach_msg_header_t *)legacy_header; } #endif /* unreachable if !DEBUG */ __unreachable_ok_push if (DEBUG_KPRINT_SYSCALL_PREDICATE(DEBUG_KPRINT_SYSCALL_IPC_MASK)) { kprintf("ipc_kmsg_put header+body: %d\n", (size)); uint32_t i; for(i=0;i*4 < size;i++) { kprintf("%.4x\n",((uint32_t *)kmsg->ikm_header)[i]); } kprintf("type: %d\n", ((mach_msg_type_descriptor_t *)(((mach_msg_base_t *)kmsg->ikm_header)+1))->type); } __unreachable_ok_pop /* Re-Compute target address if using stack-style delivery */ if (option & MACH_RCV_STACK) { rcv_addr += rcv_size - size; } if (copyoutmsg((const char *) kmsg->ikm_header, rcv_addr, size)) { mr = MACH_RCV_INVALID_DATA; size = 0; } else mr = MACH_MSG_SUCCESS; KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_KMSG_LINK) | DBG_FUNC_NONE, (rcv_addr >= VM_MIN_KERNEL_AND_KEXT_ADDRESS || rcv_addr + size >= VM_MIN_KERNEL_AND_KEXT_ADDRESS) ? (uintptr_t)0 : (uintptr_t)rcv_addr, VM_KERNEL_ADDRPERM((uintptr_t)kmsg), 1 /* this is on the receive/copyout path */, 0, 0); ipc_kmsg_free(kmsg); if (sizep) *sizep = size; return mr; } /* * Routine: ipc_kmsg_put_to_kernel * Purpose: * Copies a message buffer to a kernel message. * Frees the message buffer. * No errors allowed. * Conditions: * Nothing locked. */ void ipc_kmsg_put_to_kernel( mach_msg_header_t *msg, ipc_kmsg_t kmsg, mach_msg_size_t size) { (void) memcpy((void *) msg, (const void *) kmsg->ikm_header, size); ipc_kmsg_free(kmsg); } unsigned long pthread_priority_canonicalize(unsigned long priority, boolean_t propagation); static void ipc_kmsg_set_qos( ipc_kmsg_t kmsg, mach_msg_option_t options, mach_msg_priority_t override) { kern_return_t kr; kr = ipc_get_pthpriority_from_kmsg_voucher(kmsg, &kmsg->ikm_qos); if (kr != KERN_SUCCESS) { kmsg->ikm_qos = MACH_MSG_PRIORITY_UNSPECIFIED; } kmsg->ikm_qos_override = kmsg->ikm_qos; if (options & MACH_SEND_OVERRIDE) { unsigned long canonical; mach_msg_priority_t canon; canonical = pthread_priority_canonicalize(override, TRUE); canon = (mach_msg_priority_t)canonical; if (canon > kmsg->ikm_qos) kmsg->ikm_qos_override = canon; } } /* * Routine: ipc_kmsg_copyin_header * Purpose: * "Copy-in" port rights in the header of a message. * Operates atomically; if it doesn't succeed the * message header and the space are left untouched. * If it does succeed the remote/local port fields * contain object pointers instead of port names, * and the bits field is updated. The destination port * will be a valid port pointer. * * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS Successful copyin. * MACH_SEND_INVALID_HEADER * Illegal value in the message header bits. * MACH_SEND_INVALID_DEST The space is dead. * MACH_SEND_INVALID_DEST Can't copyin destination port. * (Either KERN_INVALID_NAME or KERN_INVALID_RIGHT.) * MACH_SEND_INVALID_REPLY Can't copyin reply port. * (Either KERN_INVALID_NAME or KERN_INVALID_RIGHT.) */ mach_msg_return_t ipc_kmsg_copyin_header( ipc_kmsg_t kmsg, ipc_space_t space, mach_msg_priority_t override, mach_msg_option_t *optionp) { mach_msg_header_t *msg = kmsg->ikm_header; mach_msg_bits_t mbits = msg->msgh_bits & MACH_MSGH_BITS_USER; mach_port_name_t dest_name = CAST_MACH_PORT_TO_NAME(msg->msgh_remote_port); mach_port_name_t reply_name = CAST_MACH_PORT_TO_NAME(msg->msgh_local_port); mach_port_name_t voucher_name = MACH_PORT_NULL; kern_return_t kr; mach_msg_type_name_t dest_type = MACH_MSGH_BITS_REMOTE(mbits); mach_msg_type_name_t reply_type = MACH_MSGH_BITS_LOCAL(mbits); mach_msg_type_name_t voucher_type = MACH_MSGH_BITS_VOUCHER(mbits); ipc_object_t dest_port = IO_NULL; ipc_object_t reply_port = IO_NULL; ipc_port_t dest_soright = IP_NULL; ipc_port_t reply_soright = IP_NULL; ipc_port_t voucher_soright = IP_NULL; ipc_port_t release_port = IP_NULL; ipc_port_t voucher_port = IP_NULL; ipc_port_t voucher_release_port = IP_NULL; ipc_entry_t dest_entry = IE_NULL; ipc_entry_t reply_entry = IE_NULL; ipc_entry_t voucher_entry = IE_NULL; int assertcnt = 0; #if IMPORTANCE_INHERITANCE boolean_t needboost = FALSE; #endif /* IMPORTANCE_INHERITANCE */ if ((mbits != msg->msgh_bits) || (!MACH_MSG_TYPE_PORT_ANY_SEND(dest_type)) || ((reply_type == 0) ? (reply_name != MACH_PORT_NULL) : !MACH_MSG_TYPE_PORT_ANY_SEND(reply_type))) return MACH_SEND_INVALID_HEADER; if (!MACH_PORT_VALID(dest_name)) return MACH_SEND_INVALID_DEST; is_write_lock(space); if (!is_active(space)) { is_write_unlock(space); return MACH_SEND_INVALID_DEST; } /* space locked and active */ /* * If there is a voucher specified, make sure the disposition is * valid and the entry actually refers to a voucher port. Don't * actually copy in until we validate destination and reply. */ if (voucher_type != MACH_MSGH_BITS_ZERO) { voucher_name = msg->msgh_voucher_port; if (voucher_name == MACH_PORT_DEAD || (voucher_type != MACH_MSG_TYPE_MOVE_SEND && voucher_type != MACH_MSG_TYPE_COPY_SEND)) { is_write_unlock(space); return MACH_SEND_INVALID_VOUCHER; } if (voucher_name != MACH_PORT_NULL) { voucher_entry = ipc_entry_lookup(space, voucher_name); if (voucher_entry == IE_NULL || (voucher_entry->ie_bits & MACH_PORT_TYPE_SEND) == 0 || io_kotype(voucher_entry->ie_object) != IKOT_VOUCHER) { is_write_unlock(space); return MACH_SEND_INVALID_VOUCHER; } } else { voucher_type = MACH_MSG_TYPE_MOVE_SEND; } } /* * Handle combinations of validating destination and reply; along * with copying in destination, reply, and voucher in an atomic way. */ if (dest_name == voucher_name) { /* * If the destination name is the same as the voucher name, * the voucher_entry must already be known. Either that or * the destination name is MACH_PORT_NULL (i.e. invalid). */ dest_entry = voucher_entry; if (dest_entry == IE_NULL) { goto invalid_dest; } /* * Make sure a future copyin of the reply port will succeed. * Once we start copying in the dest/voucher pair, we can't * back out. */ if (MACH_PORT_VALID(reply_name)) { assert(reply_type != 0); /* because reply_name not null */ /* It is just WRONG if dest, voucher, and reply are all the same. */ if (voucher_name == reply_name) { goto invalid_reply; } reply_entry = ipc_entry_lookup(space, reply_name); if (reply_entry == IE_NULL) { goto invalid_reply; } assert(dest_entry != reply_entry); /* names are not equal */ if (!ipc_right_copyin_check(space, reply_name, reply_entry, reply_type)) { goto invalid_reply; } } /* * Do the joint copyin of the dest disposition and * voucher disposition from the one entry/port. We * already validated that the voucher copyin would * succeed (above). So, any failure in combining * the copyins can be blamed on the destination. */ kr = ipc_right_copyin_two(space, dest_name, dest_entry, dest_type, voucher_type, &dest_port, &dest_soright, &release_port); if (kr != KERN_SUCCESS) { assert(kr != KERN_INVALID_CAPABILITY); goto invalid_dest; } voucher_port = (ipc_port_t)dest_port; /* * could not have been one of these dispositions, * validated the port was a true kernel voucher port above, * AND was successfully able to copyin both dest and voucher. */ assert(dest_type != MACH_MSG_TYPE_MAKE_SEND); assert(dest_type != MACH_MSG_TYPE_MAKE_SEND_ONCE); assert(dest_type != MACH_MSG_TYPE_MOVE_SEND_ONCE); /* * Perform the delayed reply right copyin (guaranteed success). */ if (reply_entry != IE_NULL) { kr = ipc_right_copyin(space, reply_name, reply_entry, reply_type, TRUE, &reply_port, &reply_soright, &release_port, &assertcnt); assert(assertcnt == 0); assert(kr == KERN_SUCCESS); } } else { if (dest_name == reply_name) { /* * Destination and reply ports are the same! * This is very similar to the case where the * destination and voucher ports were the same * (except the reply port disposition is not * previously validated). */ dest_entry = ipc_entry_lookup(space, dest_name); if (dest_entry == IE_NULL) { goto invalid_dest; } reply_entry = dest_entry; assert(reply_type != 0); /* because name not null */ /* * Do the joint copyin of the dest disposition and * reply disposition from the one entry/port. */ kr = ipc_right_copyin_two(space, dest_name, dest_entry, dest_type, reply_type, &dest_port, &dest_soright, &release_port); if (kr == KERN_INVALID_CAPABILITY) { goto invalid_reply; } else if (kr != KERN_SUCCESS) { goto invalid_dest; } reply_port = dest_port; } else { /* * Handle destination and reply independently, as * they are independent entries (even if the entries * refer to the same port). * * This can be the tough case to make atomic. * * The difficult problem is serializing with port death. * The bad case is when dest_port dies after its copyin, * reply_port dies before its copyin, and dest_port dies before * reply_port. Then the copyins operated as if dest_port was * alive and reply_port was dead, which shouldn't have happened * because they died in the other order. * * Note that it is easy for a user task to tell if * a copyin happened before or after a port died. * If a port dies before copyin, a dead-name notification * is generated and the dead name's urefs are incremented, * and if the copyin happens first, a port-deleted * notification is generated. * * Even so, avoiding that potentially detectable race is too * expensive - and no known code cares about it. So, we just * do the expedient thing and copy them in one after the other. */ dest_entry = ipc_entry_lookup(space, dest_name); if (dest_entry == IE_NULL) { goto invalid_dest; } assert(dest_entry != voucher_entry); /* * Make sure reply port entry is valid before dest copyin. */ if (MACH_PORT_VALID(reply_name)) { if (reply_name == voucher_name) { goto invalid_reply; } reply_entry = ipc_entry_lookup(space, reply_name); if (reply_entry == IE_NULL) { goto invalid_reply; } assert(dest_entry != reply_entry); /* names are not equal */ assert(reply_type != 0); /* because reply_name not null */ if (!ipc_right_copyin_check(space, reply_name, reply_entry, reply_type)) { goto invalid_reply; } } /* * copyin the destination. */ kr = ipc_right_copyin(space, dest_name, dest_entry, dest_type, FALSE, &dest_port, &dest_soright, &release_port, &assertcnt); assert(assertcnt == 0); if (kr != KERN_SUCCESS) { goto invalid_dest; } assert(IO_VALID(dest_port)); assert(!IP_VALID(release_port)); /* * Copyin the pre-validated reply right. * It's OK if the reply right has gone dead in the meantime. */ if (MACH_PORT_VALID(reply_name)) { kr = ipc_right_copyin(space, reply_name, reply_entry, reply_type, TRUE, &reply_port, &reply_soright, &release_port, &assertcnt); assert(assertcnt == 0); assert(kr == KERN_SUCCESS); } else { /* convert invalid name to equivalent ipc_object type */ reply_port = (ipc_object_t)CAST_MACH_NAME_TO_PORT(reply_name); } } /* * Finally can copyin the voucher right now that dest and reply * are fully copied in (guaranteed success). */ if (IE_NULL != voucher_entry) { kr = ipc_right_copyin(space, voucher_name, voucher_entry, voucher_type, FALSE, (ipc_object_t *)&voucher_port, &voucher_soright, &voucher_release_port, &assertcnt); assert(assertcnt == 0); assert(KERN_SUCCESS == kr); assert(IP_VALID(voucher_port)); assert(ip_active(voucher_port)); } } /* the entry(s) might need to be deallocated */ assert(IE_NULL != dest_entry); if (IE_BITS_TYPE(dest_entry->ie_bits) == MACH_PORT_TYPE_NONE) { ipc_entry_dealloc(space, dest_name, dest_entry); dest_entry = IE_NULL; } if (dest_entry != reply_entry && IE_NULL != reply_entry && IE_BITS_TYPE(reply_entry->ie_bits) == MACH_PORT_TYPE_NONE) { ipc_entry_dealloc(space, reply_name, reply_entry); reply_entry = IE_NULL; } if (dest_entry != voucher_entry && IE_NULL != voucher_entry && IE_BITS_TYPE(voucher_entry->ie_bits) == MACH_PORT_TYPE_NONE) { ipc_entry_dealloc(space, voucher_name, voucher_entry); voucher_entry = IE_NULL; } dest_type = ipc_object_copyin_type(dest_type); reply_type = ipc_object_copyin_type(reply_type); /* * JMM - Without rdar://problem/6275821, this is the last place we can * re-arm the send-possible notifications. It may trigger unexpectedly * early (send may NOT have failed), but better than missing. We assure * we won't miss by forcing MACH_SEND_ALWAYS if we got past arming. */ if (((*optionp & MACH_SEND_NOTIFY) != 0) && dest_type != MACH_MSG_TYPE_PORT_SEND_ONCE && dest_entry != IE_NULL && dest_entry->ie_request != IE_REQ_NONE) { ipc_port_t dport = (ipc_port_t)dest_port; assert(dport != IP_NULL); ip_lock(dport); if (ip_active(dport) && dport->ip_receiver != ipc_space_kernel) { if (ip_full(dport)) { #if IMPORTANCE_INHERITANCE needboost = ipc_port_request_sparm(dport, dest_name, dest_entry->ie_request, *optionp, override); if (needboost == FALSE) ip_unlock(dport); #else ipc_port_request_sparm(dport, dest_name, dest_entry->ie_request, *optionp, override); ip_unlock(dport); #endif /* IMPORTANCE_INHERITANCE */ } else { *optionp |= MACH_SEND_ALWAYS; ip_unlock(dport); } } else { ip_unlock(dport); } } is_write_unlock(space); #if IMPORTANCE_INHERITANCE /* * If our request is the first boosting send-possible * notification this cycle, push the boost down the * destination port. */ if (needboost == TRUE) { ipc_port_t dport = (ipc_port_t)dest_port; /* dport still locked from above */ if (ipc_port_importance_delta(dport, IPID_OPTION_SENDPOSSIBLE, 1) == FALSE) { ip_unlock(dport); } } #endif /* IMPORTANCE_INHERITANCE */ if (dest_soright != IP_NULL) { ipc_notify_port_deleted(dest_soright, dest_name); } if (reply_soright != IP_NULL) { ipc_notify_port_deleted(reply_soright, reply_name); } if (voucher_soright != IP_NULL) { ipc_notify_port_deleted(voucher_soright, voucher_name); } /* * No room to store voucher port in in-kernel msg header, * so we store it back in the kmsg itself. Extract the * qos, and apply any override before we enqueue the kmsg. */ if (IP_VALID(voucher_port)) { kmsg->ikm_voucher = voucher_port; voucher_type = MACH_MSG_TYPE_MOVE_SEND; } /* capture the qos value(s) for the kmsg */ ipc_kmsg_set_qos(kmsg, *optionp, override); msg->msgh_bits = MACH_MSGH_BITS_SET(dest_type, reply_type, voucher_type, mbits); msg->msgh_remote_port = (ipc_port_t)dest_port; msg->msgh_local_port = (ipc_port_t)reply_port; if (release_port != IP_NULL) ip_release(release_port); if (voucher_release_port != IP_NULL) ip_release(voucher_release_port); return MACH_MSG_SUCCESS; invalid_reply: is_write_unlock(space); if (release_port != IP_NULL) ip_release(release_port); assert(voucher_port == IP_NULL); assert(voucher_soright == IP_NULL); return MACH_SEND_INVALID_REPLY; invalid_dest: is_write_unlock(space); if (release_port != IP_NULL) ip_release(release_port); if (reply_soright != IP_NULL) ipc_notify_port_deleted(reply_soright, reply_name); assert(voucher_port == IP_NULL); assert(voucher_soright == IP_NULL); return MACH_SEND_INVALID_DEST; } mach_msg_descriptor_t *ipc_kmsg_copyin_port_descriptor( volatile mach_msg_port_descriptor_t *dsc, mach_msg_legacy_port_descriptor_t *user_dsc, ipc_space_t space, ipc_object_t dest, ipc_kmsg_t kmsg, mach_msg_return_t *mr); void ipc_print_type_name( int type_name); mach_msg_descriptor_t * ipc_kmsg_copyin_port_descriptor( volatile mach_msg_port_descriptor_t *dsc, mach_msg_legacy_port_descriptor_t *user_dsc_in, ipc_space_t space, ipc_object_t dest, ipc_kmsg_t kmsg, mach_msg_return_t *mr) { volatile mach_msg_legacy_port_descriptor_t *user_dsc = user_dsc_in; mach_msg_type_name_t user_disp; mach_msg_type_name_t result_disp; mach_port_name_t name; ipc_object_t object; user_disp = user_dsc->disposition; result_disp = ipc_object_copyin_type(user_disp); name = (mach_port_name_t)user_dsc->name; if (MACH_PORT_VALID(name)) { kern_return_t kr = ipc_object_copyin(space, name, user_disp, &object); if (kr != KERN_SUCCESS) { *mr = MACH_SEND_INVALID_RIGHT; return NULL; } if ((result_disp == MACH_MSG_TYPE_PORT_RECEIVE) && ipc_port_check_circularity((ipc_port_t) object, (ipc_port_t) dest)) { kmsg->ikm_header->msgh_bits |= MACH_MSGH_BITS_CIRCULAR; } dsc->name = (ipc_port_t) object; } else { dsc->name = CAST_MACH_NAME_TO_PORT(name); } dsc->disposition = result_disp; dsc->type = MACH_MSG_PORT_DESCRIPTOR; dsc->pad_end = 0; // debug, unnecessary return (mach_msg_descriptor_t *)(user_dsc_in+1); } mach_msg_descriptor_t * ipc_kmsg_copyin_ool_descriptor( mach_msg_ool_descriptor_t *dsc, mach_msg_descriptor_t *user_dsc, int is_64bit, vm_offset_t *paddr, vm_map_copy_t *copy, vm_size_t *space_needed, vm_map_t map, mach_msg_return_t *mr); mach_msg_descriptor_t * ipc_kmsg_copyin_ool_descriptor( mach_msg_ool_descriptor_t *dsc, mach_msg_descriptor_t *user_dsc, int is_64bit, vm_offset_t *paddr, vm_map_copy_t *copy, vm_size_t *space_needed, vm_map_t map, mach_msg_return_t *mr) { vm_size_t length; boolean_t dealloc; mach_msg_copy_options_t copy_options; mach_vm_offset_t addr; mach_msg_descriptor_type_t dsc_type; if (is_64bit) { mach_msg_ool_descriptor64_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; addr = (mach_vm_offset_t) user_ool_dsc->address; length = user_ool_dsc->size; dealloc = user_ool_dsc->deallocate; copy_options = user_ool_dsc->copy; dsc_type = user_ool_dsc->type; user_dsc = (typeof(user_dsc))(user_ool_dsc+1); } else { mach_msg_ool_descriptor32_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; addr = CAST_USER_ADDR_T(user_ool_dsc->address); dealloc = user_ool_dsc->deallocate; copy_options = user_ool_dsc->copy; dsc_type = user_ool_dsc->type; length = user_ool_dsc->size; user_dsc = (typeof(user_dsc))(user_ool_dsc+1); } dsc->size = (mach_msg_size_t)length; dsc->deallocate = dealloc; dsc->copy = copy_options; dsc->type = dsc_type; if (length == 0) { dsc->address = NULL; } else if ((length >= MSG_OOL_SIZE_SMALL) && (copy_options == MACH_MSG_PHYSICAL_COPY) && !dealloc) { /* * If the request is a physical copy and the source * is not being deallocated, then allocate space * in the kernel's pageable ipc copy map and copy * the data in. The semantics guarantee that the * data will have been physically copied before * the send operation terminates. Thus if the data * is not being deallocated, we must be prepared * to page if the region is sufficiently large. */ if (copyin(addr, (char *)*paddr, length)) { *mr = MACH_SEND_INVALID_MEMORY; return NULL; } /* * The kernel ipc copy map is marked no_zero_fill. * If the transfer is not a page multiple, we need * to zero fill the balance. */ if (!page_aligned(length)) { (void) memset((void *) (*paddr + length), 0, round_page(length) - length); } if (vm_map_copyin(ipc_kernel_copy_map, (vm_map_address_t)*paddr, (vm_map_size_t)length, TRUE, copy) != KERN_SUCCESS) { *mr = MACH_MSG_VM_KERNEL; return NULL; } dsc->address = (void *)*copy; *paddr += round_page(length); *space_needed -= round_page(length); } else { /* * Make a vm_map_copy_t of the of the data. If the * data is small, this will do an optimized physical * copy. Otherwise, it will do a virtual copy. * * NOTE: A virtual copy is OK if the original is being * deallocted, even if a physical copy was requested. */ kern_return_t kr = vm_map_copyin(map, addr, (vm_map_size_t)length, dealloc, copy); if (kr != KERN_SUCCESS) { *mr = (kr == KERN_RESOURCE_SHORTAGE) ? MACH_MSG_VM_KERNEL : MACH_SEND_INVALID_MEMORY; return NULL; } dsc->address = (void *)*copy; } return user_dsc; } mach_msg_descriptor_t * ipc_kmsg_copyin_ool_ports_descriptor( mach_msg_ool_ports_descriptor_t *dsc, mach_msg_descriptor_t *user_dsc, int is_64bit, vm_map_t map, ipc_space_t space, ipc_object_t dest, ipc_kmsg_t kmsg, mach_msg_return_t *mr); mach_msg_descriptor_t * ipc_kmsg_copyin_ool_ports_descriptor( mach_msg_ool_ports_descriptor_t *dsc, mach_msg_descriptor_t *user_dsc, int is_64bit, vm_map_t map, ipc_space_t space, ipc_object_t dest, ipc_kmsg_t kmsg, mach_msg_return_t *mr) { void *data; ipc_object_t *objects; unsigned int i; mach_vm_offset_t addr; mach_msg_type_name_t user_disp; mach_msg_type_name_t result_disp; mach_msg_type_number_t count; mach_msg_copy_options_t copy_option; boolean_t deallocate; mach_msg_descriptor_type_t type; vm_size_t ports_length, names_length; if (is_64bit) { mach_msg_ool_ports_descriptor64_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; addr = (mach_vm_offset_t)user_ool_dsc->address; count = user_ool_dsc->count; deallocate = user_ool_dsc->deallocate; copy_option = user_ool_dsc->copy; user_disp = user_ool_dsc->disposition; type = user_ool_dsc->type; user_dsc = (typeof(user_dsc))(user_ool_dsc+1); } else { mach_msg_ool_ports_descriptor32_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; addr = CAST_USER_ADDR_T(user_ool_dsc->address); count = user_ool_dsc->count; deallocate = user_ool_dsc->deallocate; copy_option = user_ool_dsc->copy; user_disp = user_ool_dsc->disposition; type = user_ool_dsc->type; user_dsc = (typeof(user_dsc))(user_ool_dsc+1); } dsc->deallocate = deallocate; dsc->copy = copy_option; dsc->type = type; dsc->count = count; dsc->address = NULL; /* for now */ result_disp = ipc_object_copyin_type(user_disp); dsc->disposition = result_disp; if (count > (INT_MAX / sizeof(mach_port_t))) { *mr = MACH_SEND_TOO_LARGE; return NULL; } /* calculate length of data in bytes, rounding up */ ports_length = count * sizeof(mach_port_t); names_length = count * sizeof(mach_port_name_t); if (ports_length == 0) { return user_dsc; } data = kalloc(ports_length); if (data == NULL) { *mr = MACH_SEND_NO_BUFFER; return NULL; } #ifdef __LP64__ mach_port_name_t *names = &((mach_port_name_t *)data)[count]; #else mach_port_name_t *names = ((mach_port_name_t *)data); #endif if (copyinmap(map, addr, names, names_length) != KERN_SUCCESS) { kfree(data, ports_length); *mr = MACH_SEND_INVALID_MEMORY; return NULL; } if (deallocate) { (void) mach_vm_deallocate(map, addr, (mach_vm_size_t)ports_length); } objects = (ipc_object_t *) data; dsc->address = data; for ( i = 0; i < count; i++) { mach_port_name_t name = names[i]; ipc_object_t object; if (!MACH_PORT_VALID(name)) { objects[i] = (ipc_object_t)CAST_MACH_NAME_TO_PORT(name); continue; } kern_return_t kr = ipc_object_copyin(space, name, user_disp, &object); if (kr != KERN_SUCCESS) { unsigned int j; for(j = 0; j < i; j++) { object = objects[j]; if (IPC_OBJECT_VALID(object)) ipc_object_destroy(object, result_disp); } kfree(data, ports_length); dsc->address = NULL; *mr = MACH_SEND_INVALID_RIGHT; return NULL; } if ((dsc->disposition == MACH_MSG_TYPE_PORT_RECEIVE) && ipc_port_check_circularity( (ipc_port_t) object, (ipc_port_t) dest)) kmsg->ikm_header->msgh_bits |= MACH_MSGH_BITS_CIRCULAR; objects[i] = object; } return user_dsc; } /* * Routine: ipc_kmsg_copyin_body * Purpose: * "Copy-in" port rights and out-of-line memory * in the message body. * * In all failure cases, the message is left holding * no rights or memory. However, the message buffer * is not deallocated. If successful, the message * contains a valid destination port. * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS Successful copyin. * MACH_SEND_INVALID_MEMORY Can't grab out-of-line memory. * MACH_SEND_INVALID_RIGHT Can't copyin port right in body. * MACH_SEND_INVALID_TYPE Bad type specification. * MACH_SEND_MSG_TOO_SMALL Body is too small for types/data. * MACH_SEND_INVALID_RT_OOL_SIZE OOL Buffer too large for RT * MACH_MSG_INVALID_RT_DESCRIPTOR Dealloc and RT are incompatible */ mach_msg_return_t ipc_kmsg_copyin_body( ipc_kmsg_t kmsg, ipc_space_t space, vm_map_t map) { ipc_object_t dest; mach_msg_body_t *body; mach_msg_descriptor_t *daddr, *naddr; mach_msg_descriptor_t *user_addr, *kern_addr; mach_msg_type_number_t dsc_count; boolean_t is_task_64bit = (map->max_offset > VM_MAX_ADDRESS); boolean_t complex = FALSE; vm_size_t space_needed = 0; vm_offset_t paddr = 0; vm_map_copy_t copy = VM_MAP_COPY_NULL; mach_msg_type_number_t i; mach_msg_return_t mr = MACH_MSG_SUCCESS; vm_size_t descriptor_size = 0; /* * Determine if the target is a kernel port. */ dest = (ipc_object_t) kmsg->ikm_header->msgh_remote_port; body = (mach_msg_body_t *) (kmsg->ikm_header + 1); naddr = (mach_msg_descriptor_t *) (body + 1); dsc_count = body->msgh_descriptor_count; if (dsc_count == 0) return MACH_MSG_SUCCESS; /* * Make an initial pass to determine kernal VM space requirements for * physical copies and possible contraction of the descriptors from * processes with pointers larger than the kernel's. */ daddr = NULL; for (i = 0; i < dsc_count; i++) { mach_msg_size_t size; daddr = naddr; /* make sure the descriptor fits in the message */ if (is_task_64bit) { switch (daddr->type.type) { case MACH_MSG_OOL_DESCRIPTOR: case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_PORTS_DESCRIPTOR: descriptor_size += 16; naddr = (typeof(naddr))((vm_offset_t)daddr + 16); break; default: descriptor_size += 12; naddr = (typeof(naddr))((vm_offset_t)daddr + 12); break; } } else { descriptor_size += 12; naddr = (typeof(naddr))((vm_offset_t)daddr + 12); } if (naddr > (mach_msg_descriptor_t *) ((vm_offset_t)kmsg->ikm_header + kmsg->ikm_header->msgh_size)) { ipc_kmsg_clean_partial(kmsg, 0, NULL, 0, 0); mr = MACH_SEND_MSG_TOO_SMALL; goto out; } switch (daddr->type.type) { case MACH_MSG_OOL_DESCRIPTOR: case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: size = (is_task_64bit) ? ((mach_msg_ool_descriptor64_t *)daddr)->size : daddr->out_of_line.size; if (daddr->out_of_line.copy != MACH_MSG_PHYSICAL_COPY && daddr->out_of_line.copy != MACH_MSG_VIRTUAL_COPY) { /* * Invalid copy option */ ipc_kmsg_clean_partial(kmsg, 0, NULL, 0, 0); mr = MACH_SEND_INVALID_TYPE; goto out; } if ((size >= MSG_OOL_SIZE_SMALL) && (daddr->out_of_line.copy == MACH_MSG_PHYSICAL_COPY) && !(daddr->out_of_line.deallocate)) { /* * Out-of-line memory descriptor, accumulate kernel * memory requirements */ if (space_needed + round_page(size) <= space_needed) { /* Overflow dectected */ ipc_kmsg_clean_partial(kmsg, 0, NULL, 0, 0); mr = MACH_MSG_VM_KERNEL; goto out; } space_needed += round_page(size); if (space_needed > ipc_kmsg_max_vm_space) { /* * Per message kernel memory limit exceeded */ ipc_kmsg_clean_partial(kmsg, 0, NULL, 0, 0); mr = MACH_MSG_VM_KERNEL; goto out; } } } } /* * Allocate space in the pageable kernel ipc copy map for all the * ool data that is to be physically copied. Map is marked wait for * space. */ if (space_needed) { if (vm_allocate(ipc_kernel_copy_map, &paddr, space_needed, VM_FLAGS_ANYWHERE | VM_MAKE_TAG(VM_KERN_MEMORY_IPC)) != KERN_SUCCESS) { ipc_kmsg_clean_partial(kmsg, 0, NULL, 0, 0); mr = MACH_MSG_VM_KERNEL; goto out; } } /* user_addr = just after base as it was copied in */ user_addr = (mach_msg_descriptor_t *)((vm_offset_t)kmsg->ikm_header + sizeof(mach_msg_base_t)); /* Shift the mach_msg_base_t down to make room for dsc_count*16bytes of descriptors */ if(descriptor_size != 16*dsc_count) { vm_offset_t dsc_adjust = 16*dsc_count - descriptor_size; memmove((char *)(((vm_offset_t)kmsg->ikm_header) - dsc_adjust), kmsg->ikm_header, sizeof(mach_msg_base_t)); kmsg->ikm_header = (mach_msg_header_t *)((vm_offset_t)kmsg->ikm_header - dsc_adjust); /* Update the message size for the larger in-kernel representation */ kmsg->ikm_header->msgh_size += (mach_msg_size_t)dsc_adjust; } /* kern_addr = just after base after it has been (conditionally) moved */ kern_addr = (mach_msg_descriptor_t *)((vm_offset_t)kmsg->ikm_header + sizeof(mach_msg_base_t)); /* handle the OOL regions and port descriptors. */ for(i=0;i<dsc_count;i++) { switch (user_addr->type.type) { case MACH_MSG_PORT_DESCRIPTOR: user_addr = ipc_kmsg_copyin_port_descriptor((mach_msg_port_descriptor_t *)kern_addr, (mach_msg_legacy_port_descriptor_t *)user_addr, space, dest, kmsg, &mr); kern_addr++; complex = TRUE; break; case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_DESCRIPTOR: user_addr = ipc_kmsg_copyin_ool_descriptor((mach_msg_ool_descriptor_t *)kern_addr, user_addr, is_task_64bit, &paddr, ©, &space_needed, map, &mr); kern_addr++; complex = TRUE; break; case MACH_MSG_OOL_PORTS_DESCRIPTOR: user_addr = ipc_kmsg_copyin_ool_ports_descriptor((mach_msg_ool_ports_descriptor_t *)kern_addr, user_addr, is_task_64bit, map, space, dest, kmsg, &mr); kern_addr++; complex = TRUE; break; default: /* Invalid descriptor */ mr = MACH_SEND_INVALID_TYPE; break; } if (MACH_MSG_SUCCESS != mr) { /* clean from start of message descriptors to i */ ipc_kmsg_clean_partial(kmsg, i, (mach_msg_descriptor_t *)((mach_msg_base_t *)kmsg->ikm_header + 1), paddr, space_needed); goto out; } } /* End of loop */ if (!complex) { kmsg->ikm_header->msgh_bits &= ~MACH_MSGH_BITS_COMPLEX; } out: return mr; } /* * Routine: ipc_kmsg_copyin * Purpose: * "Copy-in" port rights and out-of-line memory * in the message. * * In all failure cases, the message is left holding * no rights or memory. However, the message buffer * is not deallocated. If successful, the message * contains a valid destination port. * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS Successful copyin. * MACH_SEND_INVALID_HEADER * Illegal value in the message header bits. * MACH_SEND_INVALID_DEST Can't copyin destination port. * MACH_SEND_INVALID_REPLY Can't copyin reply port. * MACH_SEND_INVALID_MEMORY Can't grab out-of-line memory. * MACH_SEND_INVALID_RIGHT Can't copyin port right in body. * MACH_SEND_INVALID_TYPE Bad type specification. * MACH_SEND_MSG_TOO_SMALL Body is too small for types/data. */ mach_msg_return_t ipc_kmsg_copyin( ipc_kmsg_t kmsg, ipc_space_t space, vm_map_t map, mach_msg_priority_t override, mach_msg_option_t *optionp) { mach_msg_return_t mr; kmsg->ikm_header->msgh_bits &= MACH_MSGH_BITS_USER; mr = ipc_kmsg_copyin_header(kmsg, space, override, optionp); if (mr != MACH_MSG_SUCCESS) return mr; KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_IPC,MACH_IPC_MSG_SEND) | DBG_FUNC_NONE, VM_KERNEL_ADDRPERM((uintptr_t)kmsg), (uintptr_t)kmsg->ikm_header->msgh_bits, (uintptr_t)kmsg->ikm_header->msgh_id, VM_KERNEL_ADDRPERM((uintptr_t)unsafe_convert_port_to_voucher(kmsg->ikm_voucher)), 0); DEBUG_KPRINT_SYSCALL_IPC("ipc_kmsg_copyin header:\n%.8x\n%.8x\n%p\n%p\n%p\n%.8x\n", kmsg->ikm_header->msgh_size, kmsg->ikm_header->msgh_bits, kmsg->ikm_header->msgh_remote_port, kmsg->ikm_header->msgh_local_port, kmsg->ikm_voucher, kmsg->ikm_header->msgh_id); if ((kmsg->ikm_header->msgh_bits & MACH_MSGH_BITS_COMPLEX) == 0) return MACH_MSG_SUCCESS; mr = ipc_kmsg_copyin_body( kmsg, space, map); /* unreachable if !DEBUG */ __unreachable_ok_push if (DEBUG_KPRINT_SYSCALL_PREDICATE(DEBUG_KPRINT_SYSCALL_IPC_MASK)) { kprintf("body:\n"); uint32_t i; for(i=0;i*4 < (kmsg->ikm_header->msgh_size - sizeof(mach_msg_header_t));i++) { kprintf("%.4x\n",((uint32_t *)(kmsg->ikm_header + 1))[i]); } } __unreachable_ok_pop return mr; } /* * Routine: ipc_kmsg_copyin_from_kernel * Purpose: * "Copy-in" port rights and out-of-line memory * in a message sent from the kernel. * * Because the message comes from the kernel, * the implementation assumes there are no errors * or peculiarities in the message. * Conditions: * Nothing locked. */ mach_msg_return_t ipc_kmsg_copyin_from_kernel( ipc_kmsg_t kmsg) { mach_msg_bits_t bits = kmsg->ikm_header->msgh_bits; mach_msg_type_name_t rname = MACH_MSGH_BITS_REMOTE(bits); mach_msg_type_name_t lname = MACH_MSGH_BITS_LOCAL(bits); ipc_object_t remote = (ipc_object_t) kmsg->ikm_header->msgh_remote_port; ipc_object_t local = (ipc_object_t) kmsg->ikm_header->msgh_local_port; /* translate the destination and reply ports */ if (!IO_VALID(remote)) return MACH_SEND_INVALID_DEST; ipc_object_copyin_from_kernel(remote, rname); if (IO_VALID(local)) ipc_object_copyin_from_kernel(local, lname); /* * The common case is a complex message with no reply port, * because that is what the memory_object interface uses. */ if (bits == (MACH_MSGH_BITS_COMPLEX | MACH_MSGH_BITS(MACH_MSG_TYPE_COPY_SEND, 0))) { bits = (MACH_MSGH_BITS_COMPLEX | MACH_MSGH_BITS(MACH_MSG_TYPE_PORT_SEND, 0)); kmsg->ikm_header->msgh_bits = bits; } else { bits = (MACH_MSGH_BITS_OTHER(bits) | MACH_MSGH_BITS(ipc_object_copyin_type(rname), ipc_object_copyin_type(lname))); kmsg->ikm_header->msgh_bits = bits; if ((bits & MACH_MSGH_BITS_COMPLEX) == 0) return MACH_MSG_SUCCESS; } { mach_msg_descriptor_t *saddr; mach_msg_body_t *body; mach_msg_type_number_t i, count; body = (mach_msg_body_t *) (kmsg->ikm_header + 1); saddr = (mach_msg_descriptor_t *) (body + 1); count = body->msgh_descriptor_count; for (i = 0; i < count; i++, saddr++) { switch (saddr->type.type) { case MACH_MSG_PORT_DESCRIPTOR: { mach_msg_type_name_t name; ipc_object_t object; mach_msg_port_descriptor_t *dsc; dsc = &saddr->port; /* this is really the type SEND, SEND_ONCE, etc. */ name = dsc->disposition; object = (ipc_object_t) dsc->name; dsc->disposition = ipc_object_copyin_type(name); if (!IO_VALID(object)) { break; } ipc_object_copyin_from_kernel(object, name); /* CDY avoid circularity when the destination is also */ /* the kernel. This check should be changed into an */ /* assert when the new kobject model is in place since*/ /* ports will not be used in kernel to kernel chats */ if (((ipc_port_t)remote)->ip_receiver != ipc_space_kernel) { if ((dsc->disposition == MACH_MSG_TYPE_PORT_RECEIVE) && ipc_port_check_circularity((ipc_port_t) object, (ipc_port_t) remote)) { kmsg->ikm_header->msgh_bits |= MACH_MSGH_BITS_CIRCULAR; } } break; } case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_DESCRIPTOR: { /* * The sender should supply ready-made memory, i.e. * a vm_map_copy_t, so we don't need to do anything. */ break; } case MACH_MSG_OOL_PORTS_DESCRIPTOR: { ipc_object_t *objects; unsigned int j; mach_msg_type_name_t name; mach_msg_ool_ports_descriptor_t *dsc; dsc = (mach_msg_ool_ports_descriptor_t *)&saddr->ool_ports; /* this is really the type SEND, SEND_ONCE, etc. */ name = dsc->disposition; dsc->disposition = ipc_object_copyin_type(name); objects = (ipc_object_t *) dsc->address; for ( j = 0; j < dsc->count; j++) { ipc_object_t object = objects[j]; if (!IO_VALID(object)) continue; ipc_object_copyin_from_kernel(object, name); if ((dsc->disposition == MACH_MSG_TYPE_PORT_RECEIVE) && ipc_port_check_circularity( (ipc_port_t) object, (ipc_port_t) remote)) kmsg->ikm_header->msgh_bits |= MACH_MSGH_BITS_CIRCULAR; } break; } default: { #if MACH_ASSERT panic("ipc_kmsg_copyin_from_kernel: bad descriptor"); #endif /* MACH_ASSERT */ } } } } return MACH_MSG_SUCCESS; } #if IKM_SUPPORT_LEGACY mach_msg_return_t ipc_kmsg_copyin_from_kernel_legacy( ipc_kmsg_t kmsg) { mach_msg_bits_t bits = kmsg->ikm_header->msgh_bits; mach_msg_type_name_t rname = MACH_MSGH_BITS_REMOTE(bits); mach_msg_type_name_t lname = MACH_MSGH_BITS_LOCAL(bits); ipc_object_t remote = (ipc_object_t) kmsg->ikm_header->msgh_remote_port; ipc_object_t local = (ipc_object_t) kmsg->ikm_header->msgh_local_port; /* translate the destination and reply ports */ if (!IO_VALID(remote)) return MACH_SEND_INVALID_DEST; ipc_object_copyin_from_kernel(remote, rname); if (IO_VALID(local)) ipc_object_copyin_from_kernel(local, lname); /* * The common case is a complex message with no reply port, * because that is what the memory_object interface uses. */ if (bits == (MACH_MSGH_BITS_COMPLEX | MACH_MSGH_BITS(MACH_MSG_TYPE_COPY_SEND, 0))) { bits = (MACH_MSGH_BITS_COMPLEX | MACH_MSGH_BITS(MACH_MSG_TYPE_PORT_SEND, 0)); kmsg->ikm_header->msgh_bits = bits; } else { bits = (MACH_MSGH_BITS_OTHER(bits) | MACH_MSGH_BITS(ipc_object_copyin_type(rname), ipc_object_copyin_type(lname))); kmsg->ikm_header->msgh_bits = bits; if ((bits & MACH_MSGH_BITS_COMPLEX) == 0) return MACH_MSG_SUCCESS; } { mach_msg_legacy_descriptor_t *saddr; mach_msg_descriptor_t *daddr; mach_msg_body_t *body; mach_msg_type_number_t i, count; body = (mach_msg_body_t *) (kmsg->ikm_header + 1); saddr = (typeof(saddr)) (body + 1); count = body->msgh_descriptor_count; if(count) { vm_offset_t dsc_adjust = 4*count; memmove((char *)(((vm_offset_t)kmsg->ikm_header) - dsc_adjust), kmsg->ikm_header, sizeof(mach_msg_base_t)); kmsg->ikm_header = (mach_msg_header_t *)((vm_offset_t)kmsg->ikm_header - dsc_adjust); /* Update the message size for the larger in-kernel representation */ kmsg->ikm_header->msgh_size += dsc_adjust; } daddr = (mach_msg_descriptor_t *)((vm_offset_t)kmsg->ikm_header + sizeof(mach_msg_base_t)); for (i = 0; i < count; i++, saddr++, daddr++) { switch (saddr->type.type) { case MACH_MSG_PORT_DESCRIPTOR: { mach_msg_type_name_t name; ipc_object_t object; mach_msg_legacy_port_descriptor_t *dsc; mach_msg_port_descriptor_t *dest_dsc; dsc = (typeof(dsc))&saddr->port; dest_dsc = &daddr->port; /* this is really the type SEND, SEND_ONCE, etc. */ name = dsc->disposition; object = (ipc_object_t) CAST_MACH_NAME_TO_PORT(dsc->name); dest_dsc->disposition = ipc_object_copyin_type(name); dest_dsc->name = (mach_port_t)object; dest_dsc->type = MACH_MSG_PORT_DESCRIPTOR; if (!IO_VALID(object)) { break; } ipc_object_copyin_from_kernel(object, name); /* CDY avoid circularity when the destination is also */ /* the kernel. This check should be changed into an */ /* assert when the new kobject model is in place since*/ /* ports will not be used in kernel to kernel chats */ if (((ipc_port_t)remote)->ip_receiver != ipc_space_kernel) { if ((dest_dsc->disposition == MACH_MSG_TYPE_PORT_RECEIVE) && ipc_port_check_circularity((ipc_port_t) object, (ipc_port_t) remote)) { kmsg->ikm_header->msgh_bits |= MACH_MSGH_BITS_CIRCULAR; } } break; } case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_DESCRIPTOR: { /* The sender should supply ready-made memory, i.e. a vm_map_copy_t * so we don't need to do anything special. */ mach_msg_ool_descriptor32_t *source_dsc = &saddr->out_of_line32; mach_msg_ool_descriptor_t *dest_dsc = (typeof(dest_dsc))&daddr->out_of_line; vm_offset_t address = source_dsc->address; vm_size_t size = source_dsc->size; boolean_t deallocate = source_dsc->deallocate; mach_msg_copy_options_t copy = source_dsc->copy; mach_msg_descriptor_type_t type = source_dsc->type; dest_dsc->address = (void *)address; dest_dsc->size = size; dest_dsc->deallocate = deallocate; dest_dsc->copy = copy; dest_dsc->type = type; break; } case MACH_MSG_OOL_PORTS_DESCRIPTOR: { ipc_object_t *objects; unsigned int j; mach_msg_type_name_t name; mach_msg_ool_ports_descriptor_t *dest_dsc; mach_msg_ool_ports_descriptor32_t *source_dsc = &saddr->ool_ports32; dest_dsc = (typeof(dest_dsc))&daddr->ool_ports; boolean_t deallocate = source_dsc->deallocate; mach_msg_copy_options_t copy = source_dsc->copy; mach_msg_size_t port_count = source_dsc->count; mach_msg_type_name_t disposition = source_dsc->disposition; /* this is really the type SEND, SEND_ONCE, etc. */ name = disposition; disposition = ipc_object_copyin_type(name); objects = (ipc_object_t *) (uintptr_t)source_dsc->address; for ( j = 0; j < port_count; j++) { ipc_object_t object = objects[j]; if (!IO_VALID(object)) continue; ipc_object_copyin_from_kernel(object, name); if ((disposition == MACH_MSG_TYPE_PORT_RECEIVE) && ipc_port_check_circularity( (ipc_port_t) object, (ipc_port_t) remote)) kmsg->ikm_header->msgh_bits |= MACH_MSGH_BITS_CIRCULAR; } dest_dsc->address = objects; dest_dsc->deallocate = deallocate; dest_dsc->copy = copy; dest_dsc->disposition = disposition; dest_dsc->type = MACH_MSG_OOL_PORTS_DESCRIPTOR; dest_dsc->count = port_count; break; } default: { #if MACH_ASSERT panic("ipc_kmsg_copyin_from_kernel: bad descriptor"); #endif /* MACH_ASSERT */ } } } } return MACH_MSG_SUCCESS; } #endif /* IKM_SUPPORT_LEGACY */ /* * Routine: ipc_kmsg_copyout_header * Purpose: * "Copy-out" port rights in the header of a message. * Operates atomically; if it doesn't succeed the * message header and the space are left untouched. * If it does succeed the remote/local port fields * contain port names instead of object pointers, * and the bits field is updated. * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS Copied out port rights. * MACH_RCV_INVALID_NOTIFY * Notify is non-null and doesn't name a receive right. * (Either KERN_INVALID_NAME or KERN_INVALID_RIGHT.) * MACH_RCV_HEADER_ERROR|MACH_MSG_IPC_SPACE * The space is dead. * MACH_RCV_HEADER_ERROR|MACH_MSG_IPC_SPACE * No room in space for another name. * MACH_RCV_HEADER_ERROR|MACH_MSG_IPC_KERNEL * Couldn't allocate memory for the reply port. * MACH_RCV_HEADER_ERROR|MACH_MSG_IPC_KERNEL * Couldn't allocate memory for the dead-name request. */ mach_msg_return_t ipc_kmsg_copyout_header( ipc_kmsg_t kmsg, ipc_space_t space, mach_msg_option_t option) { mach_msg_header_t *msg = kmsg->ikm_header; mach_msg_bits_t mbits = msg->msgh_bits; ipc_port_t dest = (ipc_port_t) msg->msgh_remote_port; assert(IP_VALID(dest)); /* * While we still hold a reference on the received-from port, * process all send-possible notfications we received along with * the message. */ ipc_port_spnotify(dest); { mach_msg_type_name_t dest_type = MACH_MSGH_BITS_REMOTE(mbits); mach_msg_type_name_t reply_type = MACH_MSGH_BITS_LOCAL(mbits); mach_msg_type_name_t voucher_type = MACH_MSGH_BITS_VOUCHER(mbits); ipc_port_t reply = msg->msgh_local_port; ipc_port_t release_reply_port = IP_NULL; mach_port_name_t dest_name, reply_name; ipc_port_t voucher = kmsg->ikm_voucher; ipc_port_t release_voucher_port = IP_NULL; mach_port_name_t voucher_name; uint32_t entries_held = 0; boolean_t need_write_lock = FALSE; kern_return_t kr; /* * Reserve any potentially needed entries in the target space. * We'll free any unused before unlocking the space. */ if (IP_VALID(reply)) { entries_held++; need_write_lock = TRUE; } if (IP_VALID(voucher)) { assert(voucher_type == MACH_MSG_TYPE_MOVE_SEND); if ((option & MACH_RCV_VOUCHER) != 0) entries_held++; need_write_lock = TRUE; } if (need_write_lock) { is_write_lock(space); while(entries_held) { if (!is_active(space)) { is_write_unlock(space); return (MACH_RCV_HEADER_ERROR| MACH_MSG_IPC_SPACE); } kr = ipc_entries_hold(space, entries_held); if (KERN_SUCCESS == kr) break; kr = ipc_entry_grow_table(space, ITS_SIZE_NONE); if (KERN_SUCCESS != kr) return(MACH_RCV_HEADER_ERROR| MACH_MSG_IPC_SPACE); /* space was unlocked and relocked - retry */ } /* Handle reply port. */ if (IP_VALID(reply)) { ipc_entry_t entry; /* Is there already an entry we can use? */ if ((reply_type != MACH_MSG_TYPE_PORT_SEND_ONCE) && ipc_right_reverse(space, (ipc_object_t) reply, &reply_name, &entry)) { /* reply port is locked and active */ assert(entry->ie_bits & MACH_PORT_TYPE_SEND_RECEIVE); } else { ip_lock(reply); if (!ip_active(reply)) { ip_unlock(reply); release_reply_port = reply; reply = IP_DEAD; reply_name = MACH_PORT_DEAD; goto done_with_reply; } /* claim a held entry for the reply port */ assert(entries_held > 0); entries_held--; ipc_entry_claim(space, &reply_name, &entry); assert(IE_BITS_TYPE(entry->ie_bits) == MACH_PORT_TYPE_NONE); assert(entry->ie_object == IO_NULL); entry->ie_object = (ipc_object_t) reply; } /* space and reply port are locked and active */ ip_reference(reply); /* hold onto the reply port */ kr = ipc_right_copyout(space, reply_name, entry, reply_type, TRUE, (ipc_object_t) reply); assert(kr == KERN_SUCCESS); /* reply port is unlocked */ } else reply_name = CAST_MACH_PORT_TO_NAME(reply); done_with_reply: /* Handle voucher port. */ if (voucher_type != MACH_MSGH_BITS_ZERO) { assert(voucher_type == MACH_MSG_TYPE_MOVE_SEND); if (!IP_VALID(voucher)) { if ((option & MACH_RCV_VOUCHER) == 0) { voucher_type = MACH_MSGH_BITS_ZERO; } voucher_name = MACH_PORT_NULL; goto done_with_voucher; } /* clear voucher from its hiding place back in the kmsg */ kmsg->ikm_voucher = IP_NULL; if ((option & MACH_RCV_VOUCHER) != 0) { ipc_entry_t entry; if (ipc_right_reverse(space, (ipc_object_t) voucher, &voucher_name, &entry)) { /* voucher port locked */ assert(entry->ie_bits & MACH_PORT_TYPE_SEND); } else { assert(entries_held > 0); entries_held--; ipc_entry_claim(space, &voucher_name, &entry); assert(IE_BITS_TYPE(entry->ie_bits) == MACH_PORT_TYPE_NONE); assert(entry->ie_object == IO_NULL); entry->ie_object = (ipc_object_t) voucher; ip_lock(voucher); } /* space is locked and active */ assert(ip_active(voucher)); assert(ip_kotype(voucher) == IKOT_VOUCHER); kr = ipc_right_copyout(space, voucher_name, entry, MACH_MSG_TYPE_MOVE_SEND, TRUE, (ipc_object_t) voucher); /* voucher port is unlocked */ } else { voucher_type = MACH_MSGH_BITS_ZERO; release_voucher_port = voucher; voucher_name = MACH_PORT_NULL; } } else { voucher_name = msg->msgh_voucher_port; } done_with_voucher: ip_lock(dest); is_write_unlock(space); } else { /* * No reply or voucher port! This is an easy case. * We only need to have the space locked * when locking the destination. */ is_read_lock(space); if (!is_active(space)) { is_read_unlock(space); return MACH_RCV_HEADER_ERROR|MACH_MSG_IPC_SPACE; } ip_lock(dest); is_read_unlock(space); reply_name = CAST_MACH_PORT_TO_NAME(reply); if (voucher_type != MACH_MSGH_BITS_ZERO) { assert(voucher_type == MACH_MSG_TYPE_MOVE_SEND); if ((option & MACH_RCV_VOUCHER) == 0) { voucher_type = MACH_MSGH_BITS_ZERO; } voucher_name = MACH_PORT_NULL; } else { voucher_name = msg->msgh_voucher_port; } } /* * At this point, the space is unlocked and the destination * port is locked. (Lock taken while space was locked.) * reply_name is taken care of; we still need dest_name. * We still hold a ref for reply (if it is valid). * * If the space holds receive rights for the destination, * we return its name for the right. Otherwise the task * managed to destroy or give away the receive right between * receiving the message and this copyout. If the destination * is dead, return MACH_PORT_DEAD, and if the receive right * exists somewhere else (another space, in transit) * return MACH_PORT_NULL. * * Making this copyout operation atomic with the previous * copyout of the reply port is a bit tricky. If there was * no real reply port (it wasn't IP_VALID) then this isn't * an issue. If the reply port was dead at copyout time, * then we are OK, because if dest is dead we serialize * after the death of both ports and if dest is alive * we serialize after reply died but before dest's (later) death. * So assume reply was alive when we copied it out. If dest * is alive, then we are OK because we serialize before * the ports' deaths. So assume dest is dead when we look at it. * If reply dies/died after dest, then we are OK because * we serialize after dest died but before reply dies. * So the hard case is when reply is alive at copyout, * dest is dead at copyout, and reply died before dest died. * In this case pretend that dest is still alive, so * we serialize while both ports are alive. * * Because the space lock is held across the copyout of reply * and locking dest, the receive right for dest can't move * in or out of the space while the copyouts happen, so * that isn't an atomicity problem. In the last hard case * above, this implies that when dest is dead that the * space couldn't have had receive rights for dest at * the time reply was copied-out, so when we pretend * that dest is still alive, we can return MACH_PORT_NULL. * * If dest == reply, then we have to make it look like * either both copyouts happened before the port died, * or both happened after the port died. This special * case works naturally if the timestamp comparison * is done correctly. */ if (ip_active(dest)) { ipc_object_copyout_dest(space, (ipc_object_t) dest, dest_type, &dest_name); /* dest is unlocked */ } else { ipc_port_timestamp_t timestamp; timestamp = dest->ip_timestamp; ip_unlock(dest); ip_release(dest); if (IP_VALID(reply)) { ip_lock(reply); if (ip_active(reply) || IP_TIMESTAMP_ORDER(timestamp, reply->ip_timestamp)) dest_name = MACH_PORT_DEAD; else dest_name = MACH_PORT_NULL; ip_unlock(reply); } else dest_name = MACH_PORT_DEAD; } if (IP_VALID(reply)) ip_release(reply); if (IP_VALID(release_reply_port)) { if (reply_type == MACH_MSG_TYPE_PORT_SEND_ONCE) ipc_port_release_sonce(release_reply_port); else ipc_port_release_send(release_reply_port); } if (IP_VALID(release_voucher_port)) ipc_port_release_send(release_voucher_port); if ((option & MACH_RCV_VOUCHER) != 0) { KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_IPC, MACH_IPC_MSG_RECV) | DBG_FUNC_NONE, VM_KERNEL_ADDRPERM((uintptr_t)kmsg), (uintptr_t)kmsg->ikm_header->msgh_bits, (uintptr_t)kmsg->ikm_header->msgh_id, VM_KERNEL_ADDRPERM((uintptr_t)unsafe_convert_port_to_voucher(voucher)), 0); } else { KERNEL_DEBUG_CONSTANT(MACHDBG_CODE(DBG_MACH_IPC, MACH_IPC_MSG_RECV_VOUCHER_REFUSED) | DBG_FUNC_NONE, VM_KERNEL_ADDRPERM((uintptr_t)kmsg), (uintptr_t)kmsg->ikm_header->msgh_bits, (uintptr_t)kmsg->ikm_header->msgh_id, VM_KERNEL_ADDRPERM((uintptr_t)unsafe_convert_port_to_voucher(voucher)), 0); } msg->msgh_bits = MACH_MSGH_BITS_SET(reply_type, dest_type, voucher_type, mbits); msg->msgh_local_port = CAST_MACH_NAME_TO_PORT(dest_name); msg->msgh_remote_port = CAST_MACH_NAME_TO_PORT(reply_name); msg->msgh_voucher_port = voucher_name; } return MACH_MSG_SUCCESS; } /* * Routine: ipc_kmsg_copyout_object * Purpose: * Copy-out a port right. Always returns a name, * even for unsuccessful return codes. Always * consumes the supplied object. * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS The space acquired the right * (name is valid) or the object is dead (MACH_PORT_DEAD). * MACH_MSG_IPC_SPACE No room in space for the right, * or the space is dead. (Name is MACH_PORT_NULL.) * MACH_MSG_IPC_KERNEL Kernel resource shortage. * (Name is MACH_PORT_NULL.) */ mach_msg_return_t ipc_kmsg_copyout_object( ipc_space_t space, ipc_object_t object, mach_msg_type_name_t msgt_name, mach_port_name_t *namep) { kern_return_t kr; if (!IO_VALID(object)) { *namep = CAST_MACH_PORT_TO_NAME(object); return MACH_MSG_SUCCESS; } kr = ipc_object_copyout(space, object, msgt_name, TRUE, namep); if (kr != KERN_SUCCESS) { ipc_object_destroy(object, msgt_name); if (kr == KERN_INVALID_CAPABILITY) *namep = MACH_PORT_DEAD; else { *namep = MACH_PORT_NULL; if (kr == KERN_RESOURCE_SHORTAGE) return MACH_MSG_IPC_KERNEL; else return MACH_MSG_IPC_SPACE; } } return MACH_MSG_SUCCESS; } mach_msg_descriptor_t * ipc_kmsg_copyout_port_descriptor(mach_msg_descriptor_t *dsc, mach_msg_descriptor_t *user_dsc, ipc_space_t space, kern_return_t *mr); mach_msg_descriptor_t * ipc_kmsg_copyout_port_descriptor(mach_msg_descriptor_t *dsc, mach_msg_descriptor_t *dest_dsc, ipc_space_t space, kern_return_t *mr) { mach_port_t port; mach_port_name_t name; mach_msg_type_name_t disp; /* Copyout port right carried in the message */ port = dsc->port.name; disp = dsc->port.disposition; *mr |= ipc_kmsg_copyout_object(space, (ipc_object_t)port, disp, &name); if(current_task() == kernel_task) { mach_msg_port_descriptor_t *user_dsc = (typeof(user_dsc))dest_dsc; user_dsc--; // point to the start of this port descriptor user_dsc->name = CAST_MACH_NAME_TO_PORT(name); user_dsc->disposition = disp; user_dsc->type = MACH_MSG_PORT_DESCRIPTOR; dest_dsc = (typeof(dest_dsc))user_dsc; } else { mach_msg_legacy_port_descriptor_t *user_dsc = (typeof(user_dsc))dest_dsc; user_dsc--; // point to the start of this port descriptor user_dsc->name = CAST_MACH_PORT_TO_NAME(name); user_dsc->disposition = disp; user_dsc->type = MACH_MSG_PORT_DESCRIPTOR; dest_dsc = (typeof(dest_dsc))user_dsc; } return (mach_msg_descriptor_t *)dest_dsc; } mach_msg_descriptor_t * ipc_kmsg_copyout_ool_descriptor(mach_msg_ool_descriptor_t *dsc, mach_msg_descriptor_t *user_dsc, int is_64bit, vm_map_t map, mach_msg_return_t *mr); mach_msg_descriptor_t * ipc_kmsg_copyout_ool_descriptor(mach_msg_ool_descriptor_t *dsc, mach_msg_descriptor_t *user_dsc, int is_64bit, vm_map_t map, mach_msg_return_t *mr) { vm_map_copy_t copy; vm_map_address_t rcv_addr; mach_msg_copy_options_t copy_options; vm_map_size_t size; mach_msg_descriptor_type_t dsc_type; //SKIP_PORT_DESCRIPTORS(saddr, sdsc_count); copy = (vm_map_copy_t)dsc->address; size = (vm_map_size_t)dsc->size; copy_options = dsc->copy; assert(copy_options != MACH_MSG_KALLOC_COPY_T); dsc_type = dsc->type; if (copy != VM_MAP_COPY_NULL) { kern_return_t kr; rcv_addr = 0; if (vm_map_copy_validate_size(map, copy, &size) == FALSE) panic("Inconsistent OOL/copyout size on %p: expected %d, got %lld @%p", dsc, dsc->size, (unsigned long long)copy->size, copy); kr = vm_map_copyout_size(map, &rcv_addr, copy, size); if (kr != KERN_SUCCESS) { if (kr == KERN_RESOURCE_SHORTAGE) *mr |= MACH_MSG_VM_KERNEL; else *mr |= MACH_MSG_VM_SPACE; vm_map_copy_discard(copy); rcv_addr = 0; size = 0; } } else { rcv_addr = 0; size = 0; } /* * Now update the descriptor as the user would see it. * This may require expanding the descriptor to the user * visible size. There is already space allocated for * this in what naddr points to. */ if(current_task() == kernel_task) { mach_msg_ool_descriptor_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; user_ool_dsc--; user_ool_dsc->address = (void *)(uintptr_t)rcv_addr; user_ool_dsc->deallocate = (copy_options == MACH_MSG_VIRTUAL_COPY) ? TRUE : FALSE; user_ool_dsc->copy = copy_options; user_ool_dsc->type = dsc_type; user_ool_dsc->size = (mach_msg_size_t)size; user_dsc = (typeof(user_dsc))user_ool_dsc; } else if (is_64bit) { mach_msg_ool_descriptor64_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; user_ool_dsc--; user_ool_dsc->address = rcv_addr; user_ool_dsc->deallocate = (copy_options == MACH_MSG_VIRTUAL_COPY) ? TRUE : FALSE; user_ool_dsc->copy = copy_options; user_ool_dsc->type = dsc_type; user_ool_dsc->size = (mach_msg_size_t)size; user_dsc = (typeof(user_dsc))user_ool_dsc; } else { mach_msg_ool_descriptor32_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; user_ool_dsc--; user_ool_dsc->address = CAST_DOWN_EXPLICIT(uint32_t, rcv_addr); user_ool_dsc->size = (mach_msg_size_t)size; user_ool_dsc->deallocate = (copy_options == MACH_MSG_VIRTUAL_COPY) ? TRUE : FALSE; user_ool_dsc->copy = copy_options; user_ool_dsc->type = dsc_type; user_dsc = (typeof(user_dsc))user_ool_dsc; } return user_dsc; } mach_msg_descriptor_t * ipc_kmsg_copyout_ool_ports_descriptor(mach_msg_ool_ports_descriptor_t *dsc, mach_msg_descriptor_t *user_dsc, int is_64bit, vm_map_t map, ipc_space_t space, ipc_kmsg_t kmsg, mach_msg_return_t *mr); mach_msg_descriptor_t * ipc_kmsg_copyout_ool_ports_descriptor(mach_msg_ool_ports_descriptor_t *dsc, mach_msg_descriptor_t *user_dsc, int is_64bit, vm_map_t map, ipc_space_t space, ipc_kmsg_t kmsg, mach_msg_return_t *mr) { mach_vm_offset_t rcv_addr = 0; mach_msg_type_name_t disp; mach_msg_type_number_t count, i; vm_size_t ports_length, names_length; mach_msg_copy_options_t copy_options = MACH_MSG_VIRTUAL_COPY; //SKIP_PORT_DESCRIPTORS(saddr, sdsc_count); count = dsc->count; disp = dsc->disposition; ports_length = count * sizeof(mach_port_t); names_length = count * sizeof(mach_port_name_t); if (ports_length != 0 && dsc->address != 0) { /* * Check to see if there is an overwrite descriptor * specified in the scatter list for this ool data. * The descriptor has already been verified. */ #if 0 if (saddr != MACH_MSG_DESCRIPTOR_NULL) { if (differs) { OTHER_OOL_DESCRIPTOR *scatter_dsc; scatter_dsc = (OTHER_OOL_DESCRIPTOR *)saddr; rcv_addr = (mach_vm_offset_t) scatter_dsc->address; copy_options = scatter_dsc->copy; } else { mach_msg_ool_descriptor_t *scatter_dsc; scatter_dsc = &saddr->out_of_line; rcv_addr = CAST_USER_ADDR_T(scatter_dsc->address); copy_options = scatter_dsc->copy; } INCREMENT_SCATTER(saddr, sdsc_count, differs); } #endif if (copy_options == MACH_MSG_VIRTUAL_COPY) { /* * Dynamically allocate the region */ int anywhere = VM_FLAGS_ANYWHERE; if (vm_kernel_map_is_kernel(map)) anywhere |= VM_MAKE_TAG(VM_KERN_MEMORY_IPC); else anywhere |= VM_MAKE_TAG(VM_MEMORY_MACH_MSG); kern_return_t kr; if ((kr = mach_vm_allocate(map, &rcv_addr, (mach_vm_size_t)names_length, anywhere)) != KERN_SUCCESS) { ipc_kmsg_clean_body(kmsg, 1, (mach_msg_descriptor_t *)dsc); rcv_addr = 0; if (kr == KERN_RESOURCE_SHORTAGE){ *mr |= MACH_MSG_VM_KERNEL; } else { *mr |= MACH_MSG_VM_SPACE; } } } /* * Handle the port rights and copy out the names * for those rights out to user-space. */ if (rcv_addr != 0) { mach_port_t *objects = (mach_port_t *) dsc->address; mach_port_name_t *names = (mach_port_name_t *) dsc->address; /* copyout port rights carried in the message */ for ( i = 0; i < count ; i++) { ipc_object_t object = (ipc_object_t)objects[i]; *mr |= ipc_kmsg_copyout_object(space, object, disp, &names[i]); } /* copyout to memory allocated above */ void *data = dsc->address; if (copyoutmap(map, data, rcv_addr, names_length) != KERN_SUCCESS) *mr |= MACH_MSG_VM_SPACE; kfree(data, ports_length); } } else { rcv_addr = 0; } /* * Now update the descriptor based on the information * calculated above. */ if(current_task() == kernel_task) { mach_msg_ool_ports_descriptor_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; user_ool_dsc--; user_ool_dsc->address = (void *)(uintptr_t)rcv_addr; user_ool_dsc->deallocate = (copy_options == MACH_MSG_VIRTUAL_COPY) ? TRUE : FALSE; user_ool_dsc->copy = copy_options; user_ool_dsc->disposition = disp; user_ool_dsc->type = MACH_MSG_OOL_PORTS_DESCRIPTOR; user_ool_dsc->count = count; user_dsc = (typeof(user_dsc))user_ool_dsc; } if (is_64bit) { mach_msg_ool_ports_descriptor64_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; user_ool_dsc--; user_ool_dsc->address = rcv_addr; user_ool_dsc->deallocate = (copy_options == MACH_MSG_VIRTUAL_COPY) ? TRUE : FALSE; user_ool_dsc->copy = copy_options; user_ool_dsc->disposition = disp; user_ool_dsc->type = MACH_MSG_OOL_PORTS_DESCRIPTOR; user_ool_dsc->count = count; user_dsc = (typeof(user_dsc))user_ool_dsc; } else { mach_msg_ool_ports_descriptor32_t *user_ool_dsc = (typeof(user_ool_dsc))user_dsc; user_ool_dsc--; user_ool_dsc->address = CAST_DOWN_EXPLICIT(uint32_t, rcv_addr); user_ool_dsc->count = count; user_ool_dsc->deallocate = (copy_options == MACH_MSG_VIRTUAL_COPY) ? TRUE : FALSE; user_ool_dsc->copy = copy_options; user_ool_dsc->disposition = disp; user_ool_dsc->type = MACH_MSG_OOL_PORTS_DESCRIPTOR; user_dsc = (typeof(user_dsc))user_ool_dsc; } return user_dsc; } /* * Routine: ipc_kmsg_copyout_body * Purpose: * "Copy-out" port rights and out-of-line memory * in the body of a message. * * The error codes are a combination of special bits. * The copyout proceeds despite errors. * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS Successful copyout. * MACH_MSG_IPC_SPACE No room for port right in name space. * MACH_MSG_VM_SPACE No room for memory in address space. * MACH_MSG_IPC_KERNEL Resource shortage handling port right. * MACH_MSG_VM_KERNEL Resource shortage handling memory. * MACH_MSG_INVALID_RT_DESCRIPTOR Descriptor incompatible with RT */ mach_msg_return_t ipc_kmsg_copyout_body( ipc_kmsg_t kmsg, ipc_space_t space, vm_map_t map, mach_msg_body_t *slist) { mach_msg_body_t *body; mach_msg_descriptor_t *kern_dsc, *user_dsc; mach_msg_descriptor_t *saddr; mach_msg_type_number_t dsc_count, sdsc_count; int i; mach_msg_return_t mr = MACH_MSG_SUCCESS; boolean_t is_task_64bit = (map->max_offset > VM_MAX_ADDRESS); body = (mach_msg_body_t *) (kmsg->ikm_header + 1); dsc_count = body->msgh_descriptor_count; kern_dsc = (mach_msg_descriptor_t *) (body + 1); /* Point user_dsc just after the end of all the descriptors */ user_dsc = &kern_dsc[dsc_count]; /* Do scatter list setup */ if (slist != MACH_MSG_BODY_NULL) { panic("Scatter lists disabled"); saddr = (mach_msg_descriptor_t *) (slist + 1); sdsc_count = slist->msgh_descriptor_count; } else { saddr = MACH_MSG_DESCRIPTOR_NULL; sdsc_count = 0; } /* Now process the descriptors */ for (i = dsc_count-1; i >= 0; i--) { switch (kern_dsc[i].type.type) { case MACH_MSG_PORT_DESCRIPTOR: user_dsc = ipc_kmsg_copyout_port_descriptor(&kern_dsc[i], user_dsc, space, &mr); break; case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_DESCRIPTOR : user_dsc = ipc_kmsg_copyout_ool_descriptor( (mach_msg_ool_descriptor_t *)&kern_dsc[i], user_dsc, is_task_64bit, map, &mr); break; case MACH_MSG_OOL_PORTS_DESCRIPTOR : user_dsc = ipc_kmsg_copyout_ool_ports_descriptor( (mach_msg_ool_ports_descriptor_t *)&kern_dsc[i], user_dsc, is_task_64bit, map, space, kmsg, &mr); break; default : { panic("untyped IPC copyout body: invalid message descriptor"); } } } if(user_dsc != kern_dsc) { vm_offset_t dsc_adjust = (vm_offset_t)user_dsc - (vm_offset_t)kern_dsc; memmove((char *)((vm_offset_t)kmsg->ikm_header + dsc_adjust), kmsg->ikm_header, sizeof(mach_msg_base_t)); kmsg->ikm_header = (mach_msg_header_t *)((vm_offset_t)kmsg->ikm_header + dsc_adjust); /* Update the message size for the smaller user representation */ kmsg->ikm_header->msgh_size -= (mach_msg_size_t)dsc_adjust; } return mr; } /* * Routine: ipc_kmsg_copyout_size * Purpose: * Compute the size of the message as copied out to the given * map. If the destination map's pointers are a different size * than the kernel's, we have to allow for expansion/ * contraction of the descriptors as appropriate. * Conditions: * Nothing locked. * Returns: * size of the message as it would be received. */ mach_msg_size_t ipc_kmsg_copyout_size( ipc_kmsg_t kmsg, vm_map_t map) { mach_msg_size_t send_size; send_size = kmsg->ikm_header->msgh_size; boolean_t is_task_64bit = (map->max_offset > VM_MAX_ADDRESS); #if defined(__LP64__) send_size -= LEGACY_HEADER_SIZE_DELTA; #endif if (kmsg->ikm_header->msgh_bits & MACH_MSGH_BITS_COMPLEX) { mach_msg_body_t *body; mach_msg_descriptor_t *saddr, *eaddr; body = (mach_msg_body_t *) (kmsg->ikm_header + 1); saddr = (mach_msg_descriptor_t *) (body + 1); eaddr = saddr + body->msgh_descriptor_count; for ( ; saddr < eaddr; saddr++ ) { switch (saddr->type.type) { case MACH_MSG_OOL_DESCRIPTOR: case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_PORTS_DESCRIPTOR: if(!is_task_64bit) send_size -= DESC_SIZE_ADJUSTMENT; break; case MACH_MSG_PORT_DESCRIPTOR: send_size -= DESC_SIZE_ADJUSTMENT; break; default: break; } } } return send_size; } /* * Routine: ipc_kmsg_copyout * Purpose: * "Copy-out" port rights and out-of-line memory * in the message. * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS Copied out all rights and memory. * MACH_RCV_HEADER_ERROR + special bits * Rights and memory in the message are intact. * MACH_RCV_BODY_ERROR + special bits * The message header was successfully copied out. * As much of the body was handled as possible. */ mach_msg_return_t ipc_kmsg_copyout( ipc_kmsg_t kmsg, ipc_space_t space, vm_map_t map, mach_msg_body_t *slist, mach_msg_option_t option) { mach_msg_return_t mr; mr = ipc_kmsg_copyout_header(kmsg, space, option); if (mr != MACH_MSG_SUCCESS) { return mr; } if (kmsg->ikm_header->msgh_bits & MACH_MSGH_BITS_COMPLEX) { mr = ipc_kmsg_copyout_body(kmsg, space, map, slist); if (mr != MACH_MSG_SUCCESS) mr |= MACH_RCV_BODY_ERROR; } return mr; } /* * Routine: ipc_kmsg_copyout_pseudo * Purpose: * Does a pseudo-copyout of the message. * This is like a regular copyout, except * that the ports in the header are handled * as if they are in the body. They aren't reversed. * * The error codes are a combination of special bits. * The copyout proceeds despite errors. * Conditions: * Nothing locked. * Returns: * MACH_MSG_SUCCESS Successful copyout. * MACH_MSG_IPC_SPACE No room for port right in name space. * MACH_MSG_VM_SPACE No room for memory in address space. * MACH_MSG_IPC_KERNEL Resource shortage handling port right. * MACH_MSG_VM_KERNEL Resource shortage handling memory. */ mach_msg_return_t ipc_kmsg_copyout_pseudo( ipc_kmsg_t kmsg, ipc_space_t space, vm_map_t map, mach_msg_body_t *slist) { mach_msg_bits_t mbits = kmsg->ikm_header->msgh_bits; ipc_object_t dest = (ipc_object_t) kmsg->ikm_header->msgh_remote_port; ipc_object_t reply = (ipc_object_t) kmsg->ikm_header->msgh_local_port; ipc_object_t voucher = (ipc_object_t) kmsg->ikm_voucher; mach_msg_type_name_t dest_type = MACH_MSGH_BITS_REMOTE(mbits); mach_msg_type_name_t reply_type = MACH_MSGH_BITS_LOCAL(mbits); mach_msg_type_name_t voucher_type = MACH_MSGH_BITS_VOUCHER(mbits); mach_port_name_t voucher_name = kmsg->ikm_header->msgh_voucher_port; mach_port_name_t dest_name, reply_name; mach_msg_return_t mr; assert(IO_VALID(dest)); #if 0 /* * If we did this here, it looks like we wouldn't need the undo logic * at the end of ipc_kmsg_send() in the error cases. Not sure which * would be more elegant to keep. */ ipc_importance_clean(kmsg); #else /* just assert it is already clean */ ipc_importance_assert_clean(kmsg); #endif mr = (ipc_kmsg_copyout_object(space, dest, dest_type, &dest_name) | ipc_kmsg_copyout_object(space, reply, reply_type, &reply_name)); kmsg->ikm_header->msgh_bits = mbits & MACH_MSGH_BITS_USER; kmsg->ikm_header->msgh_remote_port = CAST_MACH_NAME_TO_PORT(dest_name); kmsg->ikm_header->msgh_local_port = CAST_MACH_NAME_TO_PORT(reply_name); if (IO_VALID(voucher)) { assert(voucher_type == MACH_MSG_TYPE_MOVE_SEND); kmsg->ikm_voucher = IP_NULL; mr |= ipc_kmsg_copyout_object(space, voucher, voucher_type, &voucher_name); kmsg->ikm_header->msgh_voucher_port = voucher_name; } if (mbits & MACH_MSGH_BITS_COMPLEX) { mr |= ipc_kmsg_copyout_body(kmsg, space, map, slist); } return mr; } /* * Routine: ipc_kmsg_copyout_dest * Purpose: * Copies out the destination port in the message. * Destroys all other rights and memory in the message. * Conditions: * Nothing locked. */ void ipc_kmsg_copyout_dest( ipc_kmsg_t kmsg, ipc_space_t space) { mach_msg_bits_t mbits; ipc_object_t dest; ipc_object_t reply; ipc_object_t voucher; mach_msg_type_name_t dest_type; mach_msg_type_name_t reply_type; mach_msg_type_name_t voucher_type; mach_port_name_t dest_name, reply_name, voucher_name; mbits = kmsg->ikm_header->msgh_bits; dest = (ipc_object_t) kmsg->ikm_header->msgh_remote_port; reply = (ipc_object_t) kmsg->ikm_header->msgh_local_port; voucher = (ipc_object_t) kmsg->ikm_voucher; voucher_name = kmsg->ikm_header->msgh_voucher_port; dest_type = MACH_MSGH_BITS_REMOTE(mbits); reply_type = MACH_MSGH_BITS_LOCAL(mbits); voucher_type = MACH_MSGH_BITS_VOUCHER(mbits); assert(IO_VALID(dest)); ipc_importance_assert_clean(kmsg); io_lock(dest); if (io_active(dest)) { ipc_object_copyout_dest(space, dest, dest_type, &dest_name); /* dest is unlocked */ } else { io_unlock(dest); io_release(dest); dest_name = MACH_PORT_DEAD; } if (IO_VALID(reply)) { ipc_object_destroy(reply, reply_type); reply_name = MACH_PORT_NULL; } else reply_name = CAST_MACH_PORT_TO_NAME(reply); if (IO_VALID(voucher)) { assert(voucher_type == MACH_MSG_TYPE_MOVE_SEND); kmsg->ikm_voucher = IP_NULL; ipc_object_destroy((ipc_object_t)voucher, voucher_type); voucher_name = MACH_PORT_NULL; } kmsg->ikm_header->msgh_bits = MACH_MSGH_BITS_SET(reply_type, dest_type, voucher_type, mbits); kmsg->ikm_header->msgh_local_port = CAST_MACH_NAME_TO_PORT(dest_name); kmsg->ikm_header->msgh_remote_port = CAST_MACH_NAME_TO_PORT(reply_name); kmsg->ikm_header->msgh_voucher_port = voucher_name; if (mbits & MACH_MSGH_BITS_COMPLEX) { mach_msg_body_t *body; body = (mach_msg_body_t *) (kmsg->ikm_header + 1); ipc_kmsg_clean_body(kmsg, body->msgh_descriptor_count, (mach_msg_descriptor_t *)(body + 1)); } } /* * Routine: ipc_kmsg_copyout_to_kernel * Purpose: * Copies out the destination and reply ports in the message. * Leaves all other rights and memory in the message alone. * Conditions: * Nothing locked. * * Derived from ipc_kmsg_copyout_dest. * Use by mach_msg_rpc_from_kernel (which used to use copyout_dest). * We really do want to save rights and memory. */ void ipc_kmsg_copyout_to_kernel( ipc_kmsg_t kmsg, ipc_space_t space) { ipc_object_t dest; ipc_object_t reply; mach_msg_type_name_t dest_type; mach_msg_type_name_t reply_type; mach_port_name_t dest_name, reply_name; dest = (ipc_object_t) kmsg->ikm_header->msgh_remote_port; reply = (ipc_object_t) kmsg->ikm_header->msgh_local_port; dest_type = MACH_MSGH_BITS_REMOTE(kmsg->ikm_header->msgh_bits); reply_type = MACH_MSGH_BITS_LOCAL(kmsg->ikm_header->msgh_bits); assert(IO_VALID(dest)); io_lock(dest); if (io_active(dest)) { ipc_object_copyout_dest(space, dest, dest_type, &dest_name); /* dest is unlocked */ } else { io_unlock(dest); io_release(dest); dest_name = MACH_PORT_DEAD; } reply_name = CAST_MACH_PORT_TO_NAME(reply); kmsg->ikm_header->msgh_bits = (MACH_MSGH_BITS_OTHER(kmsg->ikm_header->msgh_bits) | MACH_MSGH_BITS(reply_type, dest_type)); kmsg->ikm_header->msgh_local_port = CAST_MACH_NAME_TO_PORT(dest_name); kmsg->ikm_header->msgh_remote_port = CAST_MACH_NAME_TO_PORT(reply_name); } #if IKM_SUPPORT_LEGACY void ipc_kmsg_copyout_to_kernel_legacy( ipc_kmsg_t kmsg, ipc_space_t space) { ipc_object_t dest; ipc_object_t reply; mach_msg_type_name_t dest_type; mach_msg_type_name_t reply_type; mach_port_name_t dest_name, reply_name; dest = (ipc_object_t) kmsg->ikm_header->msgh_remote_port; reply = (ipc_object_t) kmsg->ikm_header->msgh_local_port; dest_type = MACH_MSGH_BITS_REMOTE(kmsg->ikm_header->msgh_bits); reply_type = MACH_MSGH_BITS_LOCAL(kmsg->ikm_header->msgh_bits); assert(IO_VALID(dest)); io_lock(dest); if (io_active(dest)) { ipc_object_copyout_dest(space, dest, dest_type, &dest_name); /* dest is unlocked */ } else { io_unlock(dest); io_release(dest); dest_name = MACH_PORT_DEAD; } reply_name = CAST_MACH_PORT_TO_NAME(reply); kmsg->ikm_header->msgh_bits = (MACH_MSGH_BITS_OTHER(kmsg->ikm_header->msgh_bits) | MACH_MSGH_BITS(reply_type, dest_type)); kmsg->ikm_header->msgh_local_port = CAST_MACH_NAME_TO_PORT(dest_name); kmsg->ikm_header->msgh_remote_port = CAST_MACH_NAME_TO_PORT(reply_name); mach_msg_descriptor_t *saddr; mach_msg_legacy_descriptor_t *daddr; mach_msg_type_number_t i, count = ((mach_msg_base_t *)kmsg->ikm_header)->body.msgh_descriptor_count; saddr = (mach_msg_descriptor_t *) (((mach_msg_base_t *)kmsg->ikm_header) + 1); saddr = &saddr[count-1]; daddr = (mach_msg_legacy_descriptor_t *)&saddr[count]; daddr--; vm_offset_t dsc_adjust = 0; for (i = 0; i < count; i++, saddr--, daddr--) { switch (saddr->type.type) { case MACH_MSG_PORT_DESCRIPTOR: { mach_msg_port_descriptor_t *dsc = &saddr->port; mach_msg_legacy_port_descriptor_t *dest_dsc = &daddr->port; mach_port_t name = dsc->name; mach_msg_type_name_t disposition = dsc->disposition; dest_dsc->name = CAST_MACH_PORT_TO_NAME(name); dest_dsc->disposition = disposition; dest_dsc->type = MACH_MSG_PORT_DESCRIPTOR; break; } case MACH_MSG_OOL_VOLATILE_DESCRIPTOR: case MACH_MSG_OOL_DESCRIPTOR: { /* The sender should supply ready-made memory, i.e. a vm_map_copy_t * so we don't need to do anything special. */ mach_msg_ool_descriptor_t *source_dsc = (typeof(source_dsc))&saddr->out_of_line; mach_msg_ool_descriptor32_t *dest_dsc = &daddr->out_of_line32; vm_offset_t address = (vm_offset_t)source_dsc->address; vm_size_t size = source_dsc->size; boolean_t deallocate = source_dsc->deallocate; mach_msg_copy_options_t copy = source_dsc->copy; mach_msg_descriptor_type_t type = source_dsc->type; dest_dsc->address = address; dest_dsc->size = size; dest_dsc->deallocate = deallocate; dest_dsc->copy = copy; dest_dsc->type = type; break; } case MACH_MSG_OOL_PORTS_DESCRIPTOR: { mach_msg_ool_ports_descriptor_t *source_dsc = (typeof(source_dsc))&saddr->ool_ports; mach_msg_ool_ports_descriptor32_t *dest_dsc = &daddr->ool_ports32; vm_offset_t address = (vm_offset_t)source_dsc->address; vm_size_t port_count = source_dsc->count; boolean_t deallocate = source_dsc->deallocate; mach_msg_copy_options_t copy = source_dsc->copy; mach_msg_descriptor_type_t type = source_dsc->type; dest_dsc->address = address; dest_dsc->count = port_count; dest_dsc->deallocate = deallocate; dest_dsc->copy = copy; dest_dsc->type = type; break; } default: { #if MACH_ASSERT panic("ipc_kmsg_copyin_from_kernel: bad descriptor"); #endif /* MACH_ASSERT */ } } } if(count) { dsc_adjust = 4*count; memmove((char *)((vm_offset_t)kmsg->ikm_header + dsc_adjust), kmsg->ikm_header, sizeof(mach_msg_base_t)); kmsg->ikm_header = (mach_msg_header_t *)((vm_offset_t)kmsg->ikm_header + dsc_adjust); /* Update the message size for the smaller user representation */ kmsg->ikm_header->msgh_size -= dsc_adjust; } } #endif /* IKM_SUPPORT_LEGACY */ mach_msg_trailer_size_t ipc_kmsg_add_trailer(ipc_kmsg_t kmsg, ipc_space_t space __unused, mach_msg_option_t option, thread_t thread, mach_port_seqno_t seqno, boolean_t minimal_trailer, mach_vm_offset_t context) { mach_msg_max_trailer_t *trailer; (void)thread; trailer = (mach_msg_max_trailer_t *) ((vm_offset_t)kmsg->ikm_header + round_msg(kmsg->ikm_header->msgh_size)); if (!(option & MACH_RCV_TRAILER_MASK)) { return trailer->msgh_trailer_size; } trailer->msgh_seqno = seqno; trailer->msgh_context = context; trailer->msgh_trailer_size = REQUESTED_TRAILER_SIZE(thread_is_64bit(thread), option); if (minimal_trailer) { goto done; } if (MACH_RCV_TRAILER_ELEMENTS(option) >= MACH_RCV_TRAILER_ELEMENTS(MACH_RCV_TRAILER_AV)){ trailer->msgh_ad = 0; } /* * The ipc_kmsg_t holds a reference to the label of a label * handle, not the port. We must get a reference to the port * and a send right to copyout to the receiver. */ if (option & MACH_RCV_TRAILER_ELEMENTS (MACH_RCV_TRAILER_LABELS)) { trailer->msgh_labels.sender = 0; } done: return trailer->msgh_trailer_size; } |