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 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277
|
#ifdef NEED_MAKEFILE_EDIT
#error you must first edit and customize the makefile to your platform
#endif /* NEED_MAKEFILE_EDIT */
char netlib_id[]="\
@(#)netlib.c (c) Copyright 1993-2004 Hewlett-Packard Company. Version 2.3";
/****************************************************************/
/* */
/* netlib.c */
/* */
/* the common utility routines available to all... */
/* */
/* establish_control() establish the control socket */
/* calibrate_local_cpu() do local cpu calibration */
/* calibrate_remote_cpu() do remote cpu calibration */
/* send_request() send a request to the remote */
/* recv_response() receive a response from remote */
/* send_response() send a response to the remote */
/* recv_request() recv a request from the remote */
/* dump_request() dump request contents */
/* dump_response() dump response contents */
/* cpu_start() start measuring cpu */
/* cpu_stop() stop measuring cpu */
/* calc_cpu_util() calculate the cpu utilization */
/* calc_service_demand() calculate the service demand */
/* calc_thruput() calulate the tput in units */
/* calibrate() really calibrate local cpu */
/* identify_local() print local host information */
/* identify_remote() print remote host information */
/* format_number() format the number (KB, MB,etc) */
/* format_units() return the format in english */
/* msec_sleep() sleep for some msecs */
/* start_timer() start a timer */
/* */
/* the routines you get when DO_DLPI is defined... */
/* */
/* dl_open() open a file descriptor and */
/* attach to the card */
/* dl_mtu() find the MTU of the card */
/* dl_bind() bind the sap do the card */
/* dl_connect() sender's have of connect */
/* dl_accpet() receiver's half of connect */
/* dl_set_window() set the window size */
/* dl_stats() retrieve statistics */
/* dl_send_disc() initiate disconnect (sender) */
/* dl_recv_disc() accept disconnect (receiver) */
/****************************************************************/
/****************************************************************/
/* */
/* Global include files */
/* */
/****************************************************************/
/* It would seem that most of the includes being done here from */
/* "sys/" actually have higher-level wrappers at just /usr/include. */
/* This is based on a spot-check of a couple systems at my disposal. */
/* If you have trouble compiling you may want to add "sys/" raj 10/95 */
#include <limits.h>
#include <signal.h>
#ifdef MPE
# define NSIG _NSIG
#endif /* MPE */
#include <sys/types.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <assert.h>
#ifndef WIN32
/* at some point, I would like to get rid of all these "sys/" */
/* includes where appropriate. if you have a system that requires */
/* them, speak now, or your system may not comile later revisions of */
/* netperf. raj 1/96 */
#include <unistd.h>
#include <sys/stat.h>
#include <sys/times.h>
#ifndef MPE
#include <time.h>
#include <sys/time.h>
#endif /* MPE */
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <errno.h>
#include <sys/utsname.h>
#if !defined(MPE) && !defined(__VMS)
#include <sys/param.h>
#endif /* MPE */
#ifdef USE_LOOPER
#include <sys/mman.h>
#endif /* USE_LOOPER */
#else /* WIN32 */
#include <process.h>
#include <time.h>
#include <winsock2.h>
#ifdef DO_IPV6
#include <ws2tcpip.h>
#endif
#include <windows.h>
#define SIGALRM (14)
#define sleep(x) Sleep((x)*1000)
#endif /* WIN32 */
#ifdef _AIX
#include <sys/select.h>
#include <sys/sched.h>
#include <sys/pri.h>
#define PRIORITY PRI_LOW
#else/* _AIX */
#ifdef __sgi
#include <sys/prctl.h>
#include <sys/schedctl.h>
#define PRIORITY NDPLOMIN
#endif /* __sgi */
#endif /* _AIX */
#ifdef USE_PSTAT
#include <sys/dk.h>
#include <sys/pstat.h>
#endif /* USE_PSTAT */
#ifdef USE_KSTAT
#include <kstat.h>
#include <sys/sysinfo.h>
#endif /* USE_KSTAT */
#ifdef USE_PERFSTAT
#include <libperfstat.h>
#endif /*USE_PERFSTAT */
#ifdef USE_SYSCTL
#include <sys/sysctl.h>
#endif /* USE_SYSCTL */
/* not all systems seem to have the sysconf for page size. for those */
/* which do not, we will assume that the page size is 8192 bytes. */
/* this should be more than enough to be sure that there is no page */
/* or cache thrashing by looper processes on MP systems. otherwise */
/* that's really just too bad - such systems should define */
/* _SC_PAGE_SIZE - raj 4/95 */
#ifndef _SC_PAGE_SIZE
#ifdef WIN32
SYSTEM_INFO SystemInfo;
DWORD SysPageSize()
{
GetSystemInfo(&SystemInfo);
return SystemInfo.dwPageSize;
}
#define NETPERF_PAGE_SIZE SysPageSize()
#else
#define NETPERF_PAGE_SIZE 8192
#endif // WIN32
#else
#define NETPERF_PAGE_SIZE sysconf(_SC_PAGE_SIZE)
#endif /* _SC_PAGE_SIZE */
#ifdef DO_DLPI
#include <sys/stream.h>
#include <sys/stropts.h>
#include <sys/poll.h>
#ifdef __osf__
#include <sys/dlpihdr.h>
#else /* __osf__ */
#include <sys/dlpi.h>
#ifdef __hpux
#include <sys/dlpi_ext.h>
#endif /* __hpux */
#endif /* __osf__ */
#endif /* DO_DLPI */
#ifdef HISTOGRAM
#include "hist.h"
#endif /* HISTOGRAM */
/****************************************************************/
/* */
/* Local Include Files */
/* */
/****************************************************************/
#define NETLIB
#include "netlib.h"
#include "netsh.h"
#ifdef WIN32
#ifdef NT_PERF
//
// System CPU time information class.
// Used to get CPU time information.
//
// SDK\inc\ntexapi.h
// Function x8: SystemProcessorPerformanceInformation
// DataStructure: SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION
//
#define SystemProcessorPerformanceInformation 0x08
typedef struct
{
LARGE_INTEGER IdleTime;
LARGE_INTEGER KernelTime;
LARGE_INTEGER UserTime;
LARGE_INTEGER DpcTime;
LARGE_INTEGER InterruptTime;
LONG InterruptCount;
} SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION, *PSYSTEM_PROCESSOR_PERFORMANCE_INFORMATION;
//
// Calls to get the information
//
typedef ULONG (__stdcall *NT_QUERY_SYSTEM_INFORMATION)(
ULONG SystemInformationClass,
PVOID SystemInformation,
ULONG SystemInformationLength,
PULONG ReturnLength
);
NT_QUERY_SYSTEM_INFORMATION NtQuerySystemInformation = NULL;
#endif /* NT_PERF */
_inline LARGE_INTEGER ReadPerformanceCounter(VOID)
{
LARGE_INTEGER Counter;
QueryPerformanceCounter(&Counter);
return(Counter);
} // ReadperformanceCounter
static LARGE_INTEGER TickHz;
#endif // WIN32
/****************************************************************/
/* */
/* Global constants, macros and variables */
/* */
/****************************************************************/
#if defined(WIN32) || defined(__VMS)
struct timezone {
int dummy ;
} ;
#ifndef __VMS
SOCKET win_kludge_socket = INVALID_SOCKET;
#endif /* __VMS */
#endif /* WIN32 || __VMS */
#ifndef LONG_LONG_MAX
#define LONG_LONG_MAX 9223372036854775807LL
#endif /* LONG_LONG_MAX */
/* older versions of netperf knew about the HP kernel IDLE counter. */
/* this is now obsolete - in favor of either pstat(), times, or a */
/* process-level looper process. we also now require support for the */
/* "long" integer type. raj 4/95. */
int
lib_num_loc_cpus; /* the number of cpus in the system */
#define PAGES_PER_CHILD 2
#ifdef USE_PSTAT
long long
*lib_idle_address[MAXCPUS], /* addresses of the per-cpu idle counters */
lib_start_count[MAXCPUS], /* idle counter initial value per-cpu */
lib_end_count[MAXCPUS]; /* idle counter final value per-cpu */
long long
*lib_base_pointer;
#else
#ifdef USE_KSTAT
long
lib_start_count[MAXCPUS], /* idle counter initial value per-cpu */
lib_end_count[MAXCPUS]; /* idle counter final value per-cpu */
kstat_t *cpu_ks[MAXCPUS]; /* the addresses that kstat will need to
pull the cpu info from the kstat
interface. at least I think that is
what this is :) raj 8/2000 */
#else
#ifdef USE_PERFSTAT
long long
lib_start_count[MAXCPUS], /* idle counter initial value per-cpu */
lib_end_count[MAXCPUS]; /* idle counter final value per-cpu */
#else
#ifdef USE_PROC_STAT
long
lib_start_count[MAXCPUS], /* idle counter initial value per-cpu */
lib_end_count[MAXCPUS]; /* idle counter final value per-cpu */
#else
#ifdef USE_SYSCTL
long
lib_start_count[MAXCPUS], /* idle counter initial value per-cpu */
lib_end_count[MAXCPUS]; /* idle counter final value per-cpu */
/* this has been liberally cut and pasted from <sys/resource.h> on
FreeBSD. in general, this would be a bad idea, but I don't want to
have to do a _KERNEL define to get these and that is what
sys/resource.h seems to want. raj 2002-03-03 */
#define CP_USER 0
#define CP_NICE 1
#define CP_SYS 2
#define CP_INTR 3
#define CP_IDLE 4
#define CPUSTATES 5
#else
#ifdef USE_LOOPER
long
*lib_idle_address[MAXCPUS], /* addresses of the per-cpu idle counters */
lib_start_count[MAXCPUS], /* idle counter initial value per-cpu */
lib_end_count[MAXCPUS]; /* idle counter final value per-cpu */
long
*lib_base_pointer;
#ifdef WIN32
HANDLE
lib_idle_pids[MAXCPUS]; /* the pids (ok, handles) of the per-cpu */
/* idle loopers */
#else
int
lib_idle_pids[MAXCPUS]; /* the pids of the per-cpu idle loopers */
#endif /* WIN32 */
int
lib_idle_fd;
#endif /* USE_LOOPER */
#endif /* USE_SYSCTL */
#endif /* USE_PROC_STAT */
#endif /* USE_PERFSTAT */
#endif /* USE_KSTAT */
#endif /* USE_PSTAT */
int lib_use_idle;
int lib_loopers_running;
int cpu_method;
/* if there is no IDLE counter in the kernel */
#ifdef USE_PSTAT
struct pst_dynamic pst_dynamic_info;
long cp_time1[PST_MAX_CPUSTATES];
long cp_time2[PST_MAX_CPUSTATES];
#else
#ifdef WIN32
#ifdef NT_PERF
/* The NT performance data is accessed through the NtQuerySystemInformation
call. References to the PDH.DLL have been deleted. This structure
is the root for these data structures. */
typedef struct sPerfObj
{
LARGE_INTEGER StartTime;
LARGE_INTEGER EndTime;
SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION StartInfo[MAXCPUS +1];
SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION EndInfo[MAXCPUS +1];
} PerfObj, *PPerfObj;
static PerfObj *PerfCntrs;
// Forward declarations
PerfObj *InitPerfCntrs();
void RestartPerfCntrs(PerfObj *PerfCntrs);
double ReportPerfCntrs(PerfObj *PerfCntrs); /* returns CPU utilization */
void ClosePerfCntrs(PerfObj *PerfCntrs);
#endif /* NT_PERF */
#else
struct tms times_data1,
times_data2;
#endif /* WIN32 */
#endif
struct timeval time1, time2;
struct timezone tz;
float lib_elapsed,
lib_local_maxrate,
lib_remote_maxrate,
lib_local_cpu_util,
lib_remote_cpu_util;
float lib_local_per_cpu_util[MAXCPUS];
int *request_array;
int *response_array;
// INVALID_SOCKET == INVALID_HANDLE_VALUE == (unsigned int)(~0) == -1
SOCKET netlib_control = INVALID_SOCKET;
SOCKET server_sock = INVALID_SOCKET;
int tcp_proto_num;
/* in the past, I was overlaying a structure on an array of ints. now */
/* I am going to have a "real" structure, and point an array of ints */
/* at it. the real structure will be forced to the same alignment as */
/* the type "double." this change will mean that pre-2.1 netperfs */
/* cannot be mixed with 2.1 and later. raj 11/95 */
union netperf_request_struct netperf_request;
union netperf_response_struct netperf_response;
FILE *where;
char libfmt = 'm';
#ifdef DO_DLPI
/* some stuff for DLPI control messages */
#define DLPI_DATA_SIZE 2048
unsigned long control_data[DLPI_DATA_SIZE];
struct strbuf control_message = {DLPI_DATA_SIZE, 0, (char *)control_data};
#endif /* DO_DLPI */
#ifdef WIN32
HANDLE hAlarm = INVALID_HANDLE_VALUE;
#endif
int times_up;
#ifdef WIN32
/* we use a getopt implementation from net.sources */
/*
* get option letter from argument vector
*/
int
opterr = 1, /* should error messages be printed? */
optind = 1, /* index into parent argv vector */
optopt; /* character checked for validity */
char
*optarg; /* argument associated with option */
#define EMSG ""
#endif /* WIN32 */
static int measuring_cpu;
#ifdef INTERVALS
static unsigned int usec_per_itvl;
void
stop_itimer()
{
struct itimerval new_interval;
struct itimerval old_interval;
new_interval.it_interval.tv_sec = 0;
new_interval.it_interval.tv_usec = 0;
new_interval.it_value.tv_sec = 0;
new_interval.it_value.tv_usec = 0;
if (setitimer(ITIMER_REAL,&new_interval,&old_interval) != 0) {
/* there was a problem arming the interval timer */
perror("clusterperf: cluster_root: setitimer");
exit(1);
}
return;
}
#endif /* INTERVALS */
#ifdef WIN32
static void
error(char *pch)
{
if (!opterr) {
return; /* without printing */
}
fprintf(stderr, "%s: %s: %c\n",
(NULL != program) ? program : "getopt", pch, optopt);
}
int
getopt(int argc, char **argv, char *ostr)
{
static char *place = EMSG; /* option letter processing */
register char *oli; /* option letter list index */
if (!*place) {
/* update scanning pointer */
if (optind >= argc || *(place = argv[optind]) != '-' || !*++place) {
return EOF;
}
if (*place == '-') {
/* found "--" */
++optind;
place = EMSG ; /* Added by shiva for Netperf */
return EOF;
}
}
/* option letter okay? */
if ((optopt = (int)*place++) == (int)':'
|| !(oli = strchr(ostr, optopt))) {
if (!*place) {
++optind;
}
error("illegal option");
return BADCH;
}
if (*++oli != ':') {
/* don't need argument */
optarg = NULL;
if (!*place)
++optind;
} else {
/* need an argument */
if (*place) {
optarg = place; /* no white space */
} else if (argc <= ++optind) {
/* no arg */
place = EMSG;
error("option requires an argument");
return BADCH;
} else {
optarg = argv[optind]; /* white space */
}
place = EMSG;
++optind;
}
return optopt; /* return option letter */
}
#endif /* WIN32 */
/*----------------------------------------------------------------------------
* WIN32 implementation of perror, does not deal very well with WSA errors
* The stdlib.h version of perror only deals with the ancient XENIX error codes.
*
* +*+SAF Why can't all WSA errors go through GetLastError? Most seem to...
*--------------------------------------------------------------------------*/
#ifdef WIN32
void PrintWin32Error(FILE *stream, LPSTR text)
{
LPSTR szTemp;
DWORD dwResult;
DWORD dwError;
dwError = GetLastError();
dwResult = FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM |FORMAT_MESSAGE_ARGUMENT_ARRAY,
NULL,
dwError,
LANG_NEUTRAL,
(LPTSTR)&szTemp,
0,
NULL );
if (dwResult)
fprintf(stream, "%s: %s\n", text, szTemp);
else
fprintf(stream, "%s: error 0x%x\n", text, dwError);
fflush(stream);
if (szTemp)
LocalFree((HLOCAL)szTemp);
}
#endif /* WIN32 */
double
ntohd(double net_double)
{
/* we rely on things being nicely packed */
union {
double whole_thing;
unsigned int words[2];
unsigned char bytes[8];
} conv_rec;
unsigned char scratch;
int i;
/* on those systems where ntohl is a no-op, we want to return the */
/* original value, unchanged */
if (ntohl(1L) == 1L) {
return(net_double);
}
conv_rec.whole_thing = net_double;
/* we know that in the message passing routines that ntohl will have */
/* been called on the 32 bit quantities. we need to put those back */
/* the way they belong before we swap */
conv_rec.words[0] = htonl(conv_rec.words[0]);
conv_rec.words[1] = htonl(conv_rec.words[1]);
/* now swap */
for (i=0; i<= 3; i++) {
scratch = conv_rec.bytes[i];
conv_rec.bytes[i] = conv_rec.bytes[7-i];
conv_rec.bytes[7-i] = scratch;
}
return(conv_rec.whole_thing);
}
double
htond(double host_double)
{
/* we rely on things being nicely packed */
union {
double whole_thing;
unsigned int words[2];
unsigned char bytes[8];
} conv_rec;
unsigned char scratch;
int i;
/* on those systems where ntohl is a no-op, we want to return the */
/* original value, unchanged */
if (ntohl(1L) == 1L) {
return(host_double);
}
conv_rec.whole_thing = host_double;
/* now swap */
for (i=0; i<= 3; i++) {
scratch = conv_rec.bytes[i];
conv_rec.bytes[i] = conv_rec.bytes[7-i];
conv_rec.bytes[7-i] = scratch;
}
/* we know that in the message passing routines htonl will */
/* be called on the 32 bit quantities. we need to set things up so */
/* that when this happens, the proper order will go out on the */
/* network */
conv_rec.words[0] = htonl(conv_rec.words[0]);
conv_rec.words[1] = htonl(conv_rec.words[1]);
return(conv_rec.whole_thing);
}
int
get_num_cpus()
{
/* on HP-UX, even when we use the looper procs we need the pstat */
/* call */
int temp_cpus;
#ifdef __hpux
#include <sys/pstat.h>
struct pst_dynamic psd;
if (pstat_getdynamic((struct pst_dynamic *)&psd,
(size_t)sizeof(psd), (size_t)1, 0) != -1) {
temp_cpus = psd.psd_proc_cnt;
}
else {
temp_cpus = 1;
}
#else
/* MW: <unistd.h> was included for non-Windows systems above. */
/* Thus if _SC_NPROC_ONLN is defined, we should be able to use sysconf. */
#ifdef _SC_NPROCESSORS_ONLN
temp_cpus = sysconf(_SC_NPROCESSORS_ONLN);
#ifdef USE_PERFSTAT
temp_cpus = perfstat_cpu(NULL,NULL, sizeof(perfstat_cpu_t), 0);
#endif /* USE_PERFSTAT */
#else /* no _SC_NPROCESSORS_ONLN */
#ifdef WIN32
GetSystemInfo(&SystemInfo);
temp_cpus = SystemInfo.dwNumberOfProcessors;
#else
/* we need to know some other ways to do this, or just fall-back on */
/* a global command line option - raj 4/95 */
temp_cpus = shell_num_cpus;
#endif // WIN32
#endif /* _SC_NPROCESSORS_ONLN */
#endif /* __hpux */
if (temp_cpus > MAXCPUS) {
fprintf(where,
"Sorry, this system has more CPUs (%d) than I can handle (%d).\n",
temp_cpus,
MAXCPUS);
fprintf(where,
"Please alter MAXCPUS in netlib.h and recompile.\n");
fflush(where);
exit(1);
}
return(temp_cpus);
}
#ifdef WIN32
/*
* Number of 100 nanosecond units from 1/1/1601 to 1/1/1970
*/
#define EPOCH_BIAS 116444736000000000i64
/*
* Union to facilitate converting from FILETIME to unsigned __int64
*/
typedef union {
unsigned __int64 ft_scalar;
FILETIME ft_struct;
} FT;
void
gettimeofday( struct timeval *tv , struct timezone *not_used )
{
FT nt_time;
__int64 UnixTime; // microseconds since 1/1/1970
GetSystemTimeAsFileTime( &(nt_time.ft_struct) );
UnixTime = ((nt_time.ft_scalar - EPOCH_BIAS) / 10i64);
tv->tv_sec = (long)(time_t)(UnixTime / 1000000i64);
tv->tv_usec = (unsigned long)(UnixTime % 1000000i64);
}
#endif /* WIN32 */
/************************************************************************/
/* */
/* signal catcher */
/* */
/************************************************************************/
void
#if defined(__hpux)
catcher(sig, code, scp)
int sig;
int code;
struct sigcontext *scp;
#else
catcher(int sig)
#endif /* __hpux || __VMS */
{
#ifdef __hpux
if (debug > 2) {
fprintf(where,"caught signal %d ",sig);
if (scp) {
fprintf(where,"while in syscall %d\n",
scp->sc_syscall);
}
else {
fprintf(where,"null scp\n");
}
fflush(where);
}
#endif /* RAJ_DEBUG */
switch(sig) {
case SIGINT:
fprintf(where,"netperf: caught SIGINT\n");
fflush(where);
exit(1);
break;
case SIGALRM:
if (--test_len_ticks == 0) {
/* the test is over */
if (times_up != 0) {
fprintf(where,"catcher: timer popped with times_up != 0\n");
fflush(where);
}
times_up = 1;
#ifdef INTERVALS
stop_itimer();
#endif /* INTERVALS */
break;
}
else {
#ifdef INTERVALS
#ifdef __hpux
/* the test is not over yet and we must have been using the */
/* interval timer. if we were in SYS_SIGSUSPEND we want to */
/* re-start the system call. Otherwise, we want to get out of */
/* the sigsuspend call. I NEED TO KNOW HOW TO DO THIS FOR OTHER */
/* OPERATING SYSTEMS. If you know how, please let me know. rick */
/* jones <raj@cup.hp.com> */
if (scp->sc_syscall != SYS_SIGSUSPEND) {
if (debug > 2) {
fprintf(where,
"catcher: Time to send burst > interval!\n");
fflush(where);
}
scp->sc_syscall_action = SIG_RESTART;
}
#endif /* __hpux */
if (demo_mode) {
/* spit-out what the performance was in units/s. based on our */
/* knowledge of the interval length we do not need to call */
/* gettimeofday() raj 2/95 */
fprintf(where,"%g\n",(units_this_tick *
(double) 1000000 /
(double) usec_per_itvl));
fflush(where);
units_this_tick = (double) 0.0;
}
#else /* INTERVALS */
fprintf(where,
"catcher: interval timer running unexpectedly!\n");
fflush(where);
times_up = 1;
#endif /* INTERVALS */
break;
}
}
return;
}
void
install_signal_catchers()
{
/* just a simple little routine to catch a bunch of signals */
#ifndef WIN32
struct sigaction action;
int i;
fprintf(where,"installing catcher for all signals\n");
fflush(where);
sigemptyset(&(action.sa_mask));
action.sa_handler = catcher;
#ifdef SA_INTERRUPT
action.sa_flags = SA_INTERRUPT;
#else /* SA_INTERRUPT */
action.sa_flags = 0;
#endif /* SA_INTERRUPT */
for (i = 1; i <= NSIG; i++) {
if (i != SIGALRM) {
if (sigaction(i,&action,NULL) != 0) {
fprintf(where,
"Could not install signal catcher for sig %d, errno %d\n",
i,
errno);
fflush(where);
}
}
}
#else
return;
#endif /* WIN32 */
}
#ifdef WIN32
#define SIGALRM (14)
void
emulate_alarm( int seconds )
{
DWORD ErrorCode;
// Wait on this event for parm seconds.
ErrorCode = WaitForSingleObject(hAlarm, seconds*1000);
if (ErrorCode == WAIT_FAILED)
{
perror("WaitForSingleObject failed");
exit(1);
}
if (ErrorCode == WAIT_TIMEOUT)
{
// WaitForSingleObject timed out; this means the timer wasn't canceled.
times_up = 1;
/* We have yet to find a good way to fully emulate the effects */
/* of signals and getting EINTR from system calls under */
/* winsock, so what we do here is close the socket out from */
/* under the other thread. It is rather kludgy, but should be */
/* sufficient to get this puppy shipped. The concept can be */
/* attributed/blamed :) on Robin raj 1/96 */
if (win_kludge_socket != INVALID_SOCKET) {
closesocket(win_kludge_socket);
}
}
}
#endif /* WIN32 */
void
start_timer(int time)
{
#ifdef WIN32
//+*+SAF What if StartTimer is called twice without the first timer
//+*+SAF expiring?
DWORD thread_id ;
HANDLE tHandle;
if (hAlarm == (HANDLE) INVALID_HANDLE_VALUE)
{
// Create the Alarm event object
hAlarm = CreateEvent(
(LPSECURITY_ATTRIBUTES) NULL, // no security
FALSE, // auto reset event
FALSE, // init. state = reset
(void *)NULL); // unnamed event object
if (hAlarm == (HANDLE) INVALID_HANDLE_VALUE)
{
perror("CreateEvent failure");
exit(1);
}
}
else
{
ResetEvent(hAlarm);
}
tHandle = CreateThread(0,
0,
(LPTHREAD_START_ROUTINE)emulate_alarm,
(LPVOID)(ULONG_PTR)time,
0,
&thread_id ) ;
CloseHandle(tHandle);
#else /* not WIN32 */
struct sigaction action;
if (debug) {
fprintf(where,"About to start a timer for %d seconds.\n",time);
fflush(where);
}
action.sa_handler = catcher;
sigemptyset(&(action.sa_mask));
sigaddset(&(action.sa_mask),SIGALRM);
#ifdef SA_INTERRUPT
/* on some systems (SunOS 4.blah), system calls are restarted. we do */
/* not want that */
action.sa_flags = SA_INTERRUPT;
#else /* SA_INTERRUPT */
action.sa_flags = 0;
#endif /* SA_INTERRUPT */
if (sigaction(SIGALRM, &action, NULL) < 0) {
fprintf(where,"start_timer: error installing alarm handler ");
fprintf(where,"errno %d\n",errno);
fflush(where);
exit(1);
}
/* this is the easy case - just set the timer for so many seconds */
if (alarm(time) != 0) {
fprintf(where,
"error starting alarm timer, errno %d\n",
errno);
fflush(where);
}
#endif /* WIN32 */
test_len_ticks = 1;
}
/* this routine will disable any running timer */
void
stop_timer()
{
#ifndef WIN32
alarm(0);
#else
/* at some point we may need some win32 equivalent */
if (hAlarm != (HANDLE) INVALID_HANDLE_VALUE)
{
SetEvent(hAlarm);
}
#endif /* WIN32 */
}
#ifdef INTERVALS
/* this routine will enable the interval timer and set things up so */
/* that for a timed test the test will end at the proper time. it */
/* should detect the presence of POSIX.4 timer_* routines one of */
/* these days */
void
start_itimer( interval_len_msec )
unsigned int interval_len_msec;
{
unsigned int ticks_per_itvl;
struct itimerval new_interval;
struct itimerval old_interval;
/* if -DINTERVALS was used, we will use the ticking of the itimer to */
/* tell us when the test is over. while the user will be specifying */
/* some number of milliseconds, we know that the interval timer is */
/* really in units of 1/HZ. so, to prevent the test from running */
/* "long" it would be necessary to keep this in mind when calculating */
/* the number of itimer events */
ticks_per_itvl = ((interval_wate * sysconf(_SC_CLK_TCK) * 1000) /
1000000);
if (ticks_per_itvl == 0) ticks_per_itvl = 1;
/* how many usecs in each interval? */
usec_per_itvl = ticks_per_itvl * (1000000 / sysconf(_SC_CLK_TCK));
/* how many times will the timer pop before the test is over? */
if (test_time > 0) {
/* this was a timed test */
test_len_ticks = (test_time * 1000000) / usec_per_itvl;
}
else {
/* this was not a timed test, use MAXINT */
test_len_ticks = INT_MAX;
}
if (debug) {
fprintf(where,"setting the interval timer to %d sec %d usec ",
usec_per_itvl / 1000000,
usec_per_itvl % 1000000);
fprintf(where,"test len %d ticks\n",
test_len_ticks);
fflush(where);
}
/* if this was not a timed test, then we really aught to enable the */
/* signal catcher raj 2/95 */
new_interval.it_interval.tv_sec = usec_per_itvl / 1000000;
new_interval.it_interval.tv_usec = usec_per_itvl % 1000000;
new_interval.it_value.tv_sec = usec_per_itvl / 1000000;
new_interval.it_value.tv_usec = usec_per_itvl % 1000000;
if (setitimer(ITIMER_REAL,&new_interval,&old_interval) != 0) {
/* there was a problem arming the interval timer */
perror("clusterperf: cluster_root: setitimer");
exit(1);
}
}
#endif /* INTERVALS */
/****************************************************************/
/* */
/* netlib_init() */
/* */
/* initialize the performance library... */
/* */
/****************************************************************/
void
netlib_init()
{
int i;
where = stdout;
lib_loopers_running = 0;
request_array = (int *)(&netperf_request);
response_array = (int *)(&netperf_response);
for (i = 0; i < MAXCPUS; i++) {
lib_local_per_cpu_util[i] = 0.0;
}
if (debug) {
fprintf(where,
"netlib_init: request_array at %p\n",
request_array);
fprintf(where,
"netlib_init: response_array at %p\n",
response_array);
fflush(where);
}
}
/* this routine will conver the string into an unsigned integer. it */
/* is used primarily for the command-line options taking a number */
/* (such as the socket size) which could be rather large. If someone */
/* enters 32M, then the number will be converted to 32 * 1024 * 1024. */
/* If they inter 32m, the number will be converted to 32 * 1000 * */
/* 1000 */
unsigned int
convert(char *string)
{
unsigned int base;
base = atoi(string);
if (strstr(string,"K")) {
base *= 1024;
}
if (strstr(string,"M")) {
base *= (1024 * 1024);
}
if (strstr(string,"G")) {
base *= (1024 * 1024 * 1024);
}
if (strstr(string,"k")) {
base *= (1000);
}
if (strstr(string,"m")) {
base *= (1000 * 1000);
}
if (strstr(string,"g")) {
base *= (1000 * 1000 * 1000);
}
return(base);
}
/* this routine will allocate a circular list of buffers for either */
/* send or receive operations. each of these buffers will be aligned */
/* and offset as per the users request. the circumference of this */
/* ring will be controlled by the setting of send_width. the buffers */
/* will be filled with data from the file specified in fill_file. if */
/* fill_file is an empty string, the buffers will not be filled with */
/* any particular data */
struct ring_elt *
allocate_buffer_ring(int width, int buffer_size, int alignment, int offset)
{
struct ring_elt *first_link = NULL;
struct ring_elt *temp_link = NULL;
struct ring_elt *prev_link;
int i;
int malloc_size;
int bytes_left;
int bytes_read;
int do_fill;
FILE *fill_source;
malloc_size = buffer_size + alignment + offset;
/* did the user wish to have the buffers pre-filled with data from a */
/* particular source? */
if (strcmp(fill_file,"") == 0) {
do_fill = 0;
fill_source = NULL;
}
else {
do_fill = 1;
fill_source = (FILE *)fopen(fill_file,"r");
if (fill_source == (FILE *)NULL) {
perror("Could not open requested fill file");
exit(1);
}
}
assert(width >= 1);
prev_link = NULL;
for (i = 1; i <= width; i++) {
/* get the ring element */
temp_link = (struct ring_elt *)malloc(sizeof(struct ring_elt));
if (temp_link == NULL) {
printf("malloc(%ld) failed!\n", sizeof(struct ring_elt));
exit(1);
}
/* remember the first one so we can close the ring at the end */
if (i == 1) {
first_link = temp_link;
}
temp_link->buffer_base = (char *)malloc(malloc_size);
if (temp_link == NULL) {
printf("malloc(%d) failed!\n", malloc_size);
exit(1);
}
#ifndef WIN32
temp_link->buffer_ptr = (char *)(( (long)(temp_link->buffer_base) +
(long)alignment - 1) &
~((long)alignment - 1));
#else
temp_link->buffer_ptr = (char *)(( (ULONG_PTR)(temp_link->buffer_base) +
(ULONG_PTR)alignment - 1) &
~((ULONG_PTR)alignment - 1));
#endif
temp_link->buffer_ptr += offset;
/* is where the buffer fill code goes. */
if (do_fill) {
bytes_left = buffer_size;
while (bytes_left) {
if (((bytes_read = (int)fread(temp_link->buffer_ptr,
1,
bytes_left,
fill_source)) == 0) &&
(feof(fill_source))){
rewind(fill_source);
}
bytes_left -= bytes_read;
}
}
temp_link->next = prev_link;
prev_link = temp_link;
}
if (first_link) { //SAF Prefast made me do it...
first_link->next = temp_link;
}
return(first_link); /* it's a circle, doesn't matter which we return */
}
#ifdef HAVE_SENDFILE
/* this routine will construct a ring of sendfile_ring_elt structs
that the routine sendfile_tcp_stream() will use to get parameters
to its calls to sendfile(). It will setup the ring to point at the
file specified in the global -F option that is already used to
pre-fill buffers in the send() case. 08/2000 */
struct sendfile_ring_elt *
alloc_sendfile_buf_ring(int width,
int buffer_size,
int alignment,
int offset)
{
struct sendfile_ring_elt *first_link = NULL;
struct sendfile_ring_elt *temp_link = NULL;
struct sendfile_ring_elt *prev_link;
int i;
int fildes;
struct stat statbuf;
/* if the user has not specified a file with the -F option, we will
fail the test. otherwise, go ahead and try to open the
file. 08/2000 */
if (strcmp(fill_file,"") == 0) {
perror("alloc_sendfile_buf_ring: fill_file must be specified for sendfile option");
exit(1);
}
else {
fildes = open(fill_file , O_RDONLY);
if (fildes == -1){
perror("alloc_sendfile_buf_ring: Could not open requested file");
exit(1);
}
}
/* make sure there is enough file there to allow us to make a
complete ring. that way we do not need additional logic in the
ring setup to deal with wrap-around issues. we might want that
someday, but not just now. 08/2000 */
if (stat(fill_file,&statbuf) != 0) {
perror("alloc_sendfile_buf_ring: could not stat file");
exit(1);
}
if (statbuf.st_size < (width * buffer_size)) {
/* the file is too short */
fprintf(stderr,"alloc_sendfile_buf_ring: specified file too small.\n");
fprintf(stderr,"file must be larger than send_width * send_size\n");
fflush(stderr);
exit(1);
}
prev_link = NULL;
for (i = 1; i <= width; i++) {
/* get the ring element. we should probably make sure the malloc()
was successful, but for now we'll just let the code bomb
mysteriously. 08/2000 */
temp_link = (struct sendfile_ring_elt *)
malloc(sizeof(struct sendfile_ring_elt));
if (temp_link == NULL) {
printf("malloc(%ld) failed!\n", sizeof(struct sendfile_ring_elt));
exit(1);
}
/* remember the first one so we can close the ring at the end */
if (i == 1) {
first_link = temp_link;
}
/* now fill-in the fields of the structure with the apropriate
stuff. just how should we deal with alignment and offset I
wonder? until something better comes-up, I think we will just
ignore them. 08/2000 */
temp_link->fildes = fildes; /* from which file do we send? */
temp_link->offset = offset; /* starting at which offset? */
offset += buffer_size; /* get ready for the next elt */
temp_link->length = buffer_size; /* how many bytes to send */
temp_link->hdtrl = NULL; /* no header or trailer */
temp_link->flags = 0; /* no flags */
/* is where the buffer fill code went. */
temp_link->next = prev_link;
prev_link = temp_link;
}
/* close the ring */
first_link->next = temp_link;
return(first_link); /* it's a dummy ring */
}
#endif /* HAVE_SENDFILE */
/***********************************************************************/
/* */
/* dump_request() */
/* */
/* display the contents of the request array to the user. it will */
/* display the contents in decimal, hex, and ascii, with four bytes */
/* per line. */
/* */
/***********************************************************************/
void
dump_request()
{
int counter = 0;
fprintf(where,"request contents:\n");
for (counter = 0; counter < ((sizeof(netperf_request)/4)-3); counter += 4) {
fprintf(where,"%d:\t%8x %8x %8x %8x \t|%4.4s| |%4.4s| |%4.4s| |%4.4s|\n",
counter,
request_array[counter],
request_array[counter+1],
request_array[counter+2],
request_array[counter+3],
(char *)&request_array[counter],
(char *)&request_array[counter+1],
(char *)&request_array[counter+2],
(char *)&request_array[counter+3]);
}
fflush(where);
}
/***********************************************************************/
/* */
/* dump_response() */
/* */
/* display the content of the response array to the user. it will */
/* display the contents in decimal, hex, and ascii, with four bytes */
/* per line. */
/* */
/***********************************************************************/
void
dump_response()
{
int counter = 0;
fprintf(where,"response contents\n");
for (counter = 0; counter < ((sizeof(netperf_response)/4)-3); counter += 4) {
fprintf(where,"%d:\t%8x %8x %8x %8x \t>%4.4s< >%4.4s< >%4.4s< >%4.4s<\n",
counter,
response_array[counter],
response_array[counter+1],
response_array[counter+2],
response_array[counter+3],
(char *)&response_array[counter],
(char *)&response_array[counter+1],
(char *)&response_array[counter+2],
(char *)&response_array[counter+3]);
}
fflush(where);
}
/***********************************************************************/
/* */
/* format_number() */
/* */
/* return a pointer to a formatted string containing the value passed */
/* translated into the units specified. It assumes that the base units */
/* are bytes. If the format calls for bits, it will use SI units (10^) */
/* if the format calls for bytes, it will use CS units (2^)... */
/* This routine should look familiar to uses of the latest ttcp... */
/* */
/***********************************************************************/
char *
format_number(double number)
{
static char fmtbuf[64];
switch (libfmt) {
case 'K':
snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f" , number / 1024.0);
break;
case 'M':
snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f", number / 1024.0 / 1024.0);
break;
case 'G':
snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f", number / 1024.0 / 1024.0 / 1024.0);
break;
case 'k':
snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f", number * 8 / 1000.0);
break;
case 'm':
snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f", number * 8 / 1000.0 / 1000.0);
break;
case 'g':
snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f", number * 8 / 1000.0 / 1000.0 / 1000.0);
break;
default:
snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f", number / 1024.0);
}
return fmtbuf;
}
char
format_cpu_method(int method)
{
char method_char;
switch (method) {
case CPU_UNKNOWN:
method_char = 'U';
break;
case HP_IDLE_COUNTER:
method_char = 'I';
break;
case PSTAT:
method_char = 'P';
break;
case KSTAT:
method_char = 'K';
break;
case PERFSTAT:
method_char = 'E';
break;
case TIMES:
method_char = 'T';
break;
case GETRUSAGE:
method_char = 'R';
break;
case LOOPER:
method_char = 'L';
break;
case NT_METHOD:
method_char = 'N';
break;
case PROC_STAT:
method_char = 'S';
break;
case SYSCTL:
method_char = 'C';
break;
default:
method_char = '?';
}
return method_char;
}
char *
format_units()
{
static char unitbuf[64];
switch (libfmt) {
case 'K':
strcpy(unitbuf, "KBytes");
break;
case 'M':
strcpy(unitbuf, "MBytes");
break;
case 'G':
strcpy(unitbuf, "GBytes");
break;
case 'k':
strcpy(unitbuf, "10^3bits");
break;
case 'm':
strcpy(unitbuf, "10^6bits");
break;
case 'g':
strcpy(unitbuf, "10^9bits");
break;
default:
strcpy(unitbuf, "KBytes");
}
return unitbuf;
}
/****************************************************************/
/* */
/* shutdown_control() */
/* */
/* tear-down the control connection between me and the server. */
/****************************************************************/
void
shutdown_control()
{
char *buf = (char *)&netperf_response;
int buflen = sizeof(netperf_response);
/* stuff for select, use fd_set for better compliance */
fd_set readfds;
struct timeval timeout;
if (debug) {
fprintf(where,
"shutdown_control: shutdown of control connection requested.\n");
fflush(where);
}
/* first, we say that we will be sending no more data on the */
/* connection */
if (shutdown(netlib_control,1) == SOCKET_ERROR) {
Print_errno(where,
"shutdown_control: error in shutdown");
fflush(where);
exit(1);
}
/* Now, we hang on a select waiting for the socket to become */
/* readable to receive the shutdown indication from the remote. this */
/* will be "just" like the recv_response() code */
/* we only select once. it is assumed that if the response is split */
/* (which should not be happening, that we will receive the whole */
/* thing and not have a problem ;-) */
FD_ZERO(&readfds);
FD_SET(netlib_control,&readfds);
timeout.tv_sec = 60; /* wait one minute then punt */
timeout.tv_usec = 0;
/* select had better return one, or there was either a problem or a */
/* timeout... */
if (select(FD_SETSIZE,
&readfds,
0,
0,
&timeout) != 1) {
Print_errno(where,
"shutdown_control: no response received");
fflush(where);
exit(1);
}
/* we now assume that the socket has come ready for reading */
recv(netlib_control, buf, buflen,0);
}
/***********************************************************************/
/* */
/* send_request() */
/* */
/* send a netperf request on the control socket to the remote half of */
/* the connection. to get us closer to intervendor interoperability, */
/* we will call htonl on each of the int that compose the message to */
/* be sent. the server-half of the connection will call the ntohl */
/* routine to undo any changes that may have been made... */
/* */
/***********************************************************************/
void
send_request()
{
int counter=0;
/* display the contents of the request if the debug level is high */
/* enough. otherwise, just send the darned thing ;-) */
if (debug > 1) {
fprintf(where,"entered send_request...contents before htonl:\n");
dump_request();
}
/* put the entire request array into network order. We do this */
/* arbitrarily rather than trying to figure-out just how much */
/* of the request array contains real information. this should */
/* be simpler, and at any rate, the performance of sending */
/* control messages for this benchmark is not of any real */
/* concern. */
for (counter=0;counter < sizeof(netperf_request)/4; counter++) {
request_array[counter] = htonl(request_array[counter]);
}
if (debug > 1) {
fprintf(where,"send_request...contents after htonl:\n");
dump_request();
fprintf(where,
"\nsend_request: about to send %ld bytes from %p\n",
sizeof(netperf_request),
&netperf_request);
fflush(where);
}
if (send(netlib_control,
(char *)&netperf_request,
sizeof(netperf_request),
0) != sizeof(netperf_request)) {
perror("send_request: send call failure");
exit(1);
}
}
/***********************************************************************/
/* */
/* send_response() */
/* */
/* send a netperf response on the control socket to the remote half of */
/* the connection. to get us closer to intervendor interoperability, */
/* we will call htonl on each of the int that compose the message to */
/* be sent. the other half of the connection will call the ntohl */
/* routine to undo any changes that may have been made... */
/* */
/***********************************************************************/
void
send_response()
{
int counter=0;
int bytes_sent;
/* display the contents of the request if the debug level is high */
/* enough. otherwise, just send the darned thing ;-) */
if (debug > 1) {
fprintf(where,
"send_response: contents of %lu ints before htonl\n",
sizeof(netperf_response)/4);
dump_response();
}
/* put the entire response_array into network order. We do this */
/* arbitrarily rather than trying to figure-out just how much of the */
/* request array contains real information. this should be simpler, */
/* and at any rate, the performance of sending control messages for */
/* this benchmark is not of any real concern. */
for (counter=0;counter < sizeof(netperf_response)/4; counter++) {
response_array[counter] = htonl(response_array[counter]);
}
if (debug > 1) {
fprintf(where,
"send_response: contents after htonl\n");
dump_response();
fprintf(where,
"about to send %lu bytes from %p\n",
sizeof(netperf_response),
&netperf_response);
fflush(where);
}
/*KC*/
if ((bytes_sent = send(server_sock,
(char *)&netperf_response,
sizeof(netperf_response),
0)) != sizeof(netperf_response)) {
perror("send_response: send call failure");
fprintf(where, "BytesSent: %d\n", bytes_sent);
exit(1);
}
}
/***********************************************************************/
/* */
/* recv_request() */
/* */
/* receive the remote's request on the control socket. we will put */
/* the entire response into host order before giving it to the */
/* calling routine. hopefully, this will go most of the way to */
/* insuring intervendor interoperability. if there are any problems, */
/* we will just punt the entire situation. */
/* */
/***********************************************************************/
void
recv_request()
{
int tot_bytes_recvd,
bytes_recvd,
bytes_left;
char *buf = (char *)&netperf_request;
int buflen = sizeof(netperf_request);
int counter;
tot_bytes_recvd = 0;
bytes_recvd = 0; // nt_lint; bytes_recvd uninitialized if buflen == 0
bytes_left = buflen;
while ((tot_bytes_recvd != buflen) &&
((bytes_recvd = recv(server_sock, buf, bytes_left,0)) > 0 )) {
tot_bytes_recvd += bytes_recvd;
buf += bytes_recvd;
bytes_left -= bytes_recvd;
}
/* put the request into host order */
for (counter = 0; counter < sizeof(netperf_request)/sizeof(int); counter++) {
request_array[counter] = ntohl(request_array[counter]);
}
if (debug) {
fprintf(where,
"recv_request: received %d bytes of request.\n",
tot_bytes_recvd);
fflush(where);
}
if (bytes_recvd == SOCKET_ERROR) {
Print_errno(where,
"recv_request: error on recv");
fflush(where);
exit(1);
}
if (bytes_recvd == 0) {
/* the remote has shutdown the control connection, we should shut it */
/* down as well and exit */
if (debug) {
fprintf(where,
"recv_request: remote requested shutdown of control\n");
fflush(where);
}
if (netlib_control != INVALID_SOCKET) {
shutdown_control();
}
exit(0);
}
if (tot_bytes_recvd < buflen) {
if (debug > 1)
dump_request();
fprintf(where,
"recv_request: partial request received of %d bytes\n",
tot_bytes_recvd);
fflush(where);
exit(1);
}
if (debug > 1) {
dump_request();
}
}
/***********************************************************************/
/* */
/* recv_response() */
/* */
/* receive the remote's response on the control socket. we will put */
/* the entire response into host order before giving it to the */
/* calling routine. hopefully, this will go most of the way to */
/* insuring intervendor interoperability. if there are any problems, */
/* we will just punt the entire situation. */
/* */
/* The call to select at the beginning is to get us out of hang */
/* situations where the remote gives-up but we don't find-out about */
/* it. This seems to happen only rarely, but it would be nice to be */
/* somewhat robust ;-) */
/***********************************************************************/
void
recv_response()
{
int tot_bytes_recvd,
bytes_recvd = 0,
bytes_left;
char *buf = (char *)&netperf_response;
int buflen = sizeof(netperf_response);
int counter;
/* stuff for select, use fd_set for better compliance */
fd_set readfds;
struct timeval timeout;
tot_bytes_recvd = 0;
bytes_left = buflen;
/* zero out the response structure */
/* BUG FIX SJB 2/4/93 - should be < not <= */
for (counter = 0; counter < sizeof(netperf_response)/sizeof(int); counter++) {
response_array[counter] = 0;
}
/* we only select once. it is assumed that if the response is split */
/* (which should not be happening, that we will receive the whole */
/* thing and not have a problem ;-) */
FD_ZERO(&readfds);
FD_SET(netlib_control,&readfds);
timeout.tv_sec = 120; /* wait two minutes before punting - the
USE_LOOPER CPU stuff may cause remote's to
have a bit longer time of it than 60 seconds
would allow. triggered by fix from Jeff
Dwork. */
timeout.tv_usec = 0;
/* select had better return one, or there was either a problem or a */
/* timeout... */
if ((counter = select(FD_SETSIZE,
&readfds,
0,
0,
&timeout)) != 1) {
fprintf(where,
"netperf: receive_response: no response received. errno %d counter %d\n",
errno,
counter);
exit(1);
}
while ((tot_bytes_recvd != buflen) &&
((bytes_recvd = recv(netlib_control, buf, bytes_left,0)) > 0 )) {
tot_bytes_recvd += bytes_recvd;
buf += bytes_recvd;
bytes_left -= bytes_recvd;
}
if (debug) {
fprintf(where,"recv_response: received a %d byte response\n",
tot_bytes_recvd);
fflush(where);
}
/* put the response into host order */
for (counter = 0; counter < sizeof(netperf_response)/sizeof(int); counter++) {
response_array[counter] = ntohl(response_array[counter]);
}
if (bytes_recvd == SOCKET_ERROR) {
perror("recv_response");
exit(1);
}
if (tot_bytes_recvd < buflen) {
fprintf(stderr,
"recv_response: partial response received: %d bytes\n",
tot_bytes_recvd);
fflush(stderr);
if (debug > 1)
dump_response();
exit(1);
}
if (debug > 1) {
dump_response();
}
}
#if defined(USE_PSTAT) || defined (USE_SYSCTL)
int
hi_32(big_int)
long long *big_int;
{
union overlay_u {
long long dword;
long words[2];
} *overlay;
overlay = (union overlay_u *)big_int;
/* on those systems which are byte swapped, we really wish to */
/* return words[1] - at least I think so - raj 4/95 */
if (htonl(1L) == 1L) {
/* we are a "normal" :) machine */
return(overlay->words[0]);
}
else {
return(overlay->words[1]);
}
}
int
lo_32(big_int)
long long *big_int;
{
union overlay_u {
long long dword;
long words[2];
} *overlay;
overlay = (union overlay_u *)big_int;
/* on those systems which are byte swapped, we really wish to */
/* return words[0] - at least I think so - raj 4/95 */
if (htonl(1L) == 1L) {
/* we are a "normal" :) machine */
return(overlay->words[1]);
}
else {
return(overlay->words[0]);
}
}
#endif /* USE_PSTAT || USE_SYSCTL */
#ifdef USE_KSTAT
#define UPDKCID(nk,ok) \
if (nk == -1) { \
perror("kstat_read "); \
exit(1); \
} \
if (nk != ok)\
goto kcid_changed;
static kstat_ctl_t *kc = NULL;
static kid_t kcid = 0;
/* do the initial open of the kstat interface, get the chain id's all
straightened-out and set-up the addresses for get_kstat_idle to do
its thing. liberally borrowed from the sources to TOP. raj 8/2000 */
int
open_kstat()
{
kstat_t *ks;
kid_t nkcid;
int i;
int changed = 0;
static int ncpu = 0;
kstat_named_t *kn;
if (debug) {
fprintf(where,"open_kstat: enter\n");
fflush(where);
}
/*
* 0. kstat_open
*/
if (!kc)
{
kc = kstat_open();
if (!kc)
{
perror("kstat_open ");
exit(1);
}
changed = 1;
kcid = kc->kc_chain_id;
}
#ifdef rickwasstupid
else {
fprintf(where,"open_kstat double open!\n");
fflush(where);
exit(1);
}
#endif
/* keep doing it until no more changes */
kcid_changed:
if (debug) {
fprintf(where,"passing kcid_changed\n");
fflush(where);
}
/*
* 1. kstat_chain_update
*/
nkcid = kstat_chain_update(kc);
if (nkcid)
{
/* UPDKCID will abort if nkcid is -1, so no need to check */
changed = 1;
kcid = nkcid;
}
UPDKCID(nkcid,0);
if (debug) {
fprintf(where,"kstat_lookup for unix/system_misc\n");
fflush(where);
}
ks = kstat_lookup(kc, "unix", 0, "system_misc");
if (kstat_read(kc, ks, 0) == -1) {
perror("kstat_read");
exit(1);
}
if (changed) {
/*
* 2. get data addresses
*/
ncpu = 0;
kn = kstat_data_lookup(ks, "ncpus");
if (kn && kn->value.ui32 > lib_num_loc_cpus) {
fprintf(stderr,"number of CPU's mismatch!");
exit(1);
}
for (ks = kc->kc_chain; ks;
ks = ks->ks_next)
{
if (strncmp(ks->ks_name, "cpu_stat", 8) == 0)
{
nkcid = kstat_read(kc, ks, NULL);
/* if kcid changed, pointer might be invalid. we'll deal
wtih changes at this stage, but will not accept them
when we are actually in the middle of reading
values. hopefully this is not going to be a big
issue. raj 8/2000 */
UPDKCID(nkcid, kcid);
if (debug) {
fprintf(where,"cpu_ks[%d] getting %p\n",ncpu,ks);
fflush(where);
}
cpu_ks[ncpu] = ks;
ncpu++;
if (ncpu > lib_num_loc_cpus)
{
/* with the check above, would we ever hit this? */
fprintf(stderr,
"kstat finds too many cpus %d: should be %d\n",
ncpu,lib_num_loc_cpus);
exit(1);
}
}
}
/* note that ncpu could be less than ncpus, but that's okay */
changed = 0;
}
}
/* return the value of the idle tick counter for the specified CPU */
long
get_kstat_idle(cpu)
int cpu;
{
cpu_stat_t cpu_stat;
kid_t nkcid;
if (debug) {
fprintf(where,
"get_kstat_idle reading with kc %x and ks %p\n",
kc,
cpu_ks[cpu]);
}
nkcid = kstat_read(kc, cpu_ks[cpu], &cpu_stat);
/* if kcid changed, pointer might be invalid, fail the test */
UPDKCID(nkcid, kcid);
return(cpu_stat.cpu_sysinfo.cpu[CPU_IDLE]);
kcid_changed:
perror("kcid changed midstream and I cannot deal with that!");
exit(1);
}
/* calibrate_kstat */
/* find the rate at which the kstat idle counter increments on this
platform. for the kstat mechanism, this might seem a triffle silly,
but this is more in keeping with what the rest of netperf does, so
we will stick with it. raj 8/2000 */
float
calibrate_kstat(times,wait_time)
int times;
int wait_time;
{
long
firstcnt[MAXCPUS],
secondcnt[MAXCPUS];
float
elapsed,
temp_rate,
rate[MAXTIMES],
local_maxrate;
long
sec,
usec;
int
i,
j;
struct timeval time1, time2 ;
struct timezone tz;
if (debug) {
fprintf(where,"calling open_kstat from calibrate_kstat\n");
fflush(where);
}
open_kstat();
if (times > MAXTIMES) {
times = MAXTIMES;
}
local_maxrate = (float)-1.0;
for(i = 0; i < times; i++) {
rate[i] = (float)0.0;
for (j = 0; j < lib_num_loc_cpus; j++) {
firstcnt[j] = get_kstat_idle(j);
}
gettimeofday (&time1, &tz);
sleep(wait_time);
gettimeofday (&time2, &tz);
if (time2.tv_usec < time1.tv_usec)
{
time2.tv_usec += 1000000;
time2.tv_sec -=1;
}
sec = time2.tv_sec - time1.tv_sec;
usec = time2.tv_usec - time1.tv_usec;
elapsed = (float)sec + ((float)usec/(float)1000000.0);
if(debug) {
fprintf(where, "Calibration for kstat counter run: %d\n",i);
fprintf(where,"\tsec = %ld usec = %ld\n",sec,usec);
fprintf(where,"\telapsed time = %g\n",elapsed);
}
for (j = 0; j < lib_num_loc_cpus; j++) {
secondcnt[j] = get_kstat_idle(j);
if(debug) {
/* I know that there are situations where compilers know about */
/* long long, but the library functions do not... raj 4/95 */
fprintf(where,
"\tfirstcnt[%d] = 0x%8.8lx%8.8lx secondcnt[%d] = 0x%8.8lx%8.8lx\n",
j,
firstcnt[j],
firstcnt[j],
j,
secondcnt[j],
secondcnt[j]);
}
/* we assume that it would wrap no more than once. we also */
/* assume that the result of subtracting will "fit" raj 4/95 */
temp_rate = (secondcnt[j] >= firstcnt[j]) ?
(float)(secondcnt[j] - firstcnt[j])/elapsed :
(float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed;
if (temp_rate > rate[i]) rate[i] = temp_rate;
if(debug) {
fprintf(where,"\trate[%d] = %g\n",i,rate[i]);
fflush(where);
}
if (local_maxrate < rate[i]) local_maxrate = rate[i];
}
}
if(debug) {
fprintf(where,"\tlocal maxrate = %g per sec. \n",local_maxrate);
fflush(where);
}
return local_maxrate;
}
#endif /* USE_KSTAT */
#ifdef USE_PERFSTAT
float
calibrate_perfstat(int times, int wait_time) {
unsigned long long
firstcnt[MAXCPUS],
secondcnt[MAXCPUS];
float
elapsed,
temp_rate,
rate[MAXTIMES],
local_maxrate;
long
sec,
usec;
int
i,
j;
struct timeval time1, time2 ;
struct timezone tz;
perfstat_cpu_t *perfstat_buffer;
perfstat_cpu_t *per_cpu_pointer;
perfstat_id_t name;
int ret;
if (debug) {
fprintf(where,"enter calibrate_perfstat\n");
fflush(where);
}
if (times > MAXTIMES) {
times = MAXTIMES;
}
local_maxrate = (float)-1.0;
perfstat_buffer = (perfstat_cpu_t *)malloc(lib_num_loc_cpus *
sizeof(perfstat_cpu_t));
if (perfstat_buffer == NULL) {
fprintf(where,
"calibrate_perfstat: malloc failed errno %d\n",
errno);
fflush(where);
exit(-1);
}
for(i = 0; i < times; i++) {
rate[i] = (float)0.0;
/* a name of "" will cause us to start from the beginning */
strcpy(name.name,"");
/* happiness and joy, keep going */
ret = perfstat_cpu(&name,
perfstat_buffer,
sizeof(perfstat_cpu_t),
lib_num_loc_cpus);
if ((ret == -1) ||
(ret != lib_num_loc_cpus)) {
fprintf(where,
"calibrate_perfstat: perfstat_cpu failed/count off; errno %d cpus %d count %d\n",
errno,
lib_num_loc_cpus,
ret);
fflush(where);
exit(-1);
}
per_cpu_pointer = perfstat_buffer;
for (j = 0; j < lib_num_loc_cpus; j++) {
firstcnt[j] = per_cpu_pointer->idle;
per_cpu_pointer++;
}
gettimeofday (&time1, &tz);
sleep(wait_time);
gettimeofday (&time2, &tz);
if (time2.tv_usec < time1.tv_usec)
{
time2.tv_usec += 1000000;
time2.tv_sec -=1;
}
sec = time2.tv_sec - time1.tv_sec;
usec = time2.tv_usec - time1.tv_usec;
elapsed = (float)sec + ((float)usec/(float)1000000.0);
/* happiness and joy, keep going */
ret = perfstat_cpu(&name,
perfstat_buffer,
sizeof(perfstat_cpu_t),
lib_num_loc_cpus);
if ((ret == -1) ||
(ret != lib_num_loc_cpus)) {
fprintf(where,
"calibrate_perfstat: perfstat_cpu failed/count off; errno %d cpus %d count %d\n",
errno,
lib_num_loc_cpus,
ret);
fflush(where);
exit(-1);
}
per_cpu_pointer = perfstat_buffer;
if(debug) {
fprintf(where, "Calibration for perfstat counter run: %d\n",i);
fprintf(where,"\tsec = %ld usec = %ld\n",sec,usec);
fprintf(where,"\telapsed time = %g\n",elapsed);
}
for (j = 0; j < lib_num_loc_cpus; j++) {
secondcnt[j] = per_cpu_pointer->idle;
per_cpu_pointer++;
if(debug) {
/* I know that there are situations where compilers know about */
/* long long, but the library functions do not... raj 4/95 */
fprintf(where,
"\tfirstcnt[%d] = 0x%8.8lx%8.8lx secondcnt[%d] = 0x%8.8lx%8.8lx\n",
j,
firstcnt[j],
firstcnt[j],
j,
secondcnt[j],
secondcnt[j]);
}
/* we assume that it would wrap no more than once. we also */
/* assume that the result of subtracting will "fit" raj 4/95 */
temp_rate = (secondcnt[j] >= firstcnt[j]) ?
(float)(secondcnt[j] - firstcnt[j])/elapsed :
(float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed;
if (temp_rate > rate[i]) rate[i] = temp_rate;
if(debug) {
fprintf(where,"\trate[%d] = %g\n",i,rate[i]);
fflush(where);
}
if (local_maxrate < rate[i]) local_maxrate = rate[i];
}
}
if(debug) {
fprintf(where,"\tlocal maxrate = %g per sec. \n",local_maxrate);
fflush(where);
}
free(perfstat_buffer);
return local_maxrate;
}
#endif /* USE_PERFSTAT */
#ifdef USE_PROC_STAT
/* The max. length of one line of /proc/stat cpu output */
#define CPU_LINE_LENGTH ((8 * sizeof (long) / 3 + 1) * 4 + 8)
#define PROC_STAT_FILE_NAME "/proc/stat"
#define N_CPU_LINES(nr) (nr == 1 ? 1 : 1 + nr)
static int proc_stat_fd = -1;
static char* proc_stat_buf = NULL;
static int proc_stat_buflen = 0;
static long
calibrate_proc_stat ()
{
if (proc_stat_fd < 0) {
proc_stat_fd = open (PROC_STAT_FILE_NAME, O_RDONLY, NULL);
if (proc_stat_fd < 0) {
fprintf (stderr, "Cannot open %s!\n", PROC_STAT_FILE_NAME);
exit (1);
};
};
if (!proc_stat_buf) {
proc_stat_buflen = N_CPU_LINES (lib_num_loc_cpus) * CPU_LINE_LENGTH;
proc_stat_buf = malloc (proc_stat_buflen);
if (!proc_stat_buf) {
fprintf (stderr, "Cannot allocate buffer memory!\n");
exit (1);
};
};
return sysconf (_SC_CLK_TCK);
}
static void
proc_stat_cpu_idle (long *res)
{
int space;
int i;
int n = lib_num_loc_cpus;
char *p = proc_stat_buf;
lseek (proc_stat_fd, 0, SEEK_SET);
read (proc_stat_fd, p, proc_stat_buflen);
/* Skip first line (total) on SMP */
if (n > 1) p = strchr (p, '\n');
/* Idle time is the 4th space-separated token */
for (i = 0; i < n; i++) {
for (space = 0; space < 4; space ++) {
p = strchr (p, ' ');
while (*++p == ' ');
};
res[i] = strtoul (p, &p, 10);
p = strchr (p, '\n');
};
}
#endif /* USE_PROC_STAT */
#ifdef USE_LOOPER
/* calibrate_looper */
/* Loop a number of times, sleeping wait_time seconds each and */
/* count how high the idle counter gets each time. Return the */
/* measured cpu rate to the calling routine. raj 4/95 */
float
calibrate_looper(int times, int wait_time)
{
long
firstcnt[MAXCPUS],
secondcnt[MAXCPUS];
float
elapsed,
temp_rate,
rate[MAXTIMES],
local_maxrate;
long
sec,
usec;
int
i,
j;
struct timeval time1, time2 ;
struct timezone tz;
if (times > MAXTIMES) {
times = MAXTIMES;
}
local_maxrate = (float)-1.0;
for(i = 0; i < times; i++) {
rate[i] = (float)0.0;
for (j = 0; j < lib_num_loc_cpus; j++) {
firstcnt[j] = *(lib_idle_address[j]);
}
gettimeofday (&time1, &tz);
sleep(wait_time);
gettimeofday (&time2, &tz);
if (time2.tv_usec < time1.tv_usec)
{
time2.tv_usec += 1000000;
time2.tv_sec -=1;
}
sec = time2.tv_sec - time1.tv_sec;
usec = time2.tv_usec - time1.tv_usec;
elapsed = (float)sec + ((float)usec/(float)1000000.0);
if(debug) {
fprintf(where, "Calibration for counter run: %d\n",i);
fprintf(where,"\tsec = %ld usec = %ld\n",sec,usec);
fprintf(where,"\telapsed time = %g\n",elapsed);
}
for (j = 0; j < lib_num_loc_cpus; j++) {
secondcnt[j] = *(lib_idle_address[j]);
if(debug) {
/* I know that there are situations where compilers know about */
/* long long, but the library fucntions do not... raj 4/95 */
fprintf(where,
"\tfirstcnt[%d] = 0x%8.8lx%8.8lx secondcnt[%d] = 0x%8.8lx%8.8lx\n",
j,
firstcnt[j],
firstcnt[j],
j,
secondcnt[j],
secondcnt[j]);
}
/* we assume that it would wrap no more than once. we also */
/* assume that the result of subtracting will "fit" raj 4/95 */
temp_rate = (secondcnt[j] >= firstcnt[j]) ?
(float)(secondcnt[j] - firstcnt[j])/elapsed :
(float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed;
if (temp_rate > rate[i]) rate[i] = temp_rate;
if(debug) {
fprintf(where,"\trate[%d] = %g\n",i,rate[i]);
fflush(where);
}
if (local_maxrate < rate[i]) local_maxrate = rate[i];
}
}
if(debug) {
fprintf(where,"\tlocal maxrate = %g per sec. \n",local_maxrate);
fflush(where);
}
return local_maxrate;
}
#endif /* USE_LOOPER */
#ifdef USE_SYSCTL
/* calibrate_sysctl - perform the idle rate calculation using the
sysctl call - typically on BSD */
float
calibrate_sysctl(int times, int wait_time) {
long
firstcnt[MAXCPUS],
secondcnt[MAXCPUS];
long cp_time[CPUSTATES];
size_t cp_time_len = sizeof(cp_time);
float
elapsed,
temp_rate,
rate[MAXTIMES],
local_maxrate;
long
sec,
usec;
int
i,
j;
long count;
struct timeval time1, time2;
struct timezone tz;
if (times > MAXTIMES) {
times = MAXTIMES;
}
local_maxrate = -1.0;
for(i = 0; i < times; i++) {
rate[i] = 0.0;
/* get the idle counter for each processor */
if (sysctlbyname("kern.cp_time",cp_time,&cp_time_len,NULL,0) != -1) {
for (j = 0; j < lib_num_loc_cpus; j++) {
firstcnt[j] = cp_time[CP_IDLE];
}
}
else {
fprintf(where,"sysctl failure errno %d\n",errno);
fflush(where);
exit(1);
}
gettimeofday (&time1, &tz);
sleep(wait_time);
gettimeofday (&time2, &tz);
if (time2.tv_usec < time1.tv_usec)
{
time2.tv_usec += 1000000;
time2.tv_sec -=1;
}
sec = time2.tv_sec - time1.tv_sec;
usec = time2.tv_usec - time1.tv_usec;
elapsed = (float)sec + ((float)usec/(float)1000000.0);
if(debug) {
fprintf(where, "Calibration for counter run: %d\n",i);
fprintf(where,"\tsec = %ld usec = %ld\n",sec,usec);
fprintf(where,"\telapsed time = %g\n",elapsed);
}
if (sysctlbyname("kern.cp_time",cp_time,&cp_time_len,NULL,0) != -1) {
for (j = 0; j < lib_num_loc_cpus; j++) {
secondcnt[j] = cp_time[CP_IDLE];
if(debug) {
/* I know that there are situations where compilers know about */
/* long long, but the library fucntions do not... raj 4/95 */
fprintf(where,
"\tfirstcnt[%d] = 0x%8.8lx secondcnt[%d] = 0x%8.8lx\n",
j,
firstcnt[j],
j,
secondcnt[j]);
}
temp_rate = (secondcnt[j] >= firstcnt[j]) ?
(float)(secondcnt[j] - firstcnt[j] )/elapsed :
(float)(secondcnt[j] - firstcnt[j] + LONG_LONG_MAX)/elapsed;
if (temp_rate > rate[i]) rate[i] = temp_rate;
if (debug) {
fprintf(where,"\trate[%d] = %g\n",i,rate[i]);
fflush(where);
}
if (local_maxrate < rate[i]) local_maxrate = rate[i];
}
}
else {
fprintf(where,"sysctl failure; errno %d\n",errno);
fflush(where);
exit(1);
}
}
if(debug) {
fprintf(where,"\tlocal maxrate = %g per sec. \n",local_maxrate);
fflush(where);
}
return local_maxrate;
}
#endif /* USE_SYSCTL */
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
/****************************************************************/
/* */
/* calibrate_pstat */
/* */
/* Loop a number of times, sleeping wait_time seconds each */
/* and count how high the idle counter gets each time. Return */
/* the measured cpu rate to the calling routine. */
/* */
/****************************************************************/
float
calibrate_pstat(times,wait_time)
int times;
int wait_time;
{
long long
firstcnt[MAXCPUS],
secondcnt[MAXCPUS];
float
elapsed,
temp_rate,
rate[MAXTIMES],
local_maxrate;
long
sec,
usec;
int
i,
j;
long count;
struct timeval time1, time2;
struct timezone tz;
struct pst_processor *psp;
if (times > MAXTIMES) {
times = MAXTIMES;
}
local_maxrate = -1.0;
psp = (struct pst_processor *)malloc(lib_num_loc_cpus * sizeof(*psp));
if (psp == NULL) {
printf("malloc(%d) failed!\n", lib_num_loc_cpus * sizeof(*psp));
exit(1);
}
for(i = 0; i < times; i++) {
rate[i] = 0.0;
/* get the idle sycle counter for each processor */
if (pstat_getprocessor(psp, sizeof(*psp), lib_num_loc_cpus, 0) != -1) {
for (j = 0; j < lib_num_loc_cpus; j++) {
union overlay_u {
long long full;
long word[2];
} *overlay;
overlay = (union overlay_u *)&(firstcnt[j]);
overlay->word[0] = psp[j].psp_idlecycles.psc_hi;
overlay->word[1] = psp[j].psp_idlecycles.psc_lo;
}
}
else {
fprintf(where,"pstat_getprocessor failure errno %d\n",errno);
fflush(where);
exit(1);
}
gettimeofday (&time1, &tz);
sleep(wait_time);
gettimeofday (&time2, &tz);
if (time2.tv_usec < time1.tv_usec)
{
time2.tv_usec += 1000000;
time2.tv_sec -=1;
}
sec = time2.tv_sec - time1.tv_sec;
usec = time2.tv_usec - time1.tv_usec;
elapsed = (float)sec + ((float)usec/(float)1000000.0);
if(debug) {
fprintf(where, "Calibration for counter run: %d\n",i);
fprintf(where,"\tsec = %ld usec = %ld\n",sec,usec);
fprintf(where,"\telapsed time = %g\n",elapsed);
}
if (pstat_getprocessor(psp, sizeof(*psp), lib_num_loc_cpus, 0) != -1) {
for (j = 0; j < lib_num_loc_cpus; j++) {
union overlay_u {
long long full;
long word[2];
} *overlay;
overlay = (union overlay_u *)&(secondcnt[j]);
overlay->word[0] = psp[j].psp_idlecycles.psc_hi;
overlay->word[1] = psp[j].psp_idlecycles.psc_lo;
if(debug) {
/* I know that there are situations where compilers know about */
/* long long, but the library fucntions do not... raj 4/95 */
fprintf(where,
"\tfirstcnt[%d] = 0x%8.8x%8.8x secondcnt[%d] = 0x%8.8x%8.8x\n",
j,
hi_32(&firstcnt[j]),
lo_32(&firstcnt[j]),
j,
hi_32(&secondcnt[j]),
lo_32(&secondcnt[j]));
}
temp_rate = (secondcnt[j] >= firstcnt[j]) ?
(float)(secondcnt[j] - firstcnt[j] )/elapsed :
(float)(secondcnt[j] - firstcnt[j] + LONG_LONG_MAX)/elapsed;
if (temp_rate > rate[i]) rate[i] = temp_rate;
if(debug) {
fprintf(where,"\trate[%d] = %g\n",i,rate[i]);
fflush(where);
}
if (local_maxrate < rate[i]) local_maxrate = rate[i];
}
}
else {
fprintf(where,"pstat failure; errno %d\n",errno);
fflush(where);
exit(1);
}
}
if(debug) {
fprintf(where,"\tlocal maxrate = %g per sec. \n",local_maxrate);
fflush(where);
}
return local_maxrate;
}
#endif /* PSTAT_IPCINFO */
#endif /* USE_PSTAT */
void libmain()
{
fprintf(where,"hello world\n");
fprintf(where,"debug: %d\n",debug);
}
void
set_sock_buffer (int sd, enum sock_buffer which, int requested_size, int *effective_sizep)
{
#ifdef SO_SNDBUF
int optname = (which == SEND_BUFFER) ? SO_SNDBUF : SO_RCVBUF;
int sock_opt_len;
if (requested_size > 0) {
if (setsockopt(sd, SOL_SOCKET, optname,
(char *)&requested_size, sizeof(int)) < 0) {
fprintf(where, "netperf: set_sock_buffer: %s option: errno %d\n",
(which == SEND_BUFFER) ? "SO_SNDBUF" : "SO_RCVBUF",
errno);
fflush(where);
exit(1);
}
if (debug > 1) {
fprintf(where, "netperf: set_sock_buffer: %s of %d requested.\n",
(which == SEND_BUFFER) ? "SO_SNDBUF" : "SO_RCVBUF",
requested_size);
fflush(where);
}
}
/* Now, we will find-out what the size actually became, and report */
/* that back to the user. If the call fails, we will just report a -1 */
/* back to the initiator for the recv buffer size. */
sock_opt_len = sizeof(int);
if (getsockopt(sd, SOL_SOCKET, optname, (char *)effective_sizep,
&sock_opt_len) < 0) {
fprintf(where, "netperf: set_sock_buffer: getsockopt %s: errno %d\n",
(which == SEND_BUFFER) ? "SO_SNDBUF" : "SO_RCVBUF", errno);
fflush(where);
*effective_sizep = -1;
}
if (debug) {
fprintf(where, "netperf: set_sock_buffer: "
"%s socket size determined to be %d\n",
(which == SEND_BUFFER) ? "send" : "receive", *effective_sizep);
fflush(where);
}
#else /* SO_SNDBUF */
*effective_size = -1;
#endif /* SO_SNDBUF */
}
/****************************************************************/
/* */
/* establish_control() */
/* */
/* set-up the control connection between me and the server so */
/* we can actually run some tests. if we cannot establish the */
/* control connection, we might as well punt... */
/* the variables for the control socket are kept in this lib */
/* so as to 'hide' them from the upper routines as much as */
/* possible so we can change them without affecting anyone... */
/****************************************************************/
#ifdef DO_IPV6
struct sockaddr_storage server; /* remote host address */
#else
struct sockaddr_in server; /* remote host address */
#endif
struct servent *sp; /* server entity */
struct hostent *hp; /* host entity */
void
establish_control(char hostname[], short int port)
{
int salen;
#ifdef DO_IPV6
struct addrinfo hints, *res;
char pbuf[10];
#else
unsigned int addr;
#endif
if (debug > 1) {
fprintf(where,"establish_control: entered with %s and %d\n",
hostname,
port);
}
/********************************************************/
/* Set up the control socket netlib_control first */
/* for the time being we will assume that all set-ups */
/* are for tcp/ip and sockets... */
/********************************************************/
bzero((char *)&server,
sizeof(server));
#ifdef DO_IPV6
snprintf(pbuf, sizeof(pbuf), "%d", port);
memset(&hints, 0, sizeof(hints));
hints.ai_family = af;
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags = AI_PASSIVE;
if (getaddrinfo(hostname, pbuf, &hints, &res) != 0) {
fprintf(where,
"establish_control: could not resolve the destination %s\n",
hostname);
fflush(where);
exit(1);
}
memcpy(&server, res->ai_addr, res->ai_addrlen);
salen = res->ai_addrlen;
#else
server.sin_port = htons(port);
/* it would seem that while HP-UX will allow an IP address (as a */
/* string) in a call to gethostbyname, other, less enlightened */
/* systems do not. fix from awjacks@ca.sandia.gov raj 10/95 */
/* order changed to check for IP address first. raj 7/96 */
if ((addr = inet_addr(hostname)) == SOCKET_ERROR) {
/* it was not an IP address, try it as a name */
if ((hp = gethostbyname(hostname)) == NULL) {
/* we have no idea what it is */
fprintf(where,
"establish_control: could not resolve the destination %s\n",
hostname);
fflush(where);
exit(1);
}
else {
/* it was a valid hostname */
bcopy(hp->h_addr,
(char *)&server.sin_addr,
hp->h_length);
server.sin_family = hp->h_addrtype;
}
}
else {
/* it was a valid IP address */
server.sin_addr.s_addr = addr;
server.sin_family = AF_INET;
}
salen = sizeof(server);
#endif
if (debug > 1) {
fprintf(where,"resolved the destination... \n");
fflush(where);
}
if (debug > 1) {
fprintf(where,"creating a socket\n");
fflush(stdout);
}
netlib_control = socket(af,
SOCK_STREAM,
tcp_proto_num);
if (netlib_control == INVALID_SOCKET){
perror("establish_control: control socket");
exit(1);
}
if (debug > 1) {
fprintf(where,"about to connect\n");
fflush(stdout);
}
if (connect(netlib_control,
(struct sockaddr *)&server,
salen) == INVALID_SOCKET){
perror("establish_control: control socket connect failed");
fprintf(stderr,
"Are you sure there is a netserver running on %s at port %d?\n",
hostname,
port);
fflush(stderr);
exit(1);
}
if (debug) {
fprintf(where,"establish_control: connect completes\n");
}
/********************************************************/
/* The Control Socket set-up is done, so now we want */
/* to test for connectivity on the connection */
/********************************************************/
if (debug)
netperf_request.content.request_type = DEBUG_ON;
else
netperf_request.content.request_type = DEBUG_OFF;
send_request();
recv_response();
if (netperf_response.content.response_type != DEBUG_OK) {
fprintf(stderr,"establish_control: Unknown response to debug check\n");
exit(1);
}
else if(debug)
fprintf(where,"establish_control: check for connectivity ok\n");
}
/***********************************************************************/
/* */
/* get_id() */
/* */
/* Return a string to the calling routine that contains the */
/* identifying information for the host we are running on. This */
/* information will then either be displayed locally, or returned to */
/* a remote caller for display there. */
/* */
/***********************************************************************/
char *
get_id()
{
static char id_string[80];
#ifdef WIN32
char system_name[MAX_COMPUTERNAME_LENGTH+1] ;
int name_len = MAX_COMPUTERNAME_LENGTH + 1 ;
#else
struct utsname system_name;
#endif /* WIN32 */
#ifdef WIN32
GetSystemInfo( &SystemInfo ) ;
if ( !GetComputerName(system_name , &(DWORD)name_len) )
strcpy(system_name , "no_name") ;
#else
if (uname(&system_name) <0) {
perror("identify_local: uname");
exit(1);
}
#endif /* WIN32 */
snprintf(id_string, sizeof(id_string),
#ifdef WIN32
"%-15s%-15s%d.%d%d",
"Windows NT",
system_name ,
GetVersion() & 0xFF ,
GetVersion() & 0xFF00 ,
SystemInfo.dwProcessorType
#else
"%-15s%-15s%-15s%-15s%-15s",
system_name.sysname,
system_name.nodename,
system_name.release,
system_name.version,
system_name.machine
#endif /* WIN32 */
);
return (id_string);
}
/***********************************************************************/
/* */
/* identify_local() */
/* */
/* Display identifying information about the local host to the user. */
/* At first release, this information will be the same as that which */
/* is returned by the uname -a command, with the exception of the */
/* idnumber field, which seems to be a non-POSIX item, and hence */
/* non-portable. */
/* */
/***********************************************************************/
void
identify_local()
{
char *local_id;
local_id = get_id();
fprintf(where,"Local Information \n\
Sysname Nodename Release Version Machine\n");
fprintf(where,"%s\n",
local_id);
}
/***********************************************************************/
/* */
/* identify_remote() */
/* */
/* Display identifying information about the remote host to the user. */
/* At first release, this information will be the same as that which */
/* is returned by the uname -a command, with the exception of the */
/* idnumber field, which seems to be a non-POSIX item, and hence */
/* non-portable. A request is sent to the remote side, which will */
/* return a string containing the utsname information in a */
/* pre-formatted form, which is then displayed after the header. */
/* */
/***********************************************************************/
void
identify_remote()
{
char *remote_id="";
/* send a request for node info to the remote */
netperf_request.content.request_type = NODE_IDENTIFY;
send_request();
/* and now wait for the reply to come back */
recv_response();
if (netperf_response.content.serv_errno) {
Set_errno(netperf_response.content.serv_errno);
perror("identify_remote: on remote");
exit(1);
}
fprintf(where,"Remote Information \n\
Sysname Nodename Release Version Machine\n");
fprintf(where,"%s",
remote_id);
}
void
cpu_start(int measure_cpu)
{
#if !defined(WIN32) && !defined(USE_PROC_STAT)
int i;
#endif
gettimeofday(&time1,
&tz);
if (measure_cpu) {
measuring_cpu = 1;
#ifdef USE_LOOPER
cpu_method = LOOPER;
for (i = 0; i < lib_num_loc_cpus; i++){
lib_start_count[i] = *lib_idle_address[i];
}
#else
#ifdef USE_PROC_STAT
cpu_method = PROC_STAT;
proc_stat_cpu_idle (lib_start_count);
#else
#ifdef USE_KSTAT
cpu_method = KSTAT;
if (debug) {
fprintf(where,"calling open_kstat from cpu_start\n");
fflush(where);
}
open_kstat();
for (i = 0; i < lib_num_loc_cpus; i++){
lib_start_count[i] = get_kstat_idle(i);
}
#else
#ifdef USE_PERFSTAT
{
perfstat_cpu_t *perfstat_buffer;
perfstat_cpu_t *per_cpu_pointer;
perfstat_id_t name;
int ret;
cpu_method = PERFSTAT;
/* a name of "" will cause us to start from the beginning */
strcpy(name.name,"");
perfstat_buffer = (perfstat_cpu_t *)malloc(lib_num_loc_cpus *
sizeof(perfstat_cpu_t));
if (perfstat_buffer == NULL) {
fprintf(where,
"cpu_start: malloc failed errno %d\n",
errno);
fflush(where);
exit(-1);
}
/* happiness and joy, keep going */
ret = perfstat_cpu(&name,
perfstat_buffer,
sizeof(perfstat_cpu_t),
lib_num_loc_cpus);
if ((ret == -1) ||
(ret != lib_num_loc_cpus)) {
fprintf(where,
"cpu_start: perfstat_cpu failed/count off; errno %d cpus %d count %d\n",
errno,
lib_num_loc_cpus,
ret);
fflush(where);
exit(-1);
}
per_cpu_pointer = perfstat_buffer;
for (i = 0; i < lib_num_loc_cpus; i++){
lib_start_count[i] = per_cpu_pointer->idle;
per_cpu_pointer++;
}
free(perfstat_buffer);
}
#else
#ifdef USE_SYSCTL
cpu_method = SYSCTL;
long cp_time[CPUSTATES];
size_t cp_time_len = sizeof(cp_time);
if (sysctlbyname("kern.cp_time",cp_time,&cp_time_len,NULL,0) != -1) {
for (i = 0; i < lib_num_loc_cpus; i++){
lib_start_count[i] = cp_time[CP_IDLE];
}
}
#else
#ifdef USE_PSTAT
cpu_method = PSTAT;
#ifdef PSTAT_IPCINFO
/* we need to know if we have the 10.0 pstat interface */
/* available. I know that at 10.0, the define for PSTAT_IPCINFO */
/* was added, but that it is not there prior. so, this should */
/* act as the automagic compile trigger that I need. raj 4/95 */
cpu_method = HP_IDLE_COUNTER;
{
/* get the idle sycle counter for each processor */
struct pst_processor *psp;
union overlay_u {
long long full;
long word[2];
} *overlay;
psp = (struct pst_processor *)malloc(lib_num_loc_cpus * sizeof(*psp));
if (psp == NULL) {
printf("malloc(%d) failed!\n", lib_num_loc_cpus * sizeof(*psp));
exit(1);
}
if (pstat_getprocessor(psp, sizeof(*psp), lib_num_loc_cpus, 0) != -1) {
int i;
for (i = 0; i < lib_num_loc_cpus; i++) {
overlay = (union overlay_u *)&(lib_start_count[i]);
overlay->word[0] = psp[i].psp_idlecycles.psc_hi;
overlay->word[1] = psp[i].psp_idlecycles.psc_lo;
if(debug) {
fprintf(where,
"\tlib_start_count[%d] = 0x%8.8x%8.8x\n",
i,
hi_32(&lib_start_count[i]),
lo_32(&lib_start_count[i]));
fflush(where);
}
}
free(psp);
}
}
#else
/* this is what we should get when compiling on an HP-UX 9.X */
/* system. raj 4/95 */
pstat_getdynamic((struct pst_dynamic *)&pst_dynamic_info,
sizeof(pst_dynamic_info),1,0);
for (i = 0; i < PST_MAX_CPUSTATES; i++) {
cp_time1[i] = pst_dynamic_info.psd_cpu_time[i];
}
#endif /* PSTAT_IPCINFO */
#else
#ifdef WIN32
#ifdef NT_PERF
cpu_method = NT_METHOD;
if (NtQuerySystemInformation == NULL) {
// Open the performance counter interface
PerfCntrs = InitPerfCntrs();
} else {
RestartPerfCntrs(PerfCntrs);
}
#endif /* NT_PERF */
#else
cpu_method = TIMES;
times(×_data1);
#endif /* WIN32 */
#endif /* USE_SYSCTL */
#endif /* USE_PSTAT */
#endif /* USE_PERFSTAT */
#endif /* USE_KSTAT */
#endif /* USE_PROC_STAT */
#endif /* USE_LOOPER */
}
}
void
cpu_stop(int measure_cpu, float *elapsed)
{
#ifndef WIN32
#include <sys/wait.h>
#endif /* WIN32 */
int sec,
usec;
#if !defined(WIN32) && !defined(USE_PROC_STAT)
int i;
#endif
if (measure_cpu) {
#ifdef USE_LOOPER
for (i = 0; i < lib_num_loc_cpus; i++){
lib_end_count[i] = *lib_idle_address[i];
}
#ifdef WIN32
/* it would seem that if/when the process exits, all the threads */
/* will go away too, so I don't think I need any explicit thread */
/* killing calls here. raj 1/96 */
#else
/* now go through and kill-off all the child processes */
for (i = 0; i < lib_num_loc_cpus; i++){
/* SIGKILL can leave core files behind - thanks to Steinar Haug */
/* for pointing that out. */
kill(lib_idle_pids[i],SIGTERM);
}
lib_loopers_running = 0;
/* reap the children */
while(waitpid(-1, NULL, WNOHANG) > 0) { }
/* finally, unlink the mmaped file */
munmap((caddr_t)lib_base_pointer,
((NETPERF_PAGE_SIZE * PAGES_PER_CHILD) *
lib_num_loc_cpus));
unlink("/tmp/netperf_cpu");
#endif /* WIN32 */
#else
#ifdef USE_PROC_STAT
proc_stat_cpu_idle (lib_end_count);
#else
#ifdef USE_KSTAT
for (i = 0; i < lib_num_loc_cpus; i++){
lib_end_count[i] = get_kstat_idle(i);
}
#else
#ifdef USE_PERFSTAT
{
perfstat_cpu_t *perfstat_buffer;
perfstat_cpu_t *per_cpu_pointer;
perfstat_id_t name;
int ret;
cpu_method = PERFSTAT;
/* a name of "" will cause us to start from the beginning */
strcpy(name.name,"");
perfstat_buffer = (perfstat_cpu_t *)malloc(lib_num_loc_cpus *
sizeof(perfstat_cpu_t));
if (perfstat_buffer == NULL) {
fprintf(where,
"cpu_start: malloc failed errno %d\n",
errno);
fflush(where);
exit(-1);
}
/* happiness and joy, keep going */
ret = perfstat_cpu(&name,
perfstat_buffer,
sizeof(perfstat_cpu_t),
lib_num_loc_cpus);
if ((ret == -1) ||
(ret != lib_num_loc_cpus)) {
fprintf(where,
"cpu_start: perfstat_cpu failed/count off; errno %d cpus %d count %d\n",
errno,
lib_num_loc_cpus,
ret);
fflush(where);
exit(-1);
}
per_cpu_pointer = perfstat_buffer;
for (i = 0; i < lib_num_loc_cpus; i++){
lib_end_count[i] = per_cpu_pointer->idle;
per_cpu_pointer++;
}
free(perfstat_buffer);
}
#else
#ifdef USE_SYSCTL
long cp_time[CPUSTATES];
size_t cp_time_len = sizeof(cp_time);
if (sysctlbyname("kern.cp_time",cp_time,&cp_time_len,NULL,0) != -1) {
for (i = 0; i < lib_num_loc_cpus; i++){
lib_end_count[i] = cp_time[CP_IDLE];
}
}
#else
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
{
struct pst_processor *psp;
union overlay_u {
long long full;
long word[2];
} *overlay;
psp = (struct pst_processor *)malloc(lib_num_loc_cpus * sizeof(*psp));
if (psp == NULL) {
printf("malloc(%d) failed!\n", lib_num_loc_cpus * sizeof(*psp));
exit(1);
}
if (pstat_getprocessor(psp, sizeof(*psp), lib_num_loc_cpus, 0) != -1) {
for (i = 0; i < lib_num_loc_cpus; i++) {
overlay = (union overlay_u *)&(lib_end_count[i]);
overlay->word[0] = psp[i].psp_idlecycles.psc_hi;
overlay->word[1] = psp[i].psp_idlecycles.psc_lo;
if(debug) {
fprintf(where,
"\tlib_end_count[%d] = 0x%8.8x%8.8x\n",
i,
hi_32(&lib_end_count[i]),
lo_32(&lib_end_count[i]));
fflush(where);
}
}
free(psp);
}
else {
fprintf(where,"pstat_getprocessor failure: errno %d\n",errno);
fflush(where);
exit(1);
}
}
#else /* not HP-UX 10.0 or later */
{
pstat_getdynamic(&pst_dynamic_info, sizeof(pst_dynamic_info),1,0);
for (i = 0; i < PST_MAX_CPUSTATES; i++) {
cp_time2[i] = pst_dynamic_info.psd_cpu_time[i];
}
}
#endif /* PSTAT_IPC_INFO */
#else
#ifdef WIN32
#ifdef NT_PERF
RestartPerfCntrs(PerfCntrs);
#endif /* NT_PERF */
#else
times(×_data2);
#endif /* WIN32 */
#endif /* USE_SYSCTL */
#endif /* USE_PSTAT */
#endif /* USE_PERFSTAT */
#endif /* USE_KSTAT */
#endif /* USE_PROC_STAT */
#endif /* USE_LOOPER */
}
gettimeofday(&time2,
&tz);
if (time2.tv_usec < time1.tv_usec) {
time2.tv_usec += 1000000;
time2.tv_sec -= 1;
}
sec = time2.tv_sec - time1.tv_sec;
usec = time2.tv_usec - time1.tv_usec;
lib_elapsed = (float)sec + ((float)usec/(float)1000000.0);
*elapsed = lib_elapsed;
}
double
calc_thruput(double units_received)
{
double divisor;
/* We will calculate the thruput in libfmt units/second */
switch (libfmt) {
case 'K':
divisor = 1024.0;
break;
case 'M':
divisor = 1024.0 * 1024.0;
break;
case 'G':
divisor = 1024.0 * 1024.0 * 1024.0;
break;
case 'k':
divisor = 1000.0 / 8.0;
break;
case 'm':
divisor = 1000.0 * 1000.0 / 8.0;
break;
case 'g':
divisor = 1000.0 * 1000.0 * 1000.0 / 8.0;
break;
default:
divisor = 1024.0;
}
return (units_received / divisor / lib_elapsed);
}
float
calc_cpu_util(float elapsed_time)
{
#ifndef WIN32
float actual_rate;
#endif
float correction_factor;
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
float temp_util;
#else
long diff;
#endif
#endif
#ifndef WIN32
#if !defined(USE_LOOPER) && !defined(USE_PROC_STAT)
int cpu_time_ticks;
long ticks_sec;
#endif
int i;
#endif
lib_local_cpu_util = (float)0.0;
/* It is possible that the library measured a time other than */
/* the one that the user want for the cpu utilization */
/* calculations - for example, tests that were ended by */
/* watchdog timers such as the udp stream test. We let these */
/* tests tell up what the elapsed time should be. */
if (elapsed_time != 0.0) {
correction_factor = (float) 1.0 +
((lib_elapsed - elapsed_time) / elapsed_time);
}
else {
correction_factor = (float) 1.0;
}
#if defined (USE_LOOPER) || defined (USE_KSTAT) || defined (USE_PROC_STAT) || defined (USE_SYSCTL) || defined (USE_PERFSTAT)
for (i = 0; i < lib_num_loc_cpus; i++) {
/* it would appear that on some systems, in loopback, nice is
*very* effective, causing the looper process to stop dead in its
tracks. if this happens, we need to ensure that the calculation
does not go south. raj 6/95 and if we run completely out of
idle, the same thing could in theory happen to the USE_KSTAT
path. raj 8/2000 */
if (lib_end_count[i] == lib_start_count[i]) {
lib_end_count[i]++;
}
actual_rate = (lib_end_count[i] > lib_start_count[i]) ?
(float)(lib_end_count[i] - lib_start_count[i])/lib_elapsed :
(float)(lib_end_count[i] - lib_start_count[i] +
MAXLONG)/ lib_elapsed;
if (debug) {
fprintf(where,
"calc_cpu_util: actual_rate on processor %d is %f start %lx end %lx\n",
i,
actual_rate,
lib_start_count[i],
lib_end_count[i]);
}
lib_local_per_cpu_util[i] = (lib_local_maxrate - actual_rate) /
lib_local_maxrate * 100;
lib_local_cpu_util += lib_local_per_cpu_util[i];
}
/* we want the average across all n processors */
lib_local_cpu_util /= (float)lib_num_loc_cpus;
#else
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
{
/* this looks just like the looper case. at least I think it */
/* should :) raj 4/95 */
for (i = 0; i < lib_num_loc_cpus; i++) {
/* we assume that the two are not more than a long apart. I */
/* know that this is bad, but trying to go from long longs to */
/* a float (perhaps a double) is boggling my mind right now. */
/* raj 4/95 */
long long
diff;
if (lib_end_count[i] >= lib_start_count[i]) {
diff = lib_end_count[i] - lib_start_count[i];
}
else {
diff = lib_end_count[i] - lib_start_count[i] + LONG_LONG_MAX;
}
actual_rate = (float) diff / lib_elapsed;
lib_local_per_cpu_util[i] = (lib_local_maxrate - actual_rate) /
lib_local_maxrate * 100;
lib_local_cpu_util += lib_local_per_cpu_util[i];
if (debug) {
fprintf(where,
"calc_cpu_util: actual_rate on cpu %d is %g max_rate %g cpu %6.2f\n",
i,
actual_rate,
lib_local_maxrate,
lib_local_per_cpu_util[i]);
}
}
/* we want the average across all n processors */
lib_local_cpu_util /= (float)lib_num_loc_cpus;
}
#else
{
/* we had no idle counter, but there was a pstat. we */
/* will use the cpu_time_ticks variable for the total */
/* ticks calculation */
cpu_time_ticks = 0;
/* how many ticks were there in our interval? */
for (i = 0; i < PST_MAX_CPUSTATES; i++) {
diff = cp_time2[i] - cp_time1[i];
cpu_time_ticks += diff;
if (debug) {
fprintf(where,
"%d cp_time1 %d cp_time2 %d diff %d cpu_time_ticks is %d \n",
i,
cp_time1[i],
cp_time2[i],
diff,
cpu_time_ticks);
fflush(where);
}
}
if (!cpu_time_ticks)
cpu_time_ticks = 1;
/* cpu used is 100% minus the idle time - right ?-) */
lib_local_cpu_util = 1.0 - ( ((float)(cp_time2[CP_IDLE] -
cp_time1[CP_IDLE]))
/ (float)cpu_time_ticks);
lib_local_cpu_util *= 100.0;
if (debug) {
fprintf(where,
"calc_cpu_util has cpu_time_ticks at %d\n",cpu_time_ticks);
fprintf(where,"sysconf ticks is %g\n",
sysconf(_SC_CLK_TCK) * lib_elapsed);
fprintf(where,"calc_cpu_util has idle_ticks at %d\n",
(cp_time2[CP_IDLE] - cp_time1[CP_IDLE]));
fflush(where);
}
}
#endif /* PSTAT_IPCINFO */
#else
#ifdef WIN32
#ifdef NT_PERF
if (debug) {
fprintf(where, "correction factor: %f\n", correction_factor);
}
lib_local_cpu_util = (float)ReportPerfCntrs(PerfCntrs);
#endif /* NT_PERF */
#else
/* we had no kernel idle counter, so use what we can */
ticks_sec = sysconf(_SC_CLK_TCK);
cpu_time_ticks = ((times_data2.tms_utime - times_data1.tms_utime) +
(times_data2.tms_stime -
times_data1.tms_stime));
if (debug) {
fprintf(where,"calc_cpu_util has cpu_time_ticks at %d\n",cpu_time_ticks);
fprintf(where,"calc_cpu_util has tick_sec at %ld\n",ticks_sec);
fprintf(where,"calc_cpu_util has lib_elapsed at %f\n",lib_elapsed);
fflush(where);
}
lib_local_cpu_util = (float) (((double) (cpu_time_ticks) /
(double) ticks_sec /
(double) lib_elapsed) *
(double) 100.0);
#endif /* WIN32 */
#endif /* USE_PSTAT */
#endif /* USE_LOOPER */
lib_local_cpu_util *= correction_factor;
return lib_local_cpu_util;
}
float calc_service_demand(double units_sent,
float elapsed_time,
float cpu_utilization,
int num_cpus)
{
double unit_divisor = (float)1024.0;
double service_demand;
double thruput;
if (debug) {
fprintf(where,"calc_service_demand called: units_sent = %f\n",
units_sent);
fprintf(where," elapsed_time = %f\n",
elapsed_time);
fprintf(where," cpu_util = %f\n",
cpu_utilization);
fprintf(where," num cpu = %d\n",
num_cpus);
fflush(where);
}
if (num_cpus == 0) num_cpus = lib_num_loc_cpus;
if (elapsed_time == 0.0) {
elapsed_time = lib_elapsed;
}
if (cpu_utilization == 0.0) {
cpu_utilization = lib_local_cpu_util;
}
thruput = (units_sent /
(double) unit_divisor /
(double) elapsed_time);
/* on MP systems, it is necessary to multiply the service demand by */
/* the number of CPU's. at least, I believe that to be the case:) */
/* raj 10/95 */
/* thruput has a "per second" component. if we were using 100% ( */
/* 100.0) of the CPU in a second, that would be 1 second, or 1 */
/* millisecond, so we multiply cpu_utilization by 10 to go to */
/* milliseconds, or 10,000 to go to micro seconds. With revision */
/* 2.1, the service demand measure goes to microseconds per unit. */
/* raj 12/95 */
service_demand = (cpu_utilization*10000.0/thruput) *
(float) num_cpus;
if (debug) {
fprintf(where,"calc_service_demand using: units_sent = %f\n",
units_sent);
fprintf(where," elapsed_time = %f\n",
elapsed_time);
fprintf(where," cpu_util = %f\n",
cpu_utilization);
fprintf(where," num cpu = %d\n",
num_cpus);
fprintf(where,"calc_service_demand got: thruput = %f\n",
thruput);
fprintf(where," servdem = %f\n",
service_demand);
fflush(where);
}
return (float)service_demand;
}
#ifdef USE_LOOPER
void
bind_to_processor(int child_num)
{
/* This routine will bind the calling process to a particular */
/* processor. We are not choosy as to which processor, so it will be */
/* the process id mod the number of processors - shifted by one for */
/* those systems which name processor starting from one instead of */
/* zero. on those systems where I do not yet know how to bind a */
/* process to a processor, this routine will be a no-op raj 10/95 */
/* just as a reminder, this is *only* for the looper processes, not */
/* the actual measurement processes. those will, should, MUST float */
/* or not float from CPU to CPU as controlled by the operating */
/* system defaults. raj 12/95 */
#ifdef __hpux
#include <sys/syscall.h>
#include <sys/mp.h>
int old_cpu = -2;
if (debug) {
fprintf(where,
"child %d asking for CPU %d as pid %d with %d CPUs\n",
child_num,
(child_num % lib_num_loc_cpus),
getpid(),
lib_num_loc_cpus);
fflush(where);
}
SETPROCESS((child_num % lib_num_loc_cpus), getpid());
return;
#else
#if defined(__sun) && defined(__SVR4)
/* should only be Solaris */
#include <sys/processor.h>
#include <sys/procset.h>
int old_binding;
if (debug) {
fprintf(where,
"bind_to_processor: child %d asking for CPU %d as pid %d with %d CPUs\n",
child_num,
(child_num % lib_num_loc_cpus),
getpid(),
lib_num_loc_cpus);
fflush(where);
}
if (processor_bind(P_PID,
getpid(),
(child_num % lib_num_loc_cpus),
&old_binding) != 0) {
fprintf(where,"bind_to_processor: unable to perform processor binding\n");
fprintf(where," errno %d\n",errno);
fflush(where);
}
return;
#else
#ifdef WIN32
SetThreadAffinityMask(GetCurrentThread(), (ULONG_PTR)1 << (child_num % lib_num_loc_cpus));
#endif
return;
#endif /* __sun && _SVR4 */
#endif /* __hpux */
}
/* sit_and_spin will just spin about incrementing a value */
/* this value will either be in a memory mapped region on Unix shared */
/* by each looper process, or something appropriate on Windows/NT */
/* (malloc'd or such). This routine is reasonably ugly in that it has */
/* priority manipulating code for lots of different operating */
/* systems. This routine never returns. raj 1/96 */
void
sit_and_spin(int child_index)
{
long *my_counter_ptr;
/* only use C stuff if we are not WIN32 unless and until we */
/* switch from CreateThread to _beginthread. raj 1/96 */
#ifndef WIN32
/* we are the child. we could decide to exec some separate */
/* program, but that doesn't really seem worthwhile - raj 4/95 */
if (debug > 1) {
fprintf(where,
"Looper child %d is born, pid %d\n",
child_index,
getpid());
fflush(where);
}
#endif /* WIN32 */
/* reset our base pointer to be at the appropriate offset */
my_counter_ptr = (long *) ((char *)lib_base_pointer +
(NETPERF_PAGE_SIZE *
PAGES_PER_CHILD * child_index));
/* in the event we are running on an MP system, it would */
/* probably be good to bind the soaker processes to specific */
/* processors. I *think* this is the most reasonable thing to */
/* do, and would be closes to simulating the information we get */
/* on HP-UX with pstat. I could put all the system-specific code */
/* here, but will "abstract it into another routine to keep this */
/* area more readable. I'll probably do the same thine with the */
/* "low pri code" raj 10/95 */
/* NOTE. I do *NOT* think it would be appropriate for the actual */
/* test processes to be bound to a particular processor - that */
/* is something that should be left up to the operating system. */
bind_to_processor(child_index);
for (*my_counter_ptr = 0L;
;
(*my_counter_ptr)++) {
if (!(*lib_base_pointer % 1)) {
/* every once and again, make sure that our process priority is */
/* nice and low. also, by making system calls, it may be easier */
/* for us to be pre-empted by something that needs to do useful */
/* work - like the thread of execution actually sending and */
/* receiving data across the network :) */
#ifdef _AIX
int pid,prio;
prio = PRIORITY;
pid = getpid();
/* if you are not root, this call will return EPERM - why one */
/* cannot change one's own priority to lower value is beyond */
/* me. raj 2/26/96 */
setpri(pid, prio);
#else /* _AIX */
#ifdef __sgi
int pid,prio;
prio = PRIORITY;
pid = getpid();
schedctl(NDPRI, pid, prio);
sginap(0);
#else /* __sgi */
#ifdef WIN32
SetThreadPriority(GetCurrentThread(),THREAD_PRIORITY_IDLE);
#else /* WIN32 */
#if defined(__sun) && defined(__SVR4)
#include <sys/types.h>
#include <sys/priocntl.h>
#include <sys/rtpriocntl.h>
#include <sys/tspriocntl.h>
/* I would *really* like to know how to use priocntl to make the */
/* priority low for this looper process. however, either my mind */
/* is addled, or the manpage in section two for priocntl is not */
/* terribly helpful - for one, it has no examples :( so, if you */
/* can help, I'd love to hear from you. in the meantime, we will */
/* rely on nice(39). raj 2/26/96 */
nice(39);
#else /* __sun && __SVR4 */
nice(39);
#endif /* __sun && _SVR4 */
#endif /* WIN32 */
#endif /* __sgi */
#endif /* _AIX */
}
}
}
/* this routine will start all the looper processes or threads for */
/* measuring CPU utilization. */
void
start_looper_processes()
{
unsigned int
i,
file_size;
/* we want at least two pages for each processor. the */
/* child for any one processor will write to the first of his two */
/* pages, and the second page will be a buffer in case there is page */
/* prefetching. if your system pre-fetches more than a single page, */
/* well, you'll have to modify this or live with it :( raj 4/95 */
file_size = ((NETPERF_PAGE_SIZE * PAGES_PER_CHILD) *
lib_num_loc_cpus);
#ifndef WIN32
/* we we are not using WINDOWS NT (or 95 actually :), then we want */
/* to create a memory mapped region so we can see all the counting */
/* rates of the loopers */
/* could we just use an anonymous memory region for this? it is */
/* possible that using a mmap()'ed "real" file, while convenient for */
/* debugging, could result in some filesystem activity - like */
/* metadata updates? raj 4/96 */
lib_idle_fd = open("/tmp/netperf_cpu",O_RDWR | O_CREAT | O_EXCL);
if (lib_idle_fd == -1) {
fprintf(where,"create_looper: file creation; errno %d\n",errno);
fflush(where);
exit(1);
}
if (chmod("/tmp/netperf_cpu",0644) == -1) {
fprintf(where,"create_looper: chmod; errno %d\n",errno);
fflush(where);
exit(1);
}
/* with the file descriptor in place, lets be sure that the file is */
/* large enough. */
if (truncate("/tmp/netperf_cpu",file_size) == -1) {
fprintf(where,"create_looper: truncate: errno %d\n",errno);
fflush(where);
exit(1);
}
/* the file should be large enough now, so we can mmap it */
/* if the system does not have MAP_VARIABLE, just define it to */
/* be zero. it is only used/needed on HP-UX (?) raj 4/95 */
#ifndef MAP_VARIABLE
#define MAP_VARIABLE 0x0000
#endif /* MAP_VARIABLE */
#ifndef MAP_FILE
#define MAP_FILE 0x0000
#endif /* MAP_FILE */
if ((lib_base_pointer = (long *)mmap(NULL,
file_size,
PROT_READ | PROT_WRITE,
MAP_FILE | MAP_SHARED | MAP_VARIABLE,
lib_idle_fd,
0)) == (long *)-1) {
fprintf(where,"create_looper: mmap: errno %d\n",errno);
fflush(where);
exit(1);
}
if (debug > 1) {
fprintf(where,"num CPUs %d, file_size %d, lib_base_pointer %p\n",
lib_num_loc_cpus,
file_size,
lib_base_pointer);
fflush(where);
}
/* we should have a valid base pointer. lets fork */
for (i = 0; i < (unsigned int)lib_num_loc_cpus; i++) {
switch (lib_idle_pids[i] = fork()) {
case -1:
perror("netperf: fork");
exit(1);
case 0:
/* we are the child. we could decide to exec some separate */
/* program, but that doesn't really seem worthwhile - raj 4/95 */
sit_and_spin(i);
/* we should never really get here, but if we do, just exit(0) */
exit(0);
break;
default:
/* we must be the parent */
lib_idle_address[i] = (long *) ((char *)lib_base_pointer +
(NETPERF_PAGE_SIZE *
PAGES_PER_CHILD * i));
if (debug) {
fprintf(where,"lib_idle_address[%d] is %p\n",
i,
lib_idle_address[i]);
fflush(where);
}
}
}
#else
/* we are compiled -DWIN32 */
if ((lib_base_pointer = malloc(file_size)) == NULL) {
fprintf(where,
"create_looper_process could not malloc %d bytes\n",
file_size);
fflush(where);
exit(1);
}
/* now, create all the threads */
for(i = 0; i < (unsigned int)lib_num_loc_cpus; i++) {
long place_holder;
if ((lib_idle_pids[i] = CreateThread(0,
0,
(LPTHREAD_START_ROUTINE)sit_and_spin,
(LPVOID)(ULONG_PTR)i,
0,
&place_holder)) == NULL ) {
fprintf(where,
"create_looper_process: CreateThread failed\n");
fflush(where);
/* I wonder if I need to look for other threads to kill? */
exit(1);
}
lib_idle_address[i] = (long *) ((char *)lib_base_pointer +
(NETPERF_PAGE_SIZE *
PAGES_PER_CHILD * i));
if (debug) {
fprintf(where,"lib_idle_address[%d] is %p\n",
i,
lib_idle_address[i]);
fflush(where);
}
}
#endif /* WIN32 */
/* we need to have the looper processes settled-in before we do */
/* anything with them, so lets sleep for say 30 seconds. raj 4/95 */
sleep(30);
}
#endif /* USE_LOOPER */
float
calibrate_local_cpu(float local_cpu_rate)
{
lib_num_loc_cpus = get_num_cpus();
lib_use_idle = 0;
#ifdef USE_LOOPER
/* we want to get the looper processes going */
if (!lib_loopers_running) {
start_looper_processes();
lib_loopers_running = 1;
}
lib_use_idle = 1;
#endif /* USE_LOOPER */
if (local_cpu_rate > 0) {
/* The user think that he knows what the cpu rate is. We assume */
/* that all the processors of an MP system are essentially the */
/* same - for this reason we do not have a per processor maxrate. */
/* if the machine has processors which are different in */
/* performance, the CPU utilization will be skewed. raj 4/95 */
lib_local_maxrate = local_cpu_rate;
}
else {
/* if neither USE_LOOPER nor USE_PSTAT are defined, we return a */
/* 0.0 to indicate that times or getrusage should be used. raj */
/* 4/95 */
lib_local_maxrate = (float)0.0;
#ifdef USE_PROC_STAT
lib_local_maxrate = calibrate_proc_stat ();
#endif
#ifdef USE_LOOPER
lib_local_maxrate = calibrate_looper(4,10);
#endif
#ifdef USE_KSTAT
lib_local_maxrate = calibrate_kstat(4,10);
#endif /* USE_KSTAT */
#ifdef USE_PERFSTAT
lib_local_maxrate = calibrate_perfstat(4,10);
#endif /* USE_KSTAT */
#ifdef USE_SYSCTL
lib_local_maxrate = calibrate_sysctl(4,10);
#endif /* USE_SYSCTL */
#ifdef USE_PSTAT
#ifdef PSTAT_IPCINFO
/* one version of pstat needs calibration */
lib_local_maxrate = calibrate_pstat(4,10);
#endif /* PSTAT_IPCINFO */
#endif /* USE_PSTAT */
}
return lib_local_maxrate;
}
float
calibrate_remote_cpu()
{
float remrate;
netperf_request.content.request_type = CPU_CALIBRATE;
send_request();
/* we know that calibration will last at least 40 seconds, so go to */
/* sleep for that long so the 60 second select in recv_response will */
/* not pop. raj 7/95 */
sleep(40);
recv_response();
if (netperf_response.content.serv_errno) {
/* initially, silently ignore remote errors and pass */
/* back a zero to the caller this should allow us to */
/* mix rev 1.0 and rev 1.1 netperfs... */
return((float)0.0);
}
else {
/* the rate is the first word of the test_specific data */
bcopy((char *)netperf_response.content.test_specific_data,
(char *)&remrate,
sizeof(remrate));
/* remrate = (float) netperf_response.content.test_specific_data[0]; */
return(remrate);
}
}
#ifndef WIN32
// WIN32 requires that at least one of the file sets to select be non-null.
// Since msec_sleep routine is only called by nettest_dlpi & nettest_unix,
// let's duck this issue.
int
msec_sleep( int msecs )
{
int rval ;
struct timeval timeout;
timeout.tv_sec = msecs / 1000;
timeout.tv_usec = (msecs - (msecs/1000) *1000) * 1000;
if ((rval = select(0,
0,
0,
0,
&timeout))) {
if ( SOCKET_EINTR(rval) ) {
return(1);
}
perror("msec_sleep: select");
exit(1);
}
return(0);
}
#endif // WIN32
#ifdef HISTOGRAM
/* hist.c
Given a time difference in microseconds, increment one of 61
different buckets:
0 - 9 in increments of 1 usec
0 - 9 in increments of 10 usecs
0 - 9 in increments of 100 usecs
1 - 9 in increments of 1 msec
1 - 9 in increments of 10 msecs
1 - 9 in increments of 100 msecs
1 - 9 in increments of 1 sec
1 - 9 in increments of 10 sec
> 100 secs
This will allow any time to be recorded to within an accuracy of
10%, and provides a compact representation for capturing the
distribution of a large number of time differences (e.g.
request-response latencies).
Colin Low 10/6/93
Rick Jones 2004-06-15 extend to unit and ten usecs
*/
/* #include "sys.h" */
/*#define HIST_TEST*/
HIST
HIST_new(void){
HIST h;
if((h = (HIST) malloc(sizeof(struct histogram_struct))) == NULL) {
perror("HIST_new - malloc failed");
exit(1);
}
HIST_clear(h);
return h;
}
void
HIST_clear(HIST h){
int i;
for(i = 0; i < 10; i++){
h->unit_usec[i] = 0;
h->ten_usec[i] = 0;
h->hundred_usec[i] = 0;
h->unit_msec[i] = 0;
h->ten_msec[i] = 0;
h->hundred_msec[i] = 0;
h->unit_sec[i] = 0;
h->ten_sec[i] = 0;
}
h->ridiculous = 0;
h->total = 0;
}
void
HIST_add(register HIST h, int time_delta){
register int val;
h->total++;
val = time_delta;
if(val <= 9) h->unit_usec[val]++;
else {
val = val/10;
if(val <= 9) h->ten_usec[val]++;
else {
val = val/10;
if(val <= 9) h->hundred_usec[val]++;
else {
val = val/10;
if(val <= 9) h->unit_msec[val]++;
else {
val = val/10;
if(val <= 9) h->ten_msec[val]++;
else {
val = val/10;
if(val <= 9) h->hundred_msec[val]++;
else {
val = val/10;
if(val <= 9) h->unit_sec[val]++;
else {
val = val/10;
if(val <= 9) h->ten_sec[val]++;
else h->ridiculous++;
}
}
}
}
}
}
}
}
#define RB_printf printf
void
output_row(FILE *fd, char *title, int *row){
register int i;
RB_printf("%s", title);
for(i = 0; i < 10; i++) RB_printf(": %4d", row[i]);
RB_printf("\n");
}
int
sum_row(int *row) {
int sum;
int i;
for (i = 0; i < 10; i++) sum += row[i];
return(sum);
}
void
HIST_report(HIST h){
#ifndef OLD_HISTOGRAM
output_row(stdout, "UNIT_USEC ", h->unit_usec);
output_row(stdout, "TEN_USEC ", h->ten_usec);
output_row(stdout, "HUNDRED_USEC ", h->hundred_usec);
#else
h->hundred_usec[0] += sum_row(h->unit_usec);
h->hundred_usec[0] += sum_row(h->ten_usec);
output_row(stdout, "TENTH_MSEC ", h->hundred_usec);
#endif
output_row(stdout, "UNIT_MSEC ", h->unit_msec);
output_row(stdout, "TEN_MSEC ", h->ten_msec);
output_row(stdout, "HUNDRED_MSEC ", h->hundred_msec);
output_row(stdout, "UNIT_SEC ", h->unit_sec);
output_row(stdout, "TEN_SEC ", h->ten_sec);
RB_printf(">100_SECS: %d\n", h->ridiculous);
RB_printf("HIST_TOTAL: %d\n", h->total);
}
#ifdef HAVE_GETHRTIME
void
HIST_timestamp(hrtime_t *timestamp)
{
*timestamp = gethrtime();
}
int
delta_micro(hrtime_t *begin, hrtime_t *end)
{
long nsecs;
nsecs = (*end) - (*begin);
return(nsecs/1000);
}
#else
void
HIST_timestamp(struct timeval *timestamp)
{
gettimeofday(timestamp,NULL);
}
/* return the difference (in micro seconds) between two timeval */
/* timestamps */
int
delta_micro(struct timeval *begin,struct timeval *end)
{
int usecs, secs;
if (end->tv_usec < begin->tv_usec) {
/* borrow a second from the tv_sec */
end->tv_usec += 1000000;
end->tv_sec--;
}
usecs = end->tv_usec - begin->tv_usec;
secs = end->tv_sec - begin->tv_sec;
usecs += (secs * 1000000);
return(usecs);
}
#endif /* HAVE_GETHRTIME */
#endif /* HISTOGRAM */
#ifdef DO_DLPI
int
put_control(fd, len, pri, ack)
int fd, len, pri, ack;
{
int error;
int flags = 0;
dl_error_ack_t *err_ack = (dl_error_ack_t *)control_data;
control_message.len = len;
if ((error = putmsg(fd, &control_message, 0, pri)) < 0 ) {
fprintf(where,"put_control: putmsg error %d\n",error);
fflush(where);
return(-1);
}
if ((error = getmsg(fd, &control_message, 0, &flags)) < 0) {
fprintf(where,"put_control: getsmg error %d\n",error);
fflush(where);
return(-1);
}
if (err_ack->dl_primitive != ack) {
fprintf(where,"put_control: acknowledgement error wanted %u got %u \n",
ack,err_ack->dl_primitive);
if (err_ack->dl_primitive == DL_ERROR_ACK) {
fprintf(where," dl_error_primitive: %u\n",
err_ack->dl_error_primitive);
fprintf(where," dl_errno: %u\n",
err_ack->dl_errno);
fprintf(where," dl_unix_errno %u\n",
err_ack->dl_unix_errno);
}
fflush(where);
return(-1);
}
return(0);
}
int
dl_open(char devfile[], int ppa)
{
int fd;
dl_attach_req_t *attach_req = (dl_attach_req_t *)control_data;
if ((fd = open(devfile, O_RDWR)) == -1) {
fprintf(where,"netperf: dl_open: open of %s failed, errno = %d\n",
devfile,
errno);
return(-1);
}
attach_req->dl_primitive = DL_ATTACH_REQ;
attach_req->dl_ppa = ppa;
if (put_control(fd, sizeof(dl_attach_req_t), 0, DL_OK_ACK) < 0) {
fprintf(where,
"netperf: dl_open: could not send control message, errno = %d\n",
errno);
return(-1);
}
return(fd);
}
int
dl_bind(int fd, int sap, int mode, char *dlsap_ptr, int *dlsap_len)
{
dl_bind_req_t *bind_req = (dl_bind_req_t *)control_data;
dl_bind_ack_t *bind_ack = (dl_bind_ack_t *)control_data;
bind_req->dl_primitive = DL_BIND_REQ;
bind_req->dl_sap = sap;
bind_req->dl_max_conind = 1;
bind_req->dl_service_mode = mode;
bind_req->dl_conn_mgmt = 0;
bind_req->dl_xidtest_flg = 0;
if (put_control(fd, sizeof(dl_bind_req_t), 0, DL_BIND_ACK) < 0) {
fprintf(where,
"netperf: dl_bind: could not send control message, errno = %d\n",
errno);
return(-1);
}
/* at this point, the control_data portion of the control message */
/* structure should contain a DL_BIND_ACK, which will have a full */
/* DLSAP in it. we want to extract this and pass it up so that */
/* it can be passed around. */
if (*dlsap_len >= bind_ack->dl_addr_length) {
bcopy((char *)bind_ack+bind_ack->dl_addr_offset,
dlsap_ptr,
bind_ack->dl_addr_length);
*dlsap_len = bind_ack->dl_addr_length;
return(0);
}
else {
return (-1);
}
}
int
dl_connect(int fd, unsigned char *rem_addr, int rem_addr_len)
{
dl_connect_req_t *connection_req = (dl_connect_req_t *)control_data;
dl_connect_con_t *connection_con = (dl_connect_con_t *)control_data;
struct pollfd pinfo;
int flags = 0;
/* this is here on the off chance that we really want some data */
u_long data_area[512];
struct strbuf data_message;
int error;
data_message.maxlen = 2048;
data_message.len = 0;
data_message.buf = (char *)data_area;
connection_req->dl_primitive = DL_CONNECT_REQ;
connection_req->dl_dest_addr_length = rem_addr_len;
connection_req->dl_dest_addr_offset = sizeof(dl_connect_req_t);
connection_req->dl_qos_length = 0;
connection_req->dl_qos_offset = 0;
bcopy (rem_addr,
(unsigned char *)control_data + sizeof(dl_connect_req_t),
rem_addr_len);
/* well, I would call the put_control routine here, but the sequence */
/* of connection stuff with DLPI is a bit screwey with all this */
/* message passing - Toto, I don't think were in Berkeley anymore. */
control_message.len = sizeof(dl_connect_req_t) + rem_addr_len;
if ((error = putmsg(fd,&control_message,0,0)) !=0) {
fprintf(where,"dl_connect: putmsg failure, errno = %d, error 0x%x \n",
errno,error);
fflush(where);
return(-1);
};
pinfo.fd = fd;
pinfo.events = POLLIN | POLLPRI;
pinfo.revents = 0;
if ((error = getmsg(fd,&control_message,&data_message,&flags)) != 0) {
fprintf(where,"dl_connect: getmsg failure, errno = %d, error 0x%x \n",
errno,error);
fflush(where);
return(-1);
}
while (control_data[0] == DL_TEST_CON) {
/* i suppose we spin until we get an error, or a connection */
/* indication */
if((error = getmsg(fd,&control_message,&data_message,&flags)) !=0) {
fprintf(where,"dl_connect: getmsg failure, errno = %d, error = 0x%x\n",
errno,error);
fflush(where);
return(-1);
}
}
/* we are out - it either worked or it didn't - which was it? */
if (control_data[0] == DL_CONNECT_CON) {
return(0);
}
else {
return(-1);
}
}
int
dl_accept(fd, rem_addr, rem_addr_len)
int fd;
unsigned char *rem_addr;
int rem_addr_len;
{
dl_connect_ind_t *connect_ind = (dl_connect_ind_t *)control_data;
dl_connect_res_t *connect_res = (dl_connect_res_t *)control_data;
int tmp_cor;
int flags = 0;
/* hang around and wait for a connection request */
getmsg(fd,&control_message,0,&flags);
while (control_data[0] != DL_CONNECT_IND) {
getmsg(fd,&control_message,0,&flags);
}
/* now respond to the request. at some point, we may want to be sure */
/* that the connection came from the correct station address, but */
/* will assume that we do not have to worry about it just now. */
tmp_cor = connect_ind->dl_correlation;
connect_res->dl_primitive = DL_CONNECT_RES;
connect_res->dl_correlation = tmp_cor;
connect_res->dl_resp_token = 0;
connect_res->dl_qos_length = 0;
connect_res->dl_qos_offset = 0;
connect_res->dl_growth = 0;
return(put_control(fd, sizeof(dl_connect_res_t), 0, DL_OK_ACK));
}
int
dl_set_window(fd, window)
int fd, window;
{
return(0);
}
void
dl_stats(fd)
int fd;
{
}
int
dl_send_disc(fd)
int fd;
{
}
int
dl_recv_disc(fd)
int fd;
{
}
#endif /* DO_DLPI*/
/* these routines for confidence intervals are courtesy of IBM. They */
/* have been modified slightly for more general usage beyond TCP/UDP */
/* tests. raj 11/94 I would suspect that this code carries an IBM */
/* copyright that is much the same as that for the original HP */
/* netperf code */
int confidence_iterations; /* for iterations */
double
result_confid=-10.0,
loc_cpu_confid=-10.0,
rem_cpu_confid=-10.0,
measured_sum_result=0.0,
measured_square_sum_result=0.0,
measured_mean_result=0.0,
measured_var_result=0.0,
measured_sum_local_cpu=0.0,
measured_square_sum_local_cpu=0.0,
measured_mean_local_cpu=0.0,
measured_var_local_cpu=0.0,
measured_sum_remote_cpu=0.0,
measured_square_sum_remote_cpu=0.0,
measured_mean_remote_cpu=0.0,
measured_var_remote_cpu=0.0,
measured_sum_local_service_demand=0.0,
measured_square_sum_local_service_demand=0.0,
measured_mean_local_service_demand=0.0,
measured_var_local_service_demand=0.0,
measured_sum_remote_service_demand=0.0,
measured_square_sum_remote_service_demand=0.0,
measured_mean_remote_service_demand=0.0,
measured_var_remote_service_demand=0.0,
measured_sum_local_time=0.0,
measured_square_sum_local_time=0.0,
measured_mean_local_time=0.0,
measured_var_local_time=0.0,
measured_mean_remote_time=0.0,
measured_fails,
measured_local_results,
confidence=-10.0;
/* interval=0.1; */
/************************************************************************/
/* */
/* Constants for Confidence Intervals */
/* */
/************************************************************************/
void
init_stat()
{
measured_sum_result=0.0;
measured_square_sum_result=0.0;
measured_mean_result=0.0;
measured_var_result=0.0;
measured_sum_local_cpu=0.0;
measured_square_sum_local_cpu=0.0;
measured_mean_local_cpu=0.0;
measured_var_local_cpu=0.0;
measured_sum_remote_cpu=0.0;
measured_square_sum_remote_cpu=0.0;
measured_mean_remote_cpu=0.0;
measured_var_remote_cpu=0.0;
measured_sum_local_service_demand=0.0;
measured_square_sum_local_service_demand=0.0;
measured_mean_local_service_demand=0.0;
measured_var_local_service_demand=0.0;
measured_sum_remote_service_demand=0.0;
measured_square_sum_remote_service_demand=0.0;
measured_mean_remote_service_demand=0.0;
measured_var_remote_service_demand=0.0;
measured_sum_local_time=0.0;
measured_square_sum_local_time=0.0;
measured_mean_local_time=0.0;
measured_var_local_time=0.0;
measured_mean_remote_time=0.0;
measured_fails = 0.0;
measured_local_results=0.0,
confidence=-10.0;
}
/* this routine does a simple table lookup for some statistical */
/* function that I would remember if I stayed awake in my probstats */
/* class... raj 11/94 */
double
confid(int level, int freedom)
{
double t99[35],t95[35];
t95[1]=12.706;
t95[2]= 4.303;
t95[3]= 3.182;
t95[4]= 2.776;
t95[5]= 2.571;
t95[6]= 2.447;
t95[7]= 2.365;
t95[8]= 2.306;
t95[9]= 2.262;
t95[10]= 2.228;
t95[11]= 2.201;
t95[12]= 2.179;
t95[13]= 2.160;
t95[14]= 2.145;
t95[15]= 2.131;
t95[16]= 2.120;
t95[17]= 2.110;
t95[18]= 2.101;
t95[19]= 2.093;
t95[20]= 2.086;
t95[21]= 2.080;
t95[22]= 2.074;
t95[23]= 2.069;
t95[24]= 2.064;
t95[25]= 2.060;
t95[26]= 2.056;
t95[27]= 2.052;
t95[28]= 2.048;
t95[29]= 2.045;
t95[30]= 2.042;
t99[1]=63.657;
t99[2]= 9.925;
t99[3]= 5.841;
t99[4]= 4.604;
t99[5]= 4.032;
t99[6]= 3.707;
t99[7]= 3.499;
t99[8]= 3.355;
t99[9]= 3.250;
t99[10]= 3.169;
t99[11]= 3.106;
t99[12]= 3.055;
t99[13]= 3.012;
t99[14]= 2.977;
t99[15]= 2.947;
t99[16]= 2.921;
t99[17]= 2.898;
t99[18]= 2.878;
t99[19]= 2.861;
t99[20]= 2.845;
t99[21]= 2.831;
t99[22]= 2.819;
t99[23]= 2.807;
t99[24]= 2.797;
t99[25]= 2.787;
t99[26]= 2.779;
t99[27]= 2.771;
t99[28]= 2.763;
t99[29]= 2.756;
t99[30]= 2.750;
if(level==95){
return(t95[freedom]);
} else if(level==99){
return(t99[freedom]);
} else{
return(0);
}
}
void
calculate_confidence(int confidence_iterations,
float time,
double result,
float loc_cpu,
float rem_cpu,
float loc_sd,
float rem_sd)
{
if (debug) {
fprintf(where,
"calculate_confidence: itr %d; time %f; res %f\n",
confidence_iterations,
time,
result);
fprintf(where,
" lcpu %f; rcpu %f\n",
loc_cpu,
rem_cpu);
fprintf(where,
" lsdm %f; rsdm %f\n",
loc_sd,
rem_sd);
fflush(where);
}
/* the test time */
measured_sum_local_time +=
(double) time;
measured_square_sum_local_time +=
(double) time*time;
measured_mean_local_time =
(double) measured_sum_local_time/confidence_iterations;
measured_var_local_time =
(double) measured_square_sum_local_time/confidence_iterations
-measured_mean_local_time*measured_mean_local_time;
/* the test result */
measured_sum_result +=
(double) result;
measured_square_sum_result +=
(double) result*result;
measured_mean_result =
(double) measured_sum_result/confidence_iterations;
measured_var_result =
(double) measured_square_sum_result/confidence_iterations
-measured_mean_result*measured_mean_result;
/* local cpu utilization */
measured_sum_local_cpu +=
(double) loc_cpu;
measured_square_sum_local_cpu +=
(double) loc_cpu*loc_cpu;
measured_mean_local_cpu =
(double) measured_sum_local_cpu/confidence_iterations;
measured_var_local_cpu =
(double) measured_square_sum_local_cpu/confidence_iterations
-measured_mean_local_cpu*measured_mean_local_cpu;
/* remote cpu util */
measured_sum_remote_cpu +=
(double) rem_cpu;
measured_square_sum_remote_cpu+=
(double) rem_cpu*rem_cpu;
measured_mean_remote_cpu =
(double) measured_sum_remote_cpu/confidence_iterations;
measured_var_remote_cpu =
(double) measured_square_sum_remote_cpu/confidence_iterations
-measured_mean_remote_cpu*measured_mean_remote_cpu;
/* local service demand */
measured_sum_local_service_demand +=
(double) loc_sd;
measured_square_sum_local_service_demand+=
(double) loc_sd*loc_sd;
measured_mean_local_service_demand =
(double) measured_sum_local_service_demand/confidence_iterations;
measured_var_local_service_demand =
(double) measured_square_sum_local_service_demand/confidence_iterations
-measured_mean_local_service_demand*measured_mean_local_service_demand;
/* remote service demand */
measured_sum_remote_service_demand +=
(double) rem_sd;
measured_square_sum_remote_service_demand+=
(double) rem_sd*rem_sd;
measured_mean_remote_service_demand =
(double) measured_sum_remote_service_demand/confidence_iterations;
measured_var_remote_service_demand =
(double) measured_square_sum_remote_service_demand/confidence_iterations
-measured_mean_remote_service_demand*measured_mean_remote_service_demand;
if(confidence_iterations>1){
result_confid= (double) interval -
2.0 * confid(confidence_level,confidence_iterations-1)*
sqrt(measured_var_result/(confidence_iterations-1.0)) /
measured_mean_result;
loc_cpu_confid= (double) interval -
2.0 * confid(confidence_level,confidence_iterations-1)*
sqrt(measured_var_local_cpu/(confidence_iterations-1.0)) /
measured_mean_local_cpu;
rem_cpu_confid= (double) interval -
2.0 * confid(confidence_level,confidence_iterations-1)*
sqrt(measured_var_remote_cpu/(confidence_iterations-1.0)) /
measured_mean_remote_cpu;
if(debug){
printf("Conf_itvl %2d: results:%4.1f%% loc_cpu:%4.1f%% rem_cpu:%4.1f%%\n",
confidence_iterations,
(interval-result_confid)*100.0,
(interval-loc_cpu_confid)*100.0,
(interval-rem_cpu_confid)*100.0);
}
confidence = min(min(result_confid,loc_cpu_confid),rem_cpu_confid);
}
}
/* here ends the IBM code */
void
retrieve_confident_values(float *elapsed_time,
double *thruput,
float *local_cpu_utilization,
float *remote_cpu_utilization,
float *local_service_demand,
float *remote_service_demand)
{
*elapsed_time = (float)measured_mean_local_time;
*thruput = measured_mean_result;
*local_cpu_utilization = (float)measured_mean_local_cpu;
*remote_cpu_utilization = (float)measured_mean_remote_cpu;
*local_service_demand = (float)measured_mean_local_service_demand;
*remote_service_demand = (float)measured_mean_remote_service_demand;
}
/* display_confidence() is called when we could not achieve the */
/* desirec confidence in the results. it will print the achieved */
/* confidence to "where" raj 11/94 */
void
display_confidence()
{
fprintf(where,
"!!! WARNING\n");
fprintf(where,
"!!! Desired confidence was not achieved within ");
fprintf(where,
"the specified iterations.\n");
fprintf(where,
"!!! This implies that there was variability in ");
fprintf(where,
"the test environment that\n");
fprintf(where,
"!!! must be investigated before going further.\n");
fprintf(where,
"!!! Confidence intervals: Throughput : %4.1f%%\n",
100.0 * (interval - result_confid));
fprintf(where,
"!!! Local CPU util : %4.1f%%\n",
100.0 * (interval - loc_cpu_confid));
fprintf(where,
"!!! Remote CPU util : %4.1f%%\n\n",
100.0 * (interval - rem_cpu_confid));
}
#ifdef WIN32
#ifdef NT_PERF
/*****************************************************************************
* *
* InitPerfCntrs() - *
* *
* Changed to no longer access the NT performance registry interfaces. *
* A direct call to NtQuerySystemInformation (an undocumented NT API) *
* is made instead. Parameters determined by decompilation of ntkrnlmp *
* and ntdll. *
* *
*****************************************************************************/
PerfObj *InitPerfCntrs()
{
PerfObj *NewPerfCntrs;
DWORD NTVersion;
DWORD status;
NewPerfCntrs = (PerfObj *)GlobalAlloc(GPTR, sizeof(PerfObj));
assert(NewPerfCntrs != NULL);
ZeroMemory((PCHAR)NewPerfCntrs, sizeof(PerfObj));
// get NT version
NTVersion = GetVersion();
if (NTVersion >= 0x80000000)
{
fprintf(stderr, "Not running on Windows NT\n");
exit(1);
}
// locate the calls we need in NTDLL
//Lint
NtQuerySystemInformation = (NT_QUERY_SYSTEM_INFORMATION)GetProcAddress( GetModuleHandle("ntdll.dll"),
"NtQuerySystemInformation" );
if ( !(NtQuerySystemInformation) )
{
//Lint
status = GetLastError();
fprintf(stderr, "GetProcAddressFailed, status: %X\n", status);
exit(1);
}
// setup to measure timestamps with the high resolution timers.
if (QueryPerformanceFrequency(&TickHz) == FALSE)
{
fprintf(stderr,"MAIN - QueryPerformanceFrequency Failed!\n");
exit(2);
}
RestartPerfCntrs(NewPerfCntrs);
return(NewPerfCntrs);
} /* InitPerfCntrs */
/*****************************************************************************
* *
* RestartPerfCntrs() - *
* *
* The Performance counters must be read twice to produce rate and *
* percentage results. This routine is called before the start of a *
* benchmark to establish the initial counters. *
* It must be called a second time after the benchmark completes to *
* collect the final state of the performance counters. *
* ReportPerfCntrs is called to print the results after the benchmark *
* completes. *
* *
*****************************************************************************/
void RestartPerfCntrs(PerfObj *PerfCntrs)
{
DWORD returnLength = 0; //Lint
DWORD returnNumCPUs; //Lint
DWORD i;
DWORD status;
// Move previous data from EndInfo to StartInfo.
CopyMemory((PCHAR)&PerfCntrs->StartInfo[0],
(PCHAR)&PerfCntrs->EndInfo[0],
sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION)*(MAXCPUS +1));
PerfCntrs->StartTime = PerfCntrs->EndTime;
// get the current CPUTIME information
if ( (status = NtQuerySystemInformation( SystemProcessorPerformanceInformation,
(PCHAR)&PerfCntrs->EndInfo[0], sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION)*MAXCPUS,
&returnLength )) != 0)
{
fprintf(stderr, "NtQuery failed, status: %X\n", status);
exit(1);
}
PerfCntrs->EndTime = ReadPerformanceCounter();
// Validate that NtQuery returned a reasonable amount of data
if ((returnLength % sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION)) != 0)
{
fprintf(stderr, "NtQuery didn't return expected amount of data\n");
fprintf(stderr, "Expected a multiple of %i, returned %i\n",
sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION), returnLength);
exit(1);
}
returnNumCPUs = returnLength / sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION);
if (returnNumCPUs != (int)SystemInfo.dwNumberOfProcessors)
{
fprintf(stderr, "NtQuery didn't return expected amount of data\n");
fprintf(stderr, "Expected data for %i CPUs, returned %i\n",
(int)SystemInfo.dwNumberOfProcessors, returnNumCPUs);
exit(1);
}
// Zero entries not returned by NtQuery
ZeroMemory((PCHAR)&PerfCntrs->EndInfo[returnNumCPUs],
sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION)*
(MAXCPUS +1 - returnNumCPUs));
// Total all of the CPUs
// KernelTime needs to be fixed-up; it includes both idle & true kernel time
// Note that kernel time also includes DpcTime & InterruptTime, but I like this.
for (i=0; i < returnNumCPUs; i++)
{
PerfCntrs->EndInfo[i].KernelTime.QuadPart -= PerfCntrs->EndInfo[i].IdleTime.QuadPart;
PerfCntrs->EndInfo[MAXCPUS].IdleTime.QuadPart += PerfCntrs->EndInfo[i].IdleTime.QuadPart;
PerfCntrs->EndInfo[MAXCPUS].KernelTime.QuadPart += PerfCntrs->EndInfo[i].KernelTime.QuadPart;
PerfCntrs->EndInfo[MAXCPUS].UserTime.QuadPart += PerfCntrs->EndInfo[i].UserTime.QuadPart;
PerfCntrs->EndInfo[MAXCPUS].DpcTime.QuadPart += PerfCntrs->EndInfo[i].DpcTime.QuadPart;
PerfCntrs->EndInfo[MAXCPUS].InterruptTime.QuadPart += PerfCntrs->EndInfo[i].InterruptTime.QuadPart;
PerfCntrs->EndInfo[MAXCPUS].InterruptCount += PerfCntrs->EndInfo[i].InterruptCount;
}
} /* RestartPerfCntrs */
/*****************************************************************************
* *
* ReportPerfCntrs() - *
* *
* This routine reports the results of the various performance counters. *
* *
*****************************************************************************/
double ReportPerfCntrs(PerfObj *PerfCntrs)
{
double tot_CPU_Util;
int i;
int duration; // in 100 usecs
LARGE_INTEGER ActualDuration;
SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION DeltaInfo[MAXCPUS +1];
LARGE_INTEGER TotalCPUTime[MAXCPUS +1];
for (i=0; i <= MAXCPUS; i++)
{
DeltaInfo[i].IdleTime.QuadPart = PerfCntrs->EndInfo[i].IdleTime.QuadPart -
PerfCntrs->StartInfo[i].IdleTime.QuadPart;
DeltaInfo[i].KernelTime.QuadPart = PerfCntrs->EndInfo[i].KernelTime.QuadPart -
PerfCntrs->StartInfo[i].KernelTime.QuadPart;
DeltaInfo[i].UserTime.QuadPart = PerfCntrs->EndInfo[i].UserTime.QuadPart -
PerfCntrs->StartInfo[i].UserTime.QuadPart;
DeltaInfo[i].DpcTime.QuadPart = PerfCntrs->EndInfo[i].DpcTime.QuadPart -
PerfCntrs->StartInfo[i].DpcTime.QuadPart;
DeltaInfo[i].InterruptTime.QuadPart = PerfCntrs->EndInfo[i].InterruptTime.QuadPart -
PerfCntrs->StartInfo[i].InterruptTime.QuadPart;
DeltaInfo[i].InterruptCount = PerfCntrs->EndInfo[i].InterruptCount -
PerfCntrs->StartInfo[i].InterruptCount;
TotalCPUTime[i].QuadPart =
DeltaInfo[i].IdleTime.QuadPart +
DeltaInfo[i].KernelTime.QuadPart +
DeltaInfo[i].UserTime.QuadPart;
// KernelTime already includes DpcTime & InterruptTime!
// + DeltaInfo[i].DpcTime.QuadPart +
// DeltaInfo[i].InterruptTime.QuadPart;
}
tot_CPU_Util = 100.0*(1.0 - (double)DeltaInfo[MAXCPUS].IdleTime.QuadPart/(double)TotalCPUTime[MAXCPUS].QuadPart); //Lint
// Re-calculate duration, since we may have stoped early due to cntr-C.
ActualDuration.QuadPart = PerfCntrs->EndTime.QuadPart -
PerfCntrs->StartTime.QuadPart;
// convert to 1/10 milliseconds (100 usec)
ActualDuration.QuadPart = (ActualDuration.QuadPart*10000)/TickHz.QuadPart;
duration = ActualDuration.LowPart;
if (verbosity > 1)
{
fprintf(where,"ActualDuation (ms): %d\n", duration/10);
}
if (verbosity > 1)
{
fprintf(where, "%% CPU _Total");
if ((int)SystemInfo.dwNumberOfProcessors > 1)
{
for (i=0; i < (int)SystemInfo.dwNumberOfProcessors; i++)
{
fprintf(where, "\t CPU %i", i);
}
}
fprintf(where, "\n");
fprintf(where, "Busy %5.2f", tot_CPU_Util);
if ((int)SystemInfo.dwNumberOfProcessors > 1)
{
for (i=0; i < (int)SystemInfo.dwNumberOfProcessors; i++)
{
fprintf(where, "\t %5.2f",
100.0*(1.0 - (double)DeltaInfo[i].IdleTime.QuadPart/(double)TotalCPUTime[i].QuadPart)); //Lint
}
}
fprintf(where, "\n");
fprintf(where, "Kernel %5.2f",
100.0*(double)DeltaInfo[MAXCPUS].KernelTime.QuadPart/(double)TotalCPUTime[MAXCPUS].QuadPart); //Lint
if ((int)SystemInfo.dwNumberOfProcessors > 1)
{
for (i=0; i < (int)SystemInfo.dwNumberOfProcessors; i++)
{
fprintf(where, "\t %5.2f",
100.0*(double)DeltaInfo[i].KernelTime.QuadPart/(double)TotalCPUTime[i].QuadPart); //Lint
}
}
fprintf(where, "\n");
fprintf(where, "User %5.2f",
100.0*(double)DeltaInfo[MAXCPUS].UserTime.QuadPart/(double)TotalCPUTime[MAXCPUS].QuadPart);
if ((int)SystemInfo.dwNumberOfProcessors > 1)
{
for (i=0; i < (int)SystemInfo.dwNumberOfProcessors; i++)
{
fprintf(where, "\t %5.2f",
100.0*(double)DeltaInfo[i].UserTime.QuadPart/TotalCPUTime[i].QuadPart); //Lint
}
}
fprintf(where, "\n");
fprintf(where, "Dpc %5.2f",
100.0*(double)DeltaInfo[MAXCPUS].DpcTime.QuadPart/(double)TotalCPUTime[MAXCPUS].QuadPart); //Lint
if ((int)SystemInfo.dwNumberOfProcessors > 1)
{
for (i=0; i < (int)SystemInfo.dwNumberOfProcessors; i++)
{
fprintf(where, "\t %5.2f",
100.0*(double)DeltaInfo[i].DpcTime.QuadPart/(double)TotalCPUTime[i].QuadPart); //Lint
}
}
fprintf(where, "\n");
fprintf(where, "Interrupt %5.2f",
100.0*(double)DeltaInfo[MAXCPUS].InterruptTime.QuadPart/(double)TotalCPUTime[MAXCPUS].QuadPart); //Lint
if ((int)SystemInfo.dwNumberOfProcessors > 1)
{
for (i=0; i < (int)SystemInfo.dwNumberOfProcessors; i++)
{
fprintf(where, "\t %5.2f",
100.0*(double)DeltaInfo[i].InterruptTime.QuadPart/TotalCPUTime[i].QuadPart); //Lint
}
}
fprintf(where, "\n\n");
fprintf(where, "Interrupt/Sec. %5.1f",
(double)DeltaInfo[MAXCPUS].InterruptCount*10000.0/(double)duration);
if ((int)SystemInfo.dwNumberOfProcessors > 1)
{
for (i=0; i < (int)SystemInfo.dwNumberOfProcessors; i++)
{
fprintf(where, "\t %5.1f",
(double)DeltaInfo[i].InterruptCount*10000.0/(double)duration);
}
}
fprintf(where, "\n\n");
fflush(where);
}
return (tot_CPU_Util);
} /* ReportPerfCntrs */
/*****************************************************************************
* *
* ClosePerfCntrs() - *
* *
* This routine cleans up the performance counter APIs. *
* *
*****************************************************************************/
void ClosePerfCntrs(PerfObj *PerfCntrs)
{
GlobalFree(PerfCntrs);
NtQuerySystemInformation = NULL;
} /* ClosePerfCntrs */
#endif // NT_PERF
#endif // WIN32
|