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
|
/* -*- mode: C++; tab-width: 4 -*- */
/* ===================================================================== *\
Copyright (c) 1999-2001 Palm, Inc. or its subsidiaries.
All rights reserved.
This file is part of the Palm OS Emulator.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
\* ===================================================================== */
#include "EmCommon.h"
#include "Platform_NetLib.h"
#include "PreferenceMgr.h" // Preference
#include "Byteswapping.h" // Canonical
#include "Logging.h" // LogAppendMsg
#include "Miscellaneous.h" // StMemory
#include "Platform.h" // AllocateMemory
#include "ROMStubs.h" // NetLibConfigMakeActive
#if PLATFORM_MAC
#include <errno.h> // ENOENT, errno
#include <sys/types.h> // u_short, ssize_t, etc.
#include <sys/socket.h> // sockaddr
#include <sys/errno.h> // Needed for error translation.
#include <sys/time.h> // fd_set
#include <netdb.h> // hostent
#include <unistd.h> // close
#include <sys/filio.h> // FIONBIO
#include <sys/ioctl.h> // ioctl
#include <netinet/in.h> // sockaddr_in
#include <netinet/tcp.h> // TCP_NODELAY
#endif
#if PLATFORM_UNIX
#include <errno.h> // ENOENT, errno
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h> // timeval
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <netdb.h>
#include <unistd.h> // close
#endif
#if defined(__svr4__)
#include <sys/filio.h> // FIONBIO
#endif
#define PRINTF if (!LogNetLib ()) ; else LogAppendMsg
// ===== COPIED FROM NETPRV.H =====
// Max # of open built-in sockets at one time.
#define netMaxNumSockets 4 // Max # of sockets
#define netMinSocketRefNum (sysFileDescNet) // lowest libRefNum
#define netMaxSocketRefNum (sysFileDescNet+netMaxNumSockets-1) // highest libRefNum
// The sockets maintained by NetLib plug-ins are numbered above the built-in
// sockets.
#define netMaxNumPISockets 4 // Max # of Plug-In sockets
#define netMinPISocketRefNum (netMaxSocketRefNum+1) // lowest libRefNum
#define netMaxPISocketRefNum (netMinPISocketRefNum+netMaxNumPISockets-1)
// A NetSocketRef is the index into an array holding the pointers to
// socket data. Because NetSocketRefs should not be zero, the refNums
// actually start at sysFileDescNet (which happens to be 1).
//
// The NetLib headers are sensitive to this numbering. In particular,
// netFDSet, et al, assume a certain number range in order to set bits
// in the NetFDSetType object.
//
// Therefore, we can't just return the results of the socket() function as
// the result of NetLibSocketOpen(). Though an opaque type, the range of
// values returned by socket() is outside the range allowed by netFDSet.
// So, we have to map the SOCKET returned by socket() to something allowed
// by NetLib. We store the SOCKETs in the array below, and return the
// index of the SOCKET, just as NetLib would.
SOCKET gSockets[netMaxNumSockets] = { INVALID_SOCKET, INVALID_SOCKET, INVALID_SOCKET, INVALID_SOCKET };
// The following are copied from WinSock2.h. We don't include that file
// here because it can't be included in the same scope as WinSock.h, which
// Windows.h pulls in.
#define SD_RECEIVE 0x00
#define SD_SEND 0x01
#define SD_BOTH 0x02
#if PLATFORM_WINDOWS
extern WORD gWinSockVersion;
#endif
static long gOpenCount;
static UInt16 gCurConfigIndex;
static Bool NetLibToSocketsRef (const NetSocketRef inSocket,
SOCKET& outSocket);
static Bool RememberSocketsRef (const SOCKET inSocket,
NetSocketRef& outSocket);
static Bool ForgetSocketsRef (NetSocketRef sRef);
static Bool NetLibToSocketsDomain (const NetSocketAddrEnum inDomain,
u_short& outDomain);
static Bool NetLibToSocketsType (const NetSocketTypeEnum inType,
int& outType);
static Bool NetLibToSocketsProtocol (const Int16 inProtocol,
int& outProtocol);
static Bool NetLibToSocketsDirection (const Int16 inDirection,
int& outDirection);
static Bool NetLibToSocketsFlags (const UInt16 inFlags,
int& outFlags);
static Bool NetLibToSocketsOptions (const NetSocketOptLevelEnum inOptLevel,
const NetSocketOptEnum inOptName,
const MemPtr inOptVal,
const UInt16 inOptValLen,
int& outOptLevel,
int& outOptName,
char*& outOptVal,
socklen_t& outOptValLen);
static Bool SocketsToNetLibOptions (const int inOptLevel,
const int inOptName,
/*const*/ char*& inOptVal,
const int inOptValLen,
NetSocketOptLevelEnum outOptLevel,
NetSocketOptEnum outOptName,
MemPtr outOptVal,
UInt16 outOptValLen);
static Bool NetLibToSocketsAddr (const NetSocketAddrType& inAddr,
const Int16 inAddrLen,
sockaddr& outAddr,
int outAddrLen);
static Bool SocketsToNetLibAddr (const sockaddr& inAddr,
int inAddrLen,
NetSocketAddrType& outAddr,
Int16 outAddrLen);
static Bool SocketsToNetLibHostEnt (const hostent& inHostEnt,
NetHostInfoBufType& outHostEnt);
static Bool SocketsToNetLibServEnt (const servent& inServEnt,
NetServInfoBufType& outServEnt);
static Bool NetLibToSocketsFDSet (const NetFDSetType* inFDSet,
UInt16 inWidth,
fd_set*& outFSSet,
int& outWidth);
static Bool SocketsToNetLibFDSet (const fd_set* inFDSet,
int inWidth,
NetFDSetType* outFSSet,
UInt16& outWidth);
static Bool NetLibToSocketsScalarOption (const MemPtr inOptVal,
const UInt16 inOptValLen,
char*& outOptVal,
socklen_t& outOptValLen);
static Bool SocketsToNetLibScalarOption (/*const*/ char*& inOptVal,
const int inOptValLen,
MemPtr outOptVal,
UInt16 outOptValLen);
static uint32 PrvGetError (void);
static Err PrvGetTranslatedError (void);
#if PLATFORM_MAC
static Err PrvGetTranslatedHError (void);
#endif
static Err PrvTranslateError (uint32 err);
/***********************************************************************
*
* FUNCTION: Platform_NetLib::Initialize
*
* DESCRIPTION: NetLib redirection subsystem initialization routine
*
* PARAMETERS:
*
* RETURNED:
*
***********************************************************************/
void Platform_NetLib::Initialize (void)
{
}
/***********************************************************************
*
* FUNCTION: Platform_NetLib::Reset
*
* DESCRIPTION: NetLib redirection subsystem reset routine
*
* PARAMETERS:
*
* RETURNED:
*
***********************************************************************/
void Platform_NetLib::Reset (void)
{
Dispose();
}
/***********************************************************************
*
* FUNCTION: Platform_NetLib::Save
*
* DESCRIPTION: NetLib redirection subsystem state saving routine
*
* PARAMETERS:
*
* RETURNED:
*
***********************************************************************/
void Platform_NetLib::Save (SessionFile&)
{
}
/***********************************************************************
*
* FUNCTION: Platform_NetLib::Load
*
* DESCRIPTION: NetLib redirection subsystem state loading routine
*
* PARAMETERS:
*
* RETURNED:
*
***********************************************************************/
void Platform_NetLib::Load (SessionFile&)
{
}
/***********************************************************************
*
* FUNCTION: Platform_NetLib::Dispose
*
* DESCRIPTION: NetLib redirection subsystem cleanup routine
*
* PARAMETERS:
*
* RETURNED:
*
***********************************************************************/
void Platform_NetLib::Dispose (void)
{
for (int ii = 0; ii < netMaxNumSockets; ++ii)
{
if (gSockets[ii] != INVALID_SOCKET)
{
closesocket (gSockets[ii]);
gSockets[ii] = INVALID_SOCKET;
}
}
gOpenCount = 0;
}
Bool Platform_NetLib::Redirecting (void)
{
Preference<bool> pref (kPrefKeyRedirectNetLib);
return *pref;
}
//--------------------------------------------------
// Library initialization, shutdown, sleep and wake
//--------------------------------------------------
Err Platform_NetLib::Open(UInt16 libRefNum, UInt16* netIFErrsP)
{
UNUSED_PARAM(libRefNum)
// Init return error
*netIFErrsP = 0;
#if PLATFORM_WINDOWS
if (gWinSockVersion == 0)
{
return netErrInternal;
}
#endif
if (gOpenCount > 0)
{
++gOpenCount;
return netErrAlreadyOpen;
}
++gOpenCount;
return errNone;
}
Err Platform_NetLib::OpenConfig(UInt16 libRefNum, UInt16 configIndex, UInt32 openFlags,
UInt16* netIFErrP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(openFlags)
Err err = errNone;
Boolean needRefresh = false;
// Init return error
*netIFErrP = errNone;
//-----------------------------------------------------------------
// We now have a "lock" on the globals and have prevented all other tasks
// from initiating an open or close until we release the lock.
// Now, see what the current state of the library is and take the
// appropriate action
// If it's already open make sure it's a compatible configuration,
// if not, it's an error
// If we're in the closeWait state see if it's
// a compatible configuration, if it is just bump it's open
// count and return. If it's not, finish the close before we
// change the configuration
//-----------------------------------------------------------------
if (gOpenCount > 0)
{
// If we can use the current state...
if (configIndex == netConfigIndexCurSettings || configIndex == gCurConfigIndex)
{
gOpenCount++;
if (gOpenCount > 1)
err = netErrAlreadyOpen;
// Refresh connections if necessary
needRefresh = true;
goto Exit;
}
err = netErrAlreadyOpenWithOtherConfig;
goto Exit;
}
//-----------------------------------------------------------------
// Activate the new configuration. This routine will initialize
// the config if it's one of our pre-defined ones that we
// know how to initialize and it's the first time we've used it.
//
// It will also save the current configuration, update the
// curConfigIndex field of the config table with the new config
// index, and set the restoreConfig index to the old index
// so that PrvClose() in the protocol task can restore the
// current configuration when it closes the NetLib.
//-----------------------------------------------------------------
if (configIndex != netConfigIndexCurSettings)
{
err = NetLibConfigMakeActive (libRefNum, configIndex);
// !!! Doesn't do the restoreOldConfigOnClose stuff...
if (err)
goto Exit;
gCurConfigIndex = configIndex;
}
//-----------------------------------------------------------------
// Do the guts of the open. This routine will leave the globals
// locked. If it's successful, it will return the new "realGlobals"
// ptr. If not, it will leave the shadow globals
//-----------------------------------------------------------------
err = Platform_NetLib::Open (libRefNum, netIFErrP);
//-----------------------------------------------------------------
// Exit now..
//-----------------------------------------------------------------
Exit:
// See if we should refresh any connections
if (!err && needRefresh)
{
Boolean allIFsUp;
err = Platform_NetLib::ConnectionRefresh (libRefNum, true, &allIFsUp, netIFErrP);
}
return err;
}
Err Platform_NetLib::Close(UInt16 libRefNum, UInt16 immediate)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(immediate)
if (gOpenCount <= 0)
{
return netErrNotOpen;
}
--gOpenCount;
return errNone;
}
Err Platform_NetLib::Sleep(UInt16 libRefNum)
{
UNUSED_PARAM(libRefNum)
// stub. Do Nothing
return errNone;
}
Err Platform_NetLib::Wake(UInt16 libRefNum)
{
UNUSED_PARAM(libRefNum)
// stub. Do Nothing
return errNone;
}
// This call forces the library to complete a close if it's
// currently in the close-wait state. Returns 0 if library is closed,
// Returns netErrFullyOpen if library is still open by some other task.
Err Platform_NetLib::FinishCloseWait(UInt16 libRefNum)
{
UNUSED_PARAM(libRefNum)
// stub. Do Nothing
return errNone;
}
// This call is for use by the Network preference panel only. It
// causes the NetLib to fully open if it's currently in the close-wait
// state. If it's not in the close wait state, it returns an error code
Err Platform_NetLib::OpenIfCloseWait(UInt16 libRefNum)
{
UNUSED_PARAM(libRefNum)
return netErrNotOpen;
}
// Get the open Count of the NetLib
Err Platform_NetLib::OpenCount(UInt16 libRefNum, UInt16* countP)
{
UNUSED_PARAM(libRefNum)
*countP = gOpenCount;
return errNone;
}
// Give NetLib a chance to close the connection down in response
// to a power off event. Returns non-zero if power should not be
// turned off. EventP points to the event that initiated the power off
// which is either a keyDownEvent of the hardPowerChr or the autoOffChr.
// Don't include unless building for Viewer
Err Platform_NetLib::HandlePowerOff (UInt16 libRefNum, EventPtr eventP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(eventP)
Err err = Platform_NetLib::Close (libRefNum, true);
// Don't let the fact that we're not open prevent us from powering off.
if (err == netErrNotOpen)
err = errNone;
return err;
}
// Check status or try and reconnect any interfaces which have come down.
// This call can be made by applications when they suspect that an interface
// has come down (like PPP or SLIP). NOTE: This call can display UI
// (if 'refresh' is true) so it MUST be called from the UI task.
Err Platform_NetLib::ConnectionRefresh(UInt16 libRefNum,
Boolean refresh,
Boolean* allInterfacesUpP,
UInt16* netIFErrP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(refresh)
*allInterfacesUpP = true;
*netIFErrP =0;
return errNone;
}
//--------------------------------------------------
// Socket creation and option setting
//--------------------------------------------------
// Create a socket and return a refnum to it. Protocol is normally 0.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
NetSocketRef Platform_NetLib::SocketOpen(UInt16 libRefNum,
NetSocketAddrEnum socketDomain,
NetSocketTypeEnum socketType,
Int16 socketProtocol,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
u_short af;
int type;
int protocol;
if (!NetLibToSocketsDomain (socketDomain, af) ||
!NetLibToSocketsType (socketType, type) ||
!NetLibToSocketsProtocol (socketProtocol, protocol))
{
*errP = netErrParamErr;
return -1;
}
SOCKET s = socket (af, type, protocol);
if (s == INVALID_SOCKET)
{
*errP = PrvGetTranslatedError ();
return -1;
}
NetSocketRef result;
if (!RememberSocketsRef (s, result))
{
// !!! Need to close the socket. But we should never
// really get here...we allow as many sockets at NetLib
// does. I guess if NetLib raised the number of sockets
// and we don't, then we'd get here, though...
*errP = netErrNoMoreSockets;
return -1;
}
*errP = 0;
return result;
}
// Close a socket.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
Int16 Platform_NetLib::SocketClose(UInt16 libRefNum,
NetSocketRef sRef,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
SOCKET s;
if (!NetLibToSocketsRef (sRef, s))
{
*errP = netErrParamErr;
return -1;
}
int result = closesocket (s);
// Drop our reference to this socket.
// !!! Do this even if closesocket fails?
ForgetSocketsRef (sRef);
if (result)
{
*errP = PrvGetTranslatedError ();
return -1;
}
*errP = 0;
return result;
}
// Set a socket option. Level is usually netSocketOptLevelSocket. Option is one of
// netSocketOptXXXXX. OptValueP is a pointer to the new value and optValueLen is
// the length of the option value.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
Int16 Platform_NetLib::SocketOptionSet(UInt16 libRefNum,
NetSocketRef sRef,
NetSocketOptLevelEnum optLevel,
NetSocketOptEnum opt,
MemPtr optValueP,
UInt16 optValueLen,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
int result;
if (optLevel == netSocketOptLevelSocket &&
opt == netSocketOptSockNonBlocking)
{
SOCKET s;
if (!NetLibToSocketsRef (sRef, s))
{
*errP = netErrParamErr;
return -1;
}
#if PLATFORM_WINDOWS
unsigned long param;
#else
long param;
#endif
if (optValueLen == 1)
param = *(char*) optValueP;
else if (optValueLen == 2)
param = *(short*) optValueP;
else if (optValueLen == 4)
param = *(long*) optValueP;
else
param = 1;
result = ioctlsocket (s, FIONBIO, ¶m);
}
else
{
SOCKET s;
int level;
int optName;
char* optVal;
socklen_t optLen;
if (!NetLibToSocketsRef (sRef, s) ||
!NetLibToSocketsOptions (optLevel, opt, optValueP, optValueLen, level, optName, optVal, optLen))
{
*errP = netErrParamErr;
return -1;
}
result = setsockopt (s, level, optName, optVal, optLen);
Platform::DisposeMemory (optVal);
}
if (result)
{
*errP = PrvGetTranslatedError ();
return -1;
}
*errP = 0;
return result;
}
// Get a socket option.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
Int16 Platform_NetLib::SocketOptionGet(UInt16 libRefNum,
NetSocketRef sRef,
NetSocketOptLevelEnum optLevel,
NetSocketOptEnum opt,
MemPtr optValueP,
UInt16* optValueLenP,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
SOCKET s;
int level;
int optName;
char* optVal;
socklen_t optLen = *optValueLenP;
if (!NetLibToSocketsRef (sRef, s) ||
!NetLibToSocketsOptions (optLevel, opt, optValueP, *optValueLenP, level, optName, optVal, optLen))
{
*errP = netErrParamErr;
return -1;
}
int result = getsockopt (s, level, optName, optVal, &optLen);
if (result)
{
Platform::DisposeMemory (optVal);
*errP = PrvGetTranslatedError ();
return -1;
}
if (!SocketsToNetLibOptions (level, optName, optVal, optLen, optLevel, opt, optValueP, *optValueLenP))
{
*errP = netErrParamErr;
return -1;
}
*errP = 0;
return result;
}
//--------------------------------------------------
// Socket Control
//--------------------------------------------------
// Bind a source address and port number to a socket. This makes the
// socket accept incoming packets destined for the given socket address.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
Int16 Platform_NetLib::SocketBind(UInt16 libRefNum,
NetSocketRef sRef,
NetSocketAddrType* sockAddrP,
Int16 addrLen,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
SOCKET s;
sockaddr name;
int namelen = sizeof (name);
if (!NetLibToSocketsRef (sRef, s) ||
!NetLibToSocketsAddr (*sockAddrP, addrLen, name, namelen))
{
*errP = netErrParamErr;
return -1;
}
int result = bind (s, &name, namelen);
if (result)
{
*errP = PrvGetTranslatedError ();
return -1;
}
*errP = 0;
return result;
}
// Connect to a remote socket. For a stream based socket (i.e. TCP), this initiates
// a 3-way handshake with the remote machine to establish a connection. For
// non-stream based socket, this merely specifies a destination address and port
// number for future outgoing packets from this socket.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
Int16 Platform_NetLib::SocketConnect(UInt16 libRefNum,
NetSocketRef sRef,
NetSocketAddrType* sockAddrP,
Int16 addrLen,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
SOCKET s;
sockaddr name;
int namelen = sizeof (name);
if (!NetLibToSocketsRef (sRef, s) ||
!NetLibToSocketsAddr (*sockAddrP, addrLen, name, namelen))
{
*errP = netErrParamErr;
return -1;
}
int result = connect (s, &name, namelen);
if (result)
{
// Work around Windows 2000 bug. According to Mark Baysinger
// (<mbaysing@qualcomm.com>):
//
// Windows 2000 seems to return the wrong error code from connect() with
// non-blocking IO when the connection is already in progress. (It returns
// WSAEINVAL instead of WSAEALREADY.) This results in NetLibSocketConnect
// returning netErrParamErr instead of netErrSocketAlreadyConnected."
//
// However, according to the connect() documentation on MSDN:
//
// Until the connection attempt completes on a nonblocking socket, all
// subsequent calls to connect on the same socket will fail with the error
// value WSAEALREADY, and WSAEISCONN when the connection completes
// successfully. Due to ambiguities the Windows Sockets Specification 1.1,
// error values returned from connect while a connection is already pending
// may vary among implementations. As a result, it is not recommended that
// applications use multiple calls to connect to detect connection
// completion. If they do, they must be prepared to handle WSAEINVAL and
// WSAEWOULDBLOCK error values the same way that they handle WSAEALREADY,
// to assure robust execution.
//
// So it looks like (a) there are other result codes to look for, and (b)
// we shouldn't consider only Windows 2000.
//
// Further Notes:
//
// In the connect documentation, it says:
//
// With a nonblocking socket, the connection attempt cannot be completed
// immediately. In this case, connect will return SOCKET_ERROR, and
// WSAGetLastError will return WSAEWOULDBLOCK. In this case, there are
// three possible scenarios: <snip>
//
// This means that WSAEWOULDBLOCK should not be translated to WSAEALREADY.
#if PLATFORM_WINDOWS
uint32 err = ::PrvGetError ();
if (err == WSAEINVAL /*|| err == WSAEWOULDBLOCK*/)
{
err = WSAEALREADY;
}
*errP = PrvTranslateError (err);
#else
*errP = PrvGetTranslatedError ();
#endif
return -1;
}
*errP = 0;
return result;
}
// Makes a socket ready to accept incoming connection requests. The queueLen
// specifies the max number of pending connection requests that will be enqueued
// while the server is busy handling other requests.
// Only applies to stream based (i.e. TCP) sockets.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
Int16 Platform_NetLib::SocketListen(UInt16 libRefNum,
NetSocketRef sRef,
UInt16 queueLen,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
SOCKET s;
if (!NetLibToSocketsRef (sRef, s))
{
*errP = netErrParamErr;
return -1;
}
int result = listen (s, queueLen);
if (result)
{
*errP = PrvGetTranslatedError ();
return -1;
}
*errP = 0;
return result;
}
// Blocks the current process waiting for an incoming connection request. The socket
// must have previously be put into listen mode through the NetLibSocketListen call.
// On return, *sockAddrP will have the remote machines address and port number.
// Only applies to stream based (i.e. TCP) sockets.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
Int16 Platform_NetLib::SocketAccept(UInt16 libRefNum,
NetSocketRef sRef,
NetSocketAddrType* sockAddrP,
Int16* addrLenP,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
SOCKET s;
sockaddr addr;
socklen_t addrlen = sizeof(addr);
if (!NetLibToSocketsRef (sRef, s))
{
*errP = netErrParamErr;
return -1;
}
int new_s = accept (s, &addr, &addrlen);
if (new_s == INVALID_SOCKET)
{
*errP = PrvGetTranslatedError ();
return -1;
}
NetSocketRef result;
if (!RememberSocketsRef (new_s, result))
{
// !!! Need to un-accept?
*errP = netErrParamErr;
return -1;
}
if (!SocketsToNetLibAddr (addr, addrlen, *sockAddrP, *addrLenP))
{
// !!! Need to un-accept?
*errP = netErrParamErr;
return -1;
}
*errP = 0;
return (Int16) result;
}
// Shutdown a connection in one or both directions.
// Only applies to stream based (i.e. TCP) sockets.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
Int16 Platform_NetLib::SocketShutdown(UInt16 libRefNum,
NetSocketRef sRef,
Int16 direction,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
SOCKET s;
int how;
if (!NetLibToSocketsRef (sRef, s) ||
!NetLibToSocketsDirection (direction, how))
{
*errP = netErrParamErr;
return -1;
}
int result = shutdown (s, how);
if (result)
{
*errP = PrvGetTranslatedError ();
return -1;
}
*errP = 0;
return result;
}
// Gets the local and remote addresses of a socket. Useful for TCP sockets that
// get dynamically bound at connect time.
// Returns 0 on success, -1 on error. If error, *errP gets filled in with error code.
Int16 Platform_NetLib::SocketAddr(UInt16 libRefNum,
NetSocketRef sRef,
NetSocketAddrType* locAddrP,
Int16* locAddrLenP,
NetSocketAddrType* remAddrP,
Int16* remAddrLenP,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
int result = 0;
SOCKET s;
if (!NetLibToSocketsRef (sRef, s))
{
*errP = netErrParamErr;
return -1;
}
if (locAddrP && locAddrLenP)
{
sockaddr locName;
socklen_t locNamelen = sizeof (locName);
result = getsockname (s, &locName, &locNamelen);
// For unbound sockets, NetLib returns 0.0.0.0
// !!! Assumes AF_INET family!
if (result == -1 && ::PrvGetError () == WSAEINVAL)
{
result = errNone;
sockaddr_in& inLocName = (sockaddr_in&) locName;
memset (&inLocName, 0, sizeof (inLocName));
inLocName.sin_family = AF_INET;
inLocName.sin_port = htons(0);
inLocName.sin_addr.s_addr = htonl(INADDR_ANY);
}
if (result)
{
*errP = PrvGetTranslatedError ();
return -1;
}
if (!SocketsToNetLibAddr (locName, locNamelen, *locAddrP, *locAddrLenP))
{
*errP = netErrParamErr;
return -1;
}
}
if (remAddrP && remAddrLenP)
{
sockaddr remName;
socklen_t remNamelen = sizeof (remName);
result = getpeername (s, &remName, &remNamelen);
if (result)
{
*errP = PrvGetTranslatedError ();
return -1;
}
if (!SocketsToNetLibAddr (remName, remNamelen, *remAddrP, *remAddrLenP))
{
*errP = netErrParamErr;
return -1;
}
}
*errP = 0;
return result;
}
//--------------------------------------------------
// Sending and Receiving
//--------------------------------------------------
// Send data through a socket. The data is specified through the NetIOParamType
// structure.
// Flags is one or more of netMsgFlagXXX.
// Returns # of bytes sent on success, or -1 on error. If error, *errP gets filled
// in with error code.
Int16 Platform_NetLib::SendPB(UInt16 libRefNum,
NetSocketRef sRef,
NetIOParamType* pbP,
UInt16 sendFlags,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
SOCKET s;
int flags;
int result;
if (!NetLibToSocketsRef (sRef, s) ||
!NetLibToSocketsFlags (sendFlags, flags))
{
*errP = netErrParamErr;
return -1;
}
// Wait till the socket is ready to send.
if (timeout >= 0)
{
fd_set hostWriteFDs;
struct timeval hostTimeout;
struct timeval *hTp = NULL;
FD_ZERO(&hostWriteFDs);
FD_SET(s, &hostWriteFDs);
// Convert ticks to microseconds.
const uint64 kMicrosecondsPerSecond = 1000000;
const uint64 kSysTicksPerSecond = 100; // !!! Should really call SysTicksPerSecond.
uint64 usecs = timeout * kMicrosecondsPerSecond / kSysTicksPerSecond;
hostTimeout.tv_sec = usecs / kMicrosecondsPerSecond;
hostTimeout.tv_usec = usecs % kMicrosecondsPerSecond;
hTp = &hostTimeout;
result = select (s + 1, NULL, &hostWriteFDs, NULL, hTp);
if (result == SOCKET_ERROR)
{
*errP = PrvGetTranslatedError ();
return -1;
}
else if (!result)
{
*errP = netErrTimeout;
return -1;
}
}
// Collapse the scatter-write array into a single big buffer.
UInt16 ii;
long bigBufferSize = 0;
for (ii = 0; ii < pbP->iovLen; ++ii)
{
bigBufferSize += pbP->iov[ii].bufLen;
}
StMemory bigBuffer (bigBufferSize);
long offset = 0;
for (ii = 0; ii < pbP->iovLen; ++ii)
{
memcpy (bigBuffer.Get() + offset, pbP->iov[ii].bufP, pbP->iov[ii].bufLen);
offset += pbP->iov[ii].bufLen;
}
// Determine if we need to set up a return address buffer.
sockaddr name;
sockaddr* nameP = NULL;
socklen_t namelen = 0;
if (pbP->addrP)
{
nameP = &name;
namelen = sizeof (name);
if (!NetLibToSocketsAddr (*(NetSocketAddrType*) pbP->addrP, pbP->addrLen, name, namelen))
{
*errP = netErrParamErr;
return -1;
}
}
// Make the send call.
//
// In previous versions of this function, we tried to make some determination
// as to whether send() or sendto() needed to be called. However,
// according to the Windows sockets documentation, "On a connection-oriented
// socket, the to and tolen parameters are ignored, making sento equivalent
// to send". And the GUSI sources back this up. So we just use sendto in
// all cases.
result = sendto (s, bigBuffer.Get(), bigBufferSize, flags, nameP, namelen);
// If there was an error, translate and return it.
if (result == SOCKET_ERROR)
{
*errP = PrvGetTranslatedError ();
return -1;
}
*errP = 0;
return result;
}
// Send data through a socket. The data to send is passed in a single buffer,
// unlike NetLibSendPB. If toAddrP is not nil, the data will be sent to
// address *toAddrP.
// Flags is one or more of netMsgFlagXXX.
// Returns # of bytes sent on success, or -1 on error. If error, *errP gets filled
// in with error code.
Int16 Platform_NetLib::Send(UInt16 libRefNum,
NetSocketRef sRef,
const MemPtr bufP,
UInt16 bufLen,
UInt16 sendFlags,
MemPtr toAddrP,
UInt16 toLen,
Int32 timeout,
Err* errP)
{
// Init the iov
NetIOVecType iov;
iov.bufP = (UInt8*) bufP;
iov.bufLen = bufLen;
// Form a paramBlock for the Platform_NetLib::SendPB call
NetIOParamType pb;
if (toLen)
{
pb.addrP = (UInt8*) toAddrP;
pb.addrLen = toLen;
}
else
{
pb.addrP = 0;
pb.addrLen = 0;
}
pb.iov = &iov;
pb.iovLen = 1;
// Do the call
Int16 result = SendPB (libRefNum, sRef, &pb, sendFlags, timeout, errP);
return result;
}
// Receive data from a socket. The data is gatthered into buffers specified in the
// NetIOParamType structure.
// Flags is one or more of netMsgFlagXXX.
// Timeout is max # of ticks to wait, or -1 for infinite, or 0 for none.
// Returns # of bytes received, or -1 on error. If error, *errP gets filled in
// with error code.
Int16 Platform_NetLib::ReceivePB(UInt16 libRefNum,
NetSocketRef sRef,
NetIOParamType* pbP,
UInt16 rcvFlags,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
SOCKET s;
int flags;
int result;
if (!NetLibToSocketsRef (sRef, s) ||
!NetLibToSocketsFlags (rcvFlags, flags))
{
*errP = netErrParamErr;
return -1;
}
// Wait till the socket is ready to receive.
if (timeout >= 0)
{
fd_set hostReadFDs;
struct timeval hostTimeout;
struct timeval *hTp = NULL;
FD_ZERO(&hostReadFDs);
FD_SET(s, &hostReadFDs);
// Convert ticks to microseconds.
const uint64 kMicrosecondsPerSecond = 1000000;
const uint64 kSysTicksPerSecond = 100; // !!! Should really call SysTicksPerSecond.
uint64 usecs = timeout * kMicrosecondsPerSecond / kSysTicksPerSecond;
hostTimeout.tv_sec = usecs / kMicrosecondsPerSecond;
hostTimeout.tv_usec = usecs % kMicrosecondsPerSecond;
hTp = &hostTimeout;
result = select (s + 1, &hostReadFDs, NULL, NULL, hTp);
if (result == SOCKET_ERROR)
{
*errP = PrvGetTranslatedError ();
return -1;
}
else if (!result)
{
*errP = netErrTimeout;
return -1;
}
}
// Collapse the gather-read array into a single big buffer.
// First, get the size for the big buffer.
UInt16 ii;
long bigBufferSize = 0;
for (ii = 0; ii < pbP->iovLen; ++ii)
{
bigBufferSize += pbP->iov[ii].bufLen;
}
// Second, allocate the buffer.
StMemory bigBuffer (bigBufferSize);
// Third, copy the input buffer's contents to the big buffer.
long offset = 0;
for (ii = 0; ii < pbP->iovLen; ++ii)
{
memcpy (bigBuffer.Get () + offset, pbP->iov[ii].bufP, pbP->iov[ii].bufLen);
offset += pbP->iov[ii].bufLen;
}
// Determine if we need to set up a return address buffer.
sockaddr name;
sockaddr* nameP = NULL;
socklen_t namelen = 0;
if (pbP->addrP)
{
nameP = &name;
namelen = sizeof (name);
}
// Make the receive call.
//
// In previous versions of this function, we tried to make some determination
// as to whether recv() or recvfrom() needed to be called. However,
// according to my Linux man page, recv() is the same as recvfrom() but with
// a NULL name parameter. So we just use recvfrom in all cases.
result = recvfrom (s, bigBuffer.Get (), bigBufferSize, flags, nameP, &namelen);
// If there was an error, translate and return it.
if (result == SOCKET_ERROR)
{
*errP = PrvGetTranslatedError ();
return -1;
}
// If we established a return address buffer, return the result
// back to the caller.
if (pbP->addrP)
{
if (!SocketsToNetLibAddr (name, namelen, *(NetSocketAddrType*) pbP->addrP, pbP->addrLen))
{
*errP = netErrParamErr;
return -1;
}
}
// Copy the chunks of the big buffer back into the iov array.
offset = 0;
for (ii = 0; ii < pbP->iovLen; ++ii)
{
memcpy (pbP->iov[ii].bufP, bigBuffer.Get () + offset, pbP->iov[ii].bufLen);
offset += pbP->iov[ii].bufLen;
}
*errP = 0;
return result;
}
// Receive data from a socket. The data is read into a single buffer, unlike
// NetLibReceivePB. If fromAddrP is not nil, *fromLenP must be initialized to
// the size of the buffer that fromAddrP points to and on exit *fromAddrP will
// have the address of the sender in it.
// Flags is one or more of netMsgFlagXXX.
// Timeout is max # of ticks to wait, or -1 for infinite, or 0 for none.
// Returns # of bytes received, or -1 on error. If error, *errP gets filled in
// with error code.
Int16 Platform_NetLib::Receive(UInt16 libRefNum,
NetSocketRef sRef,
MemPtr bufP,
UInt16 bufLen,
UInt16 rcvFlags,
MemPtr fromAddrP,
UInt16* fromLenP,
Int32 timeout,
Err* errP)
{
NetIOParamType pb;
NetIOVecType iov;
// Assume no error
*errP = 0;
// If no buflen, return 0
if (!bufLen)
return 0;
//-------------------------------------------------------------------------
// Socket read
// Form a paramBlock for the NetLibReceivePB call
//-------------------------------------------------------------------------
if (fromLenP)
{
pb.addrLen = *fromLenP;
pb.addrP = (UInt8*) fromAddrP;
}
else
{
pb.addrLen = 0;
pb.addrP = 0;
}
pb.iov = &iov;
pb.iovLen = 1;
// Init the iov
iov.bufP = (UInt8*) bufP;
iov.bufLen = bufLen;
// Do the call
Int16 result = ReceivePB (libRefNum, sRef, &pb, rcvFlags, timeout, errP);
// Update the address length, if passed
if (fromLenP)
*fromLenP = pb.addrLen;
return result;
}
// Receive data from a socket directly into a (write-protected) Data Manager
// record.
// If fromAddrP is not nil, *fromLenP must be initialized to
// the size of the buffer that fromAddrP points to and on exit *fromAddrP will
// have the address of the sender in it.
// Flags is one or more of netMsgFlagXXX.
// Timeout is max # of ticks to wait, or -1 for infinite, or 0 for none.
// Returns # of bytes received, or -1 on error. If error, *errP gets filled in
// with error code.
Int16 Platform_NetLib::DmReceive(UInt16 libRefNum,
NetSocketRef sRef,
MemPtr recordP,
UInt32 recordOffset,
UInt16 rcvLen,
UInt16 rcvFlags,
MemPtr fromAddrP,
UInt16* fromLenP,
Int32 timeout,
Err* errP)
{
Int16 result = Receive (libRefNum, sRef, ((char*) recordP) + recordOffset,
rcvLen, rcvFlags, fromAddrP, fromLenP, timeout, errP);
return result;
}
//--------------------------------------------------
// Name Lookups
//--------------------------------------------------
NetHostInfoPtr Platform_NetLib::GetHostByName(UInt16 libRefNum,
Char* nameP,
NetHostInfoBufPtr bufP,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
hostent* pHostEnt = gethostbyname (nameP);
if (!pHostEnt)
{
#if PLATFORM_MAC
*errP = PrvGetTranslatedHError ();
#else
*errP = PrvGetTranslatedError ();
#endif
return NULL;
}
if (!SocketsToNetLibHostEnt (*pHostEnt, *bufP))
{
*errP = netErrParamErr;
return NULL;
}
*errP = 0;
return &(bufP->hostInfo);
}
NetHostInfoPtr Platform_NetLib::GetHostByAddr(UInt16 libRefNum,
UInt8* addrP,
UInt16 len,
UInt16 type,
NetHostInfoBufPtr bufP,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
hostent* pHostEnt = gethostbyaddr ((const char*) addrP, len, type);
if (!pHostEnt)
{
#if PLATFORM_MAC
*errP = PrvGetTranslatedHError ();
#else
*errP = PrvGetTranslatedError ();
#endif
return NULL;
}
if (!SocketsToNetLibHostEnt (*pHostEnt, *bufP))
{
*errP = netErrParamErr;
return NULL;
}
*errP = 0;
return &(bufP->hostInfo);
}
NetServInfoPtr Platform_NetLib::GetServByName(UInt16 libRefNum,
Char* servNameP,
Char* protoNameP,
NetServInfoBufPtr bufP,
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(timeout)
servent* pServEnt = getservbyname (servNameP, protoNameP);
if (!pServEnt)
{
*errP = PrvGetTranslatedError ();
return NULL;
}
if (!SocketsToNetLibServEnt (*pServEnt, *bufP))
{
*errP = netErrParamErr;
return NULL;
}
*errP = 0;
return &(bufP->servInfo);
}
// Looks up a mail exchange name and returns a list of hostnames for it. Caller
// must pass space for list of return names (hostNames), space for
// list of priorities for those hosts (priorities) and max # of names to
// return (maxEntries).
// Returns # of entries found, or -1 on error. If error, *errP gets filled in
// with error code.
Int16 Platform_NetLib::GetMailExchangeByName(UInt16 libRefNum,
Char* mailNameP,
UInt16 maxEntries,
Char hostNames[][netDNSMaxDomainName+1],
UInt16 priorities[],
Int32 timeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
UNUSED_PARAM(mailNameP)
UNUSED_PARAM(maxEntries)
UNUSED_PARAM(hostNames)
UNUSED_PARAM(priorities)
UNUSED_PARAM(timeout)
*errP = 0;
// TODO
return -1;
}
//--------------------------------------------------
// System level
//--------------------------------------------------
Int16 Platform_NetLib::Select(UInt16 libRefNum,
UInt16 netWidth,
NetFDSetType* netReadFDs,
NetFDSetType* netWriteFDs,
NetFDSetType* netExceptFDs,
Int32 netTimeout,
Err* errP)
{
UNUSED_PARAM(libRefNum)
fd_set hostReadFDs;
fd_set hostWriteFDs;
fd_set hostExceptFDs;
int hostWidth = 0;
fd_set* hostReadFDsP = &hostReadFDs;
fd_set* hostWriteFDsP = &hostWriteFDs;
fd_set* hostExceptFDsP = &hostExceptFDs;
if (!NetLibToSocketsFDSet (netReadFDs, netWidth, hostReadFDsP, hostWidth) ||
!NetLibToSocketsFDSet (netWriteFDs, netWidth, hostWriteFDsP, hostWidth) ||
!NetLibToSocketsFDSet (netExceptFDs, netWidth, hostExceptFDsP, hostWidth))
{
*errP = netErrParamErr;
return -1;
}
timeval hostTimeout;
timeval *hTp = NULL;
if (netTimeout >= 0)
{
// Convert ticks (100ths of a second) to microseconds.
hostTimeout.tv_sec = netTimeout / 100;
hostTimeout.tv_usec = (netTimeout % 100) * 10000;
hTp = &hostTimeout;
}
int result = select (hostWidth, hostReadFDsP, hostWriteFDsP, hostExceptFDsP, hTp);
netWidth = 0;
if (!SocketsToNetLibFDSet (hostReadFDsP, hostWidth, netReadFDs, netWidth) ||
!SocketsToNetLibFDSet (hostWriteFDsP, hostWidth, netWriteFDs, netWidth) ||
!SocketsToNetLibFDSet (hostExceptFDsP, hostWidth, netExceptFDs, netWidth))
{
*errP = netErrParamErr;
return -1;
}
if (result == SOCKET_ERROR)
{
*errP = PrvGetTranslatedError ();
return -1;
}
*errP = 0;
return result;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsRef
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsRef (const NetSocketRef inSocket,
SOCKET& outSocket)
{
if (inSocket < netMinSocketRefNum || inSocket > netMaxSocketRefNum)
return false;
outSocket = gSockets [inSocket - netMinSocketRefNum];
if (outSocket == INVALID_SOCKET)
return false;
return true;
}
/***********************************************************************
*
* FUNCTION: RememberSocketsRef
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool RememberSocketsRef (const SOCKET inSocket,
NetSocketRef& outSocket)
{
for (int ii = 0; ii < netMaxNumSockets; ++ii)
{
if (gSockets[ii] == INVALID_SOCKET)
{
gSockets[ii] = inSocket;
outSocket = ii + netMinSocketRefNum;
return true;
}
}
return false;
}
/***********************************************************************
*
* FUNCTION: ForgetSocketsRef
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool ForgetSocketsRef (NetSocketRef sRef)
{
if (sRef >= netMinSocketRefNum && sRef <= netMaxSocketRefNum)
{
gSockets [sRef - netMinSocketRefNum] = INVALID_SOCKET;
return true;
}
return false;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsDomain
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsDomain (const NetSocketAddrEnum inDomain,
u_short& outDomain)
{
Bool result = true;
switch (inDomain)
{
case netSocketAddrRaw:
outDomain = AF_UNSPEC;
break;
case netSocketAddrINET:
outDomain = AF_INET;
break;
default:
result = false;
}
return result;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsType
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsType ( const NetSocketTypeEnum inType,
int& outType)
{
Bool result = true;
switch (inType)
{
case netSocketTypeStream:
outType = SOCK_STREAM;
break;
case netSocketTypeDatagram:
outType = SOCK_DGRAM;
break;
case netSocketTypeRaw:
outType = SOCK_RAW;
break;
case netSocketTypeReliableMsg:
outType = SOCK_RDM;
break;
default:
result = false;
}
return result;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsProtocol
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsProtocol ( const Int16 inProtocol,
int& outProtocol)
{
Bool result = true;
switch (inProtocol)
{
// This first case takes care of situations where applications
// call NetLibOpenSocket, passing in zero for the protocol parameter.
// Zero doesn't appear to be a valid value when looking at NetMgr.h
// but zero *is* defined in WinSock.h, and applications *do* pass it in...
//
// Actually, the NetLib.c function comments say:
//
// * protocol - Ignored for datagram or stream sockets in the
// * INET domain. If there were more than
// * one protocol that implements stream oriented services,
// * for example, this parameter would indicate which protocol
// * to use.
//
// It goes on to describe how this parameter is really only used with
// "raw" sockets in the INET domain.
case 0:
outProtocol = IPPROTO_IP;
break;
case netSocketProtoIPICMP:
outProtocol = IPPROTO_ICMP;
break;
case netSocketProtoIPTCP:
outProtocol = IPPROTO_TCP;
break;
case netSocketProtoIPUDP:
outProtocol = IPPROTO_UDP;
break;
case netSocketProtoIPRAW:
outProtocol = IPPROTO_RAW;
break;
default:
result = false;
}
return result;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsDirection
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsDirection ( const Int16 inDirection,
int& outDirection)
{
Bool result = true;
switch (inDirection)
{
case netSocketDirInput:
outDirection = SD_RECEIVE;
break;
case netSocketDirOutput:
outDirection = SD_SEND;
break;
case netSocketDirBoth:
outDirection = SD_BOTH;
break;
default:
result = false;
}
return result;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsFlags
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsFlags (const UInt16 inFlags, int& outFlags)
{
// Return false if there are any flags set other than the ones we know about.
if ((inFlags & ~(netIOFlagOutOfBand | netIOFlagPeek | netIOFlagDontRoute)) != 0)
{
return false;
}
outFlags = 0;
if ((inFlags & netIOFlagOutOfBand) != 0)
{
outFlags |= MSG_OOB;
}
if ((inFlags & netIOFlagPeek) != 0)
{
outFlags |= MSG_PEEK;
}
if ((inFlags & netIOFlagDontRoute) != 0)
{
outFlags |= MSG_DONTROUTE;
}
return true;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsOptions
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsOptions ( const NetSocketOptLevelEnum inOptLevel,
const NetSocketOptEnum inOptName,
const MemPtr inOptVal,
const UInt16 inOptValLen,
int& outOptLevel,
int& outOptName,
char*& outOptVal,
socklen_t& outOptValLen)
{
Bool result = false;
switch (inOptLevel)
{
case netSocketOptLevelIP:
outOptLevel = IPPROTO_IP;
switch (inOptName)
{
#ifdef IP_OPTIONS
case netSocketOptIPOptions: // Not supported by WinSock 1.x
outOptName = IP_OPTIONS;
goto Common;
#endif
default: // Tell gcc to shut up about unhandled enumeration values.
break;
}
break;
case netSocketOptLevelTCP:
outOptLevel = IPPROTO_TCP;
switch (inOptName)
{
#ifdef TCP_NODELAY
case netSocketOptTCPNoDelay:
outOptName = TCP_NODELAY;
goto Common;
#endif
#ifdef TCP_MAXSEG
case netSocketOptTCPMaxSeg: // Not supported by WinSock
outOptName = TCP_MAXSEG;
goto Common;
#endif
default: // Tell gcc to shut up about unhandled enumeration values.
break;
}
break;
case netSocketOptLevelSocket:
outOptLevel = SOL_SOCKET;
switch (inOptName)
{
#ifdef SO_DEBUG
case netSocketOptSockDebug:
outOptName = SO_DEBUG;
goto Common;
#endif
#ifdef SO_ACCEPTCONN
case netSocketOptSockAcceptConn:
outOptName = SO_ACCEPTCONN;
goto Common;
#endif
#ifdef SO_REUSEADDR
case netSocketOptSockReuseAddr:
outOptName = SO_REUSEADDR;
goto Common;
#endif
#ifdef SO_KEEPALIVE
case netSocketOptSockKeepAlive:
outOptName = SO_KEEPALIVE;
goto Common;
#endif
#ifdef SO_DONTROUTE
case netSocketOptSockDontRoute:
outOptName = SO_DONTROUTE;
goto Common;
#endif
#ifdef SO_BROADCAST
case netSocketOptSockBroadcast:
outOptName = SO_BROADCAST;
goto Common;
#endif
#ifdef SO_USELOOPBACK
case netSocketOptSockUseLoopback:
outOptName = SO_USELOOPBACK;
goto Common;
#endif
#ifdef SO_LINGER
case netSocketOptSockLinger:
outOptName = SO_LINGER;
if (inOptValLen == sizeof (NetSocketLingerType))
{
outOptValLen = sizeof (linger);
outOptVal = (char*) Platform::AllocateMemory (outOptValLen);
NetSocketLingerType val = *(NetSocketLingerType*) inOptVal;
Canonical (val.onOff); // Byteswap on LE machines
Canonical (val.time); // Byteswap on LE machines
((linger*) outOptVal)->l_onoff = val.onOff;
((linger*) outOptVal)->l_linger = val.time;
result = true;
}
break;
#endif
#ifdef SO_OOBINLINE
case netSocketOptSockOOBInLine:
outOptName = SO_OOBINLINE;
goto Common;
#endif
#ifdef SO_SNDBUF
case netSocketOptSockSndBufSize:
outOptName = SO_SNDBUF;
goto Common;
#endif
#ifdef SO_RCVBUF
case netSocketOptSockRcvBufSize:
outOptName = SO_RCVBUF;
goto Common;
#endif
#ifdef SO_SNDLOWAT
case netSocketOptSockSndLowWater: // Not supported by WinSock
outOptName = SO_SNDLOWAT;
goto Common;
#endif
#ifdef SO_RCVLOWAT
case netSocketOptSockRcvLowWater: // Not supported by WinSock
outOptName = SO_RCVLOWAT;
goto Common;
#endif
#ifdef SO_SNDTIMEO
case netSocketOptSockSndTimeout: // Not supported by WinSock
outOptName = SO_SNDTIMEO;
goto Common;
#endif
#ifdef SO_RCVTIMEO
case netSocketOptSockRcvTimeout: // Not supported by WinSock
outOptName = SO_RCVTIMEO;
goto Common;
#endif
#ifdef SO_ERROR
case netSocketOptSockErrorStatus:
outOptName = SO_ERROR;
goto Common;
#endif
#ifdef SO_TYPE
case netSocketOptSockSocketType:
outOptName = SO_TYPE;
goto Common;
#endif
default: // Tell gcc to shut up about unhandled enumeration values.
break;
Common:
result = NetLibToSocketsScalarOption (inOptVal, inOptValLen, outOptVal, outOptValLen);
break;
// case netSocketOptSockNonBlocking: // Palm OS Exclusive (special support added in SocketOptionSet)
// case netSocketOptSockRequireErrClear: // Palm OS Exclusive
// case netSocketOptSockMultiPktAddr: // Palm OS Exclusive
}
break;
}
return result;
}
/***********************************************************************
*
* FUNCTION: SocketsToNetLibOptions
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool SocketsToNetLibOptions (const int inOptLevel,
const int inOptName,
/*const*/ char*& inOptVal,
const int inOptValLen,
NetSocketOptLevelEnum outOptLevel,
NetSocketOptEnum outOptName,
MemPtr outOptVal,
UInt16 outOptValLen)
{
UNUSED_PARAM(outOptLevel)
UNUSED_PARAM(outOptName)
Bool result = false;
switch (inOptLevel)
{
case IPPROTO_IP:
switch (inOptName)
{
#ifdef IP_OPTIONS
case IP_OPTIONS: // Not supported by WinSock 1.x
goto Common;
#endif
}
break;
case IPPROTO_TCP:
switch (inOptName)
{
#ifdef TCP_NODELAY
case TCP_NODELAY:
goto Common;
#endif
#ifdef TCP_MAXSEG
case TCP_MAXSEG: // Not supported by WinSock
goto Common;
#endif
}
break;
case SOL_SOCKET:
switch (inOptName)
{
#ifdef SO_ACCEPTCONN
case SO_ACCEPTCONN:
goto Common;
#endif
#ifdef SO_USELOOPBACK
case SO_USELOOPBACK:
goto Common;
#endif
#ifdef SO_DEBUG
case SO_DEBUG:
goto Common;
#endif
#ifdef SO_REUSEADDR
case SO_REUSEADDR:
goto Common;
#endif
#ifdef SO_KEEPALIVE
case SO_KEEPALIVE:
goto Common;
#endif
#ifdef SO_DONTROUTE
case SO_DONTROUTE:
goto Common;
#endif
#ifdef SO_BROADCAST
case SO_BROADCAST:
goto Common;
#endif
#ifdef SO_LINGER
case SO_LINGER:
if (inOptValLen == sizeof (linger))
{
linger val = *(linger*) inOptVal;
Canonical (val.l_onoff); // Byteswap on LE machines
Canonical (val.l_linger); // Byteswap on LE machines
((NetSocketLingerType*) outOptVal)->onOff = val.l_onoff;
((NetSocketLingerType*) outOptVal)->time = val.l_linger;
Platform::DisposeMemory (inOptVal);
result = true;
}
break;
#endif
#ifdef SO_OOBINLINE
case SO_OOBINLINE:
goto Common;
#endif
#ifdef SO_SNDBUF
case SO_SNDBUF:
goto Common;
#endif
#ifdef SO_RCVBUF
case SO_RCVBUF:
goto Common;
#endif
#ifdef SO_SNDLOWAT
case SO_SNDLOWAT: // Not supported by WinSock
goto Common;
#endif
#ifdef SO_RCVLOWAT
case SO_RCVLOWAT: // Not supported by WinSock
goto Common;
#endif
#ifdef SO_SNDTIMEO
case SO_SNDTIMEO: // Not supported by WinSock
goto Common;
#endif
#ifdef SO_RCVTIMEO
case SO_RCVTIMEO: // Not supported by WinSock
goto Common;
#endif
#ifdef SO_ERROR
case SO_ERROR:
goto Common;
#endif
#ifdef SO_TYPE
case SO_TYPE:
goto Common;
#endif
// case netSocketOptSockNonBlocking: // Palm OS Exclusive (special support added in SocketOptionGet)
// case netSocketOptSockRequireErrClear: // Palm OS Exclusive
// case netSocketOptSockMultiPktAddr: // Palm OS Exclusive
Common:
result = SocketsToNetLibScalarOption (inOptVal, inOptValLen, outOptVal, outOptValLen);
break;
}
break;
}
return result;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsAddr
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsAddr (const NetSocketAddrType& inAddr,
const Int16 inAddrLen,
sockaddr& outAddr,
int outAddrLen)
{
UNUSED_PARAM (inAddrLen)
Bool result = true;
switch (inAddr.family)
{
case netSocketAddrRaw:
outAddr.sa_family = AF_UNSPEC;
#if HAVE_SA_LEN
outAddr.sa_len = sizeof (sockaddr);
#endif
memcpy (outAddr.sa_data, inAddr.data, outAddrLen - offsetof (sockaddr, sa_data));
break;
case netSocketAddrINET:
((sockaddr_in&) outAddr).sin_family = AF_INET;
#if HAVE_SA_LEN
((sockaddr_in&) outAddr).sin_len = sizeof (sockaddr_in);
#endif
((sockaddr_in&) outAddr).sin_port = ((NetSocketAddrINType&) inAddr).port;
((sockaddr_in&) outAddr).sin_addr.s_addr = ((NetSocketAddrINType&) inAddr).addr;
break;
default:
result = false;
}
return result;
}
/***********************************************************************
*
* FUNCTION: SocketsToNetLibAddr
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool SocketsToNetLibAddr (const sockaddr& inAddr,
int inAddrLen,
NetSocketAddrType& outAddr,
Int16 outAddrLen)
{
UNUSED_PARAM (inAddrLen)
Bool result = true;
switch (inAddr.sa_family)
{
case AF_UNSPEC:
outAddr.family = netSocketAddrRaw;
memcpy (outAddr.data, inAddr.sa_data, outAddrLen - offsetof (NetSocketAddrType, data));
break;
case AF_INET:
((NetSocketAddrINType&) outAddr).family = netSocketAddrINET;
((NetSocketAddrINType&) outAddr).port = ((sockaddr_in&) inAddr).sin_port;
((NetSocketAddrINType&) outAddr).addr = ((sockaddr_in&) inAddr).sin_addr.s_addr;
break;
default:
result = false;
}
return result;
}
/***********************************************************************
*
* FUNCTION: SocketsToNetLibHostEnt
*
* DESCRIPTION: Convert a sockets hostent to a NetLib NetHostInfoBufType
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool SocketsToNetLibHostEnt ( const hostent& inHostEnt,
NetHostInfoBufType& outHostEnt)
{
Bool result = true;
// hostent.h_name -> NetHostInfoBufType.name
// NetHostInfoBufType.hostInfo.nameP
strcpy (outHostEnt.name, inHostEnt.h_name);
outHostEnt.hostInfo.nameP = outHostEnt.name;
// hostent.h_aliases -> NetHostInfoBufType.aliasList
// NetHostInfoBufType.aliases
// NetHostInfoBufType.hostInfo.nameAliasesP
char* curSrcAlias;
char* curDestAlias = outHostEnt.aliases[0];
long index = 0;
while ((index < netDNSMaxAliases) &&
((curSrcAlias = inHostEnt.h_aliases[index]) != NULL))
{
outHostEnt.aliasList[index] = curDestAlias;
strcpy (curDestAlias, curSrcAlias);
curDestAlias += strlen (curDestAlias) + 1;
if ((((long) curDestAlias) & 1) != 0)
++curDestAlias;
++index;
}
outHostEnt.aliasList[index] = NULL;
outHostEnt.hostInfo.nameAliasesP = outHostEnt.aliasList;
// hostent.h_addrtype -> NetHostInfoBufType.hostInfo.addrType
outHostEnt.hostInfo.addrType = inHostEnt.h_addrtype;
// hostent.h_length -> NetHostInfoBufType.hostInfo.addrLen
outHostEnt.hostInfo.addrLen = inHostEnt.h_length;
// hostent.h_addr_list -> NetHostInfoBufType.addressList
// NetHostInfoBufType.address
// NetHostInfoBufType.hostInfo.addrListP
char* curSrcAddr;
NetIPAddr* curDestAddr = outHostEnt.address;
/*long*/ index = 0;
while ((index < netDNSMaxAddresses) &&
((curSrcAddr = inHostEnt.h_addr_list[index]) != NULL))
{
outHostEnt.addressList[index] = curDestAddr;
memcpy (curDestAddr, curSrcAddr, inHostEnt.h_length);
curDestAddr = (NetIPAddr*) (((char*) curDestAddr) + inHostEnt.h_length);
++index;
}
// Comment from PrvDNSNameToAddressHandler in NetStack1.c:
//
// Long, long ago in a galaxy not so far away, Ron defined a struct
// called NetHostInfoBufType. Unfortunately, this struct has a bug
// in it, but its too late to fix the problem, because 10 zillion
// developers are already using this struct. The problem is that
// there can be up to netDNSMaxAddresses + 1 addresses in the array
// of addresses referenced via the field addrListP, but he only
// reserved space for netDNSMaxAddresses addresses. The additional
// address is needed to zero-terminate the list in the case when
// the maximum number of DNS addresses are returned. Oh well, too
// late now. The problem observed by many is that the null termination
// was overwritten the following array, which happened to be the first
// returned DNS address. Many folks assume a minimum of at least one
// address and just use the first, but if the first returned DNS address
// is zero, then bad things happen (or nothing happen!). So, the
// so-so solution is to return only netDNSMaxAddresses - 1 entries
// (using the last entry for the null termination), even when the
// maximum really was returned. Although, by now, most poor
// developers have written their own DNS lookup routines and won't
// get to use this lovely bug fix anyway.
if (index == netDNSMaxAddresses)
--index;
outHostEnt.addressList[index] = 0;
outHostEnt.hostInfo.addrListP = (UInt8**) &outHostEnt.addressList[0];
return result;
}
/***********************************************************************
*
* FUNCTION: SocketsToNetLibServEnt
*
* DESCRIPTION: Convert a sockets servent to a NetLib NetServInfoBufType
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool SocketsToNetLibServEnt ( const servent& inServEnt,
NetServInfoBufType& outServEnt)
{
Bool result = true;
// servent.s_name -> NetServInfoBufType.name
// NetServInfoBufType.servInfo.nameP
strcpy (outServEnt.name, inServEnt.s_name);
outServEnt.servInfo.nameP = outServEnt.name;
// servent.s_aliases -> NetServInfoBufType.aliasList
// NetServInfoBufType.aliases
// NetServInfoBufType.servInfo.nameAliasesP
char* curSrcAlias;
char* curDestAlias = outServEnt.aliases[0];
long index = 0;
while ((curSrcAlias = inServEnt.s_aliases[index]) != NULL)
{
outServEnt.aliasList[index] = curDestAlias;
strcpy (curDestAlias, curSrcAlias);
curDestAlias += strlen (curDestAlias) + 1;
if ((((long) curDestAlias) & 1) != 0)
++curDestAlias;
++index;
if (index == netServMaxAliases)
break;
}
outServEnt.aliasList[index] = NULL;
outServEnt.servInfo.nameAliasesP = outServEnt.aliasList;
// servent.s_port -> NetServInfoButType.servInfo.port
outServEnt.servInfo.port = inServEnt.s_port;
// servent.s_proto -> NetServInfoBufType.protoName
// NetServInfoBufType.servInfo.protoP
strcpy (outServEnt.protoName, inServEnt.s_proto);
outServEnt.servInfo.protoP = outServEnt.protoName;
return result;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsFDSet
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsFDSet ( const NetFDSetType* inFDSet,
UInt16 inWidth,
fd_set*& outFSSet,
int& outWidth)
{
Bool result = true;
fd_set* finalSetPtr = NULL;
if (inFDSet)
{
FD_ZERO (outFSSet);
if (inWidth > netMaxNumSockets)
{
inWidth = netMaxNumSockets;
}
for (int ii = 0; ii < inWidth; ++ii)
{
NetSocketRef sRef = ii + netMinSocketRefNum;
if (netFDIsSet (sRef, inFDSet))
{
SOCKET s = gSockets [ii];
if (s != INVALID_SOCKET)
{
FD_SET (s, outFSSet);
finalSetPtr = outFSSet;
outWidth = FD_SETSIZE;
}
}
}
}
outFSSet = finalSetPtr;
return result;
}
/***********************************************************************
*
* FUNCTION: SocketsToNetLibFDSet
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool SocketsToNetLibFDSet ( const fd_set* inFDSet,
int inWidth,
NetFDSetType* outFSSet,
UInt16& outWidth)
{
Bool result = true;
if (inFDSet && outFSSet)
{
netFDZero (outFSSet);
if (inWidth > FD_SETSIZE)
{
inWidth = FD_SETSIZE;
}
for (int ii = 0; ii < netMaxNumSockets; ++ii)
{
SOCKET s = gSockets[ii];
if (s != INVALID_SOCKET && FD_ISSET (s, inFDSet))
{
netFDSet ((netMinSocketRefNum + ii), outFSSet);
if (outWidth < ii)
{
outWidth = ii;
}
}
}
}
return result;
}
/***********************************************************************
*
* FUNCTION: NetLibToSocketsScalarOption
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool NetLibToSocketsScalarOption ( const MemPtr inOptVal,
const UInt16 inOptValLen,
char*& outOptVal,
socklen_t& outOptValLen)
{
Bool result = true;
if (inOptVal)
{
uint32 val = 0;
if (inOptValLen == sizeof (uint8))
{
uint8 temp = *(uint8*) inOptVal;
Canonical (temp); // Byteswap on LE machines
val = temp;
}
else if (inOptValLen == sizeof (uint16))
{
uint16 temp = *(uint16*) inOptVal;
Canonical (temp); // Byteswap on LE machines
val = temp;
}
else if (inOptValLen == sizeof (uint32))
{
uint32 temp = *(uint32*) inOptVal;
Canonical (temp); // Byteswap on LE machines
val = temp;
}
else
{
result = false;
}
if (result)
{
outOptValLen = sizeof (uint32);
outOptVal = (char*) Platform::AllocateMemory (outOptValLen);
*(uint32*) outOptVal = val;
}
}
return result;
}
/***********************************************************************
*
* FUNCTION: SocketsToNetLibScalarOption
*
* DESCRIPTION:
*
* PARAMETERS: none
*
* RETURNED: nothing
*
***********************************************************************/
Bool SocketsToNetLibScalarOption (/*const*/ char*& inOptVal,
const int inOptValLen,
MemPtr outOptVal,
UInt16 outOptValLen)
{
Bool result = true;
if (inOptVal && outOptVal)
{
if (inOptValLen == outOptValLen)
{
if (inOptValLen == sizeof (uint8))
{
uint8 val = *(uint8*) inOptVal;
Canonical (val); // Byteswap on LE machines
*(uint8*) outOptVal = val;
}
else if (inOptValLen == sizeof (uint16))
{
uint16 val = *(uint16*) inOptVal;
Canonical (val); // Byteswap on LE machines
*(uint16*) outOptVal = val;
}
else if (inOptValLen == sizeof (uint32))
{
uint32 val = *(uint32*) inOptVal;
Canonical (val); // Byteswap on LE machines
*(uint32*) outOptVal = val;
}
else
{
result = false;
}
}
else
{
result = false;
}
}
Platform::DisposeMemory (inOptVal);
return result;
}
/***********************************************************************
*
* FUNCTION: PrvGetError
*
* DESCRIPTION: Returns the most recent sockets error number.
*
* PARAMETERS: none
*
* RETURNED: Sockets error number
*
***********************************************************************/
uint32 PrvGetError (void)
{
#if PLATFORM_MAC || PLATFORM_UNIX
uint32 err = errno;
#endif
#if PLATFORM_WINDOWS
uint32 err = ::WSAGetLastError ();
#endif
return err;
}
/***********************************************************************
*
* FUNCTION: PrvGetTranslatedError
*
* DESCRIPTION: Returns the most recent sockets error number translated
* into a NetLib error number.
*
* PARAMETERS: none
*
* RETURNED: NetLib error number
*
***********************************************************************/
Err PrvGetTranslatedError (void)
{
uint32 err = ::PrvGetError ();
return PrvTranslateError (err);
}
/***********************************************************************
*
* FUNCTION: PrvGetTranslatedHError
*
* DESCRIPTION: Returns the most recent sockets error number translated
* into a NetLib error number.
*
* PARAMETERS: none
*
* RETURNED: NetLib error number
*
***********************************************************************/
#if PLATFORM_MAC
extern int h_errno;
const int kHErrNoBase = 30000;
Err PrvGetTranslatedHError (void)
{
// For some reason (I don't know...maybe BSD sockets is like this, too),
// GUSI returns errors from gethostbyname() and gethostbyaddr() in h_errno.
uint32 err = h_errno + kHErrNoBase;
return PrvTranslateError (err);
}
#endif
/***********************************************************************
*
* FUNCTION: PrvTranslateError
*
* DESCRIPTION: Convert a Windows Sockets error number to a NetLib error
* number.
*
* PARAMETERS: err - Windows Sockets error number (probably from
* WSAGetLastError)
*
* RETURNED: NetLib error number
*
***********************************************************************/
Err PrvTranslateError (uint32 err)
{
Err result = netErrParamErr; // Default error number
switch (err)
{
#if PLATFORM_MAC || PLATFORM_UNIX
// case EPERM: // 1 /* Operation not permitted */
// case ENOENT: // 2 /* No such file or directory */
// case ESRCH: // 3 /* No such process */
case EINTR: // 4 /* Interrupted system call */
result = netErrUserCancel;
break;
// case EIO: // 5 /* Input/output error */
// case ENXIO: // 6 /* Device not configured */
// case E2BIG: // 7 /* Argument list too long */
// case ENOEXEC: // 8 /* Exec format error */
// case EBADF: // 9 /* Bad file descriptor */
// case ECHILD: // 10 /* No child processes */
case EDEADLK: // 11 /* Resource deadlock avoided */
/* 11 was EAGAIN */
result = netErrWouldBlock;
break;
case ENOMEM: // 12 /* Cannot allocate memory */
result = netErrOutOfMemory;
break;
case EACCES: // 13 /* Permission denied */
result = netErrAuthFailure;
break;
// case EFAULT: // 14 /* Bad address */
// case ENOTBLK: // 15 /* Block device required */
case EBUSY: // 16 /* Device busy */
result = netErrSocketBusy;
break;
// case EEXIST: // 17 /* File exists */
// case EXDEV: // 18 /* Cross-device link */
// case ENODEV: // 19 /* Operation not supported by device */
// case ENOTDIR: // 20 /* Not a directory */
// case EISDIR: // 21 /* Is a directory */
// case EINVAL: // 22 /* Invalid argument */
// case ENFILE: // 23 /* Too many open files in system */
// case EMFILE: // 24 /* Too many open files */
// case ENOTTY: // 25 /* Inappropriate ioctl for device */
// case ETXTBSY: // 26 /* Text file busy */
// case EFBIG: // 27 /* File too large */
// case ENOSPC: // 28 /* No space left on device */
// case ESPIPE: // 29 /* Illegal seek */
case EROFS: // 30 /* Read-only file system */
result = netErrReadOnlySetting;
break;
// case EMLINK: // 31 /* Too many links */
// case EPIPE: // 32 /* Broken pipe */
/* math software */
// case EDOM: // 33 /* Numerical argument out of domain */
// case ERANGE: // 34 /* Result too large */
case EAGAIN: // 35 /* Resource temporarily unavailable */
#if EWOULDBLOCK != EAGAIN
case EWOULDBLOCK: // EAGAIN /* Operation would block */
#endif
case EINPROGRESS: // 36 /* Operation now in progress */
// result = netErrSocketBusy;
result = netErrWouldBlock;
break;
/* These are defined to be the same under QNX/Neutrino */
#if EALREADY != EBUSY
case EALREADY: // 37 /* Operation already in progress */
result = netErrAlreadyInProgress;
break;
#endif
/* ipc/network software -- argument errors */
case ENOTSOCK: // 38 /* Socket operation on non-socket */
result = netErrNoSocket;
break;
case EDESTADDRREQ: // 39 /* Destination address required */
result = netErrIPNoDst;
break;
case EMSGSIZE: // 40 /* Message too long */
result = netErrMessageTooBig;
break;
// case EPROTOTYPE: // 41 /* Protocol wrong type for socket */
case ENOPROTOOPT: // 42 /* Protocol not available */
result = netErrUnknownProtocol;
break;
case EPROTONOSUPPORT: // 43 /* Protocol not supported */
result = netErrUnknownProtocol;
break;
case ESOCKTNOSUPPORT: // 44 /* Socket type not supported */
result = netErrWrongSocketType;
break;
case EOPNOTSUPP: // 45 /* Operation not supported on socket */
result = netErrWrongSocketType;
break;
case EPFNOSUPPORT: // 46 /* Protocol family not supported */
result = netErrUnknownService;
break;
case EAFNOSUPPORT: // 47 /* Address family not supported by protocol family */
result = netErrUnknownService;
break;
case EADDRINUSE: // 48 /* Address already in use */
result = netErrPortInUse;
break;
case EADDRNOTAVAIL: // 49 /* Can't assign requested address */
result = netErrPortInUse;
break;
/* ipc/network software -- operational errors */
case ENETDOWN: // 50 /* Network is down */
result = netErrUnreachableDest;
break;
case ENETUNREACH: // 51 /* Network is unreachable */
result = netErrNoInterfaces;
break;
case ENETRESET: // 52 /* Network dropped connection on reset */
case ECONNABORTED: // 53 /* Software caused connection abort */
case ECONNRESET: // 54 /* Connection reset by peer */
result = netErrSocketClosedByRemote;
break;
case ENOBUFS: // 55 /* No buffer space available */
result = netErrNoTCB;
break;
case EISCONN: // 56 /* Socket is already connected */
result = netErrSocketAlreadyConnected;
break;
case ENOTCONN: // 57 /* Socket is not connected */
result = netErrSocketNotConnected;
break;
case ESHUTDOWN: // 58 /* Can't send after socket shutdown */
result = netErrSocketNotOpen;
break;
// case ETOOMANYREFS: // 59 /* Too many references: can't splice */
case ETIMEDOUT: // 60 /* Connection timed out */
result = netErrTimeout;
break;
case ECONNREFUSED: // 61 /* Connection refused */
result = netErrTimeout;
break;
// case ELOOP: // 62 /* Too many levels of symbolic links */
// case ENAMETOOLONG: // 63 /* File name too long */
case EHOSTDOWN: // 64 /* Host is down */
case EHOSTUNREACH: // 65 /* No route to host */
result = netErrIPNoRoute;
break;
// case ENOTEMPTY: // 66 /* Directory not empty */
// case EPROCLIM: // 67 /* Too many processes */
// case EUSERS: // 68 /* Too many users */
// case EDQUOT: // 69 /* Disc quota exceeded */
/* Network File System */
// case ESTALE: // 70 /* Stale NFS file handle */
// case EREMOTE: // 71 /* Too many levels of remote in path */
// case EBADRPC: // 72 /* RPC struct is bad */
// case ERPCMISMATCH: // 73 /* RPC version wrong */
// case EPROGUNAVAIL: // 74 /* RPC prog. not avail */
// case EPROGMISMATCH: // 75 /* Program version wrong */
// case EPROCUNAVAIL: // 76 /* Bad procedure for program */
// case ENOLCK: // 77 /* No locks available */
// case ENOSYS: // 78 /* Function not implemented */
// case EFTYPE: // 79 /* Inappropriate file type or format */
#endif // PLATFORM_MAC || PLATFORM_UNIX
#if PLATFORM_MAC
case HOST_NOT_FOUND + kHErrNoBase: // 1 /* Authoritative Answer Host not found */
result = netErrDNSUnreachable;
break;
case TRY_AGAIN + kHErrNoBase: // 2 /* Non-Authoritive Host not found, or SERVERFAIL */
result = netErrDNSServerFailure;
break;
case NO_RECOVERY + kHErrNoBase: // 3 /* Non recoverable errors, FORMERR, REFUSED, NOTIMP */
result = netErrDNSRefused;
break;
case NO_DATA + kHErrNoBase: // 4 /* Valid name, no data record of requested type */
// case NO_ADDRESS + kHErrNoBase: // 4 /* no address, look for MX record */
result = netErrDNSNonexistantName;
break;
#endif
#if PLATFORM_WINDOWS
case WSAEACCES:
// (10013)
// Permission denied.
// An attempt was made to access a socket in a way forbidden by its access permissions. An example is using a broadcast address for sendto without broadcast permission being set using setsockopt(SO_BROADCAST).
result = netErrWrongSocketType; // BEST I CAN THINK OF.
break;
case WSAEADDRINUSE:
// (10048)
// Address already in use.
// Only one usage of each socket address (protocol/IP address/port) is normally permitted. This error occurs if an application attempts to bind a socket to an IP address/port that has already been used for an existing socket, or a socket that wasn't closed properly, or one that is still in the process of closing. For server applications that need to bind multiple sockets to the same port number, consider using setsockopt(SO_REUSEADDR). Client applications usually need not call bind at all - connect will choose an unused port automatically. When bind is called with a wild-card address (involving ADDR_ANY), a WSAEADDRINUSE error could be delayed until the specific address is "committed." This could happen with a call to other function later, including connect, listen, WSAConnect or WSAJoinLeaf.
result = netErrPortInUse;
break;
case WSAEADDRNOTAVAIL:
// (10049)
// Cannot assign requested address.
// The requested address is not valid in its context. Normally results from an attempt to bind to an address that is not valid for the local machine. This can also result from connect, sendto, WSAConnect, WSAJoinLeaf, or WSASendTo when the remote address or port is not valid for a remote machine (e.g. address or port 0).
result = netErrParamErr;
break;
case WSAEAFNOSUPPORT:
// (10047)
// Address family not supported by protocol family.
// An address incompatible with the requested protocol was used. All sockets are created with an associated "address family" (i.e. AF_INET for Internet Protocols) and a generic protocol type (i.e. SOCK_STREAM). This error will be returned if an incorrect protocol is explicitly requested in the socket call, or if an address of the wrong family is used for a socket, e.g. in sendto.
result = netErrParamErr;
break;
case WSAEALREADY:
// (10037)
// Operation already in progress.
// An operation was attempted on a non-blocking socket that already had an operation in progress - i.e. calling connect a second time on a non-blocking socket that is already connecting, or canceling an asynchronous request (WSAAsyncGetXbyY) that has already been canceled or completed.
result = netErrAlreadyInProgress;
break;
case WSAECONNABORTED:
// (10053)
// Software caused connection abort.
// An established connection was aborted by the software in your host machine, possibly due to a data transmission timeout or protocol error.
result = netErrSocketClosedByRemote;
break;
case WSAECONNREFUSED:
// (10061)
// Connection refused.
// No connection could be made because the target machine actively refused it. This usually results from trying to connect to a service that is inactive on the foreign host - i.e. one with no server application running.
result = netErrTimeout; // As near as I can tell, if a connection is refused, NetLib merely closes the connection and eventually times out.
break;
case WSAECONNRESET:
// (10054)
// Connection reset by peer.
// A existing connection was forcibly closed by the remote host. This normally results if the peer application on the remote host is suddenly stopped, the host is rebooted, or the remote host used a "hard close" (see setsockopt for more information on the SO_LINGER option on the remote socket.) This error may also result if a connection was broken due to "keep-alive" activity detecting a failure while one or more operations are in progress. Operations that were in progress fail with WSAENETRESET. Subsequent operations fail with WSAECONNRESET.
result = netErrSocketClosedByRemote;
break;
case WSAEDESTADDRREQ:
// (10039)
// Destination address required.
// A required address was omitted from an operation on a socket. For example, this error will be returned if sendto is called with the remote address of ADDR_ANY.
result = netErrParamErr;
break;
case WSAEFAULT:
// (10014)
// Bad address.
// The system detected an invalid pointer address in attempting to use a pointer argument of a call. This error occurs if an application passes an invalid pointer value, or if the length of the buffer is too small. For instance, if the length of an argument which is a sockaddr is smaller than sizeof(sockaddr).
result = netErrParamErr;
break;
case WSAEHOSTDOWN:
// (10064)
// Host is down.
// A socket operation failed because the destination host was down. A socket operation encountered a dead host. Networking activity on the local host has not been initiated. These conditions are more likely to be indicated by the error WSAETIMEDOUT.
result = netErrTimeout;
break;
case WSAEHOSTUNREACH:
// (10065)
// No route to host.
// A socket operation was attempted to an unreachable host. See WSAENETUNREACH
result = netErrUnreachableDest;
break;
case WSAEINPROGRESS:
// (10036)
// Operation now in progress.
// A blocking operation is currently executing. Windows Sockets only allows a single blocking operation to be outstanding per task (or thread), and if any other function call is made (whether or not it references that or any other socket) the function fails with the WSAEINPROGRESS error.
result = netErrAlreadyInProgress;
break;
case WSAEINTR:
// (10004)
// Interrupted function call.
// A blocking operation was interrupted by a call to WSACancelBlockingCall.
result = netErrUserCancel;
break;
case WSAEINVAL:
// (10022)
// Invalid argument.
// Some invalid argument was supplied (for example, specifying an invalid level to the setsockopt function). In some instances, it also refers to the current state of the socket - for instance, calling accept on a socket that is not listening.
result = netErrParamErr;
break;
case WSAEISCONN:
// (10056)
// Socket is already connected.
// A connect request was made on an already connected socket. Some implementations also return this error if sendto is called on a connected SOCK_DGRAM socket (For SOCK_STREAM sockets, the to parameter in sendto is ignored), although other implementations treat this as a legal occurrence.
result = netErrSocketAlreadyConnected;
break;
case WSAEMFILE:
// (10024)
// Too many open files.
// Too many open sockets. Each implementation may have a maximum number of socket handles available, either globally, per process or per thread.
result = netErrNoMoreSockets;
break;
case WSAEMSGSIZE:
// (10040)
// Message too long.
// A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.
result = netErrMessageTooBig;
break;
case WSAENETDOWN:
// (10050)
// Network is down.
// A socket operation encountered a dead network. This could indicate a serious failure of the network system (i.e. the protocol stack that the WinSock DLL runs over), the network interface, or the local network itself.
result = netErrUnreachableDest;
break;
case WSAENETRESET:
// (10052)
// Network dropped connection on reset.
// The connection has been broken due to "keep-alive" activity detecting a failure while the operation was in progress. It can also be returned by setsockopt if an attempt is made to set SO_KEEPALIVE on a connection that has already failed.
result = netErrSocketClosedByRemote;
break;
case WSAENETUNREACH:
// (10051)
// Network is unreachable.
// A socket operation was attempted to an unreachable network. This usually means the local software knows no route to reach the remote host.
result = netErrUnreachableDest;
break;
case WSAENOBUFS:
// (10055)
// No buffer space available.
// An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
result = netErrOutOfMemory;
break;
case WSAENOPROTOOPT:
// (10042)
// Bad protocol option.
// An unknown, invalid or unsupported option or level was specified in a getsockopt or setsockopt call.
result = netErrParamErr;
break;
case WSAENOTCONN:
// (10057)
// Socket is not connected.
// A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using sendto) no address was supplied. Any other type of operation might also return this error - for example, setsockopt setting SO_KEEPALIVE if the connection has been reset.
result = netErrSocketNotConnected;
break;
case WSAENOTSOCK:
// (10038)
// Socket operation on non-socket.
// An operation was attempted on something that is not a socket. Either the socket handle parameter did not reference a valid socket, or for select, a member of an fd_set was not valid.
result = netErrParamErr;
break;
case WSAEOPNOTSUPP:
// (10045)
// Operation not supported.
// The attempted operation is not supported for the type of object referenced. Usually this occurs when a socket descriptor to a socket that cannot support this operation, for example, trying to accept a connection on a datagram socket.
result = netErrWrongSocketType;
break;
case WSAEPFNOSUPPORT:
// (10046)
// Protocol family not supported.
// The protocol family has not been configured into the system or no implementation for it exists. Has a slightly different meaning to WSAEAFNOSUPPORT, but is interchangeable in most cases, and all Windows Sockets functions that return one of these specify WSAEAFNOSUPPORT.
result = netErrParamErr;
break;
case WSAEPROCLIM:
// (10067)
// Too many processes.
// A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously. WSAStartup may fail with this error if the limit has been reached.
result = netErrOutOfResources;
break;
case WSAEPROTONOSUPPORT:
// (10043)
// Protocol not supported.
// The requested protocol has not been configured into the system, or no implementation for it exists. For example, a socket call requests a SOCK_DGRAM socket, but specifies a stream protocol.
result = netErrUnknownProtocol;
break;
case WSAEPROTOTYPE:
// (10041)
// Protocol wrong type for socket.
// A protocol was specified in the socket function call that does not support the semantics of the socket type requested. For example, the ARPA Internet UDP protocol cannot be specified with a socket type of SOCK_STREAM.
result = netErrUnknownProtocol;
break;
case WSAESHUTDOWN:
// (10058)
// Cannot send after socket shutdown.
// A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call. By calling shutdown a partial close of a socket is requested, which is a signal that sending or receiving or both has been discontinued.
result = netErrNotOpen;
break;
case WSAESOCKTNOSUPPORT:
// (10044)
// Socket type not supported.
// The support for the specified socket type does not exist in this address family. For example, the optional type SOCK_RAW might be selected in a socket call, and the implementation does not support SOCK_RAW sockets at all.
result = netErrParamErr;
break;
case WSAETIMEDOUT:
// (10060)
// Connection timed out.
// A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
result = netErrTimeout;
break;
// case WSATYPE_NOT_FOUND:
// (10109)
// Class type not found.
// The specified class was not found.
case WSAEWOULDBLOCK:
// (10035)
// Resource temporarily unavailable.
// This error is returned from operations on non-blocking sockets that cannot be completed immediately, for example recv when no data is queued to be read from the socket. It is a non-fatal error, and the operation should be retried later. It is normal for WSAEWOULDBLOCK to be reported as the result from calling connect on a non-blocking SOCK_STREAM socket, since some time must elapse for the connection to be established.
result = netErrWouldBlock;
break;
case WSAHOST_NOT_FOUND:
// (11001)
// Host not found.
// No such host is known. The name is not an official hostname or alias, or it cannot be found in the database(s) being queried. This error may also be returned for protocol and service queries, and means the specified name could not be found in the relevant database.
result = netErrDNSNonexistantName;
break;
// case WSA_INVALID_HANDLE:
// (OS dependent)
// Specified event object handle is invalid.
// An application attempts to use an event object, but the specified handle is not valid.
// case WSA_INVALID_PARAMETER:
// (OS dependent)
// One or more parameters are invalid.
// An application used a Windows Sockets function which directly maps to a Win32 function. The Win32 function is indicating a problem with one or more parameters.
// case WSAINVALIDPROCTABLE:
// (OS dependent)
// Invalid procedure table from service provider.
// A service provider returned a bogus proc table to WS2_32.DLL. (Usually caused by one or more of the function pointers being NULL.)
// case WSAINVALIDPROVIDER:
// (OS dependent)
// Invalid service provider version number.
// A service provider returned a version number other than 2.0.
// case WSA_IO_INCOMPLETE:
// (OS dependent)
// Overlapped I/O event object not in signaled state.
// The application has tried to determine the status of an overlapped operation which is not yet completed. Applications that use WSAGetOverlappedResult (with the fWait flag set to false) in a polling mode to determine when an overlapped operation has completed will get this error code until the operation is complete.
// case WSA_IO_PENDING:
// (OS dependent)
// Overlapped operations will complete later.
// The application has initiated an overlapped operation which cannot be completed immediately. A completion indication will be given at a later time when the operation has been completed.
// case WSA_NOT_ENOUGH_MEMORY:
// (OS dependent)
// Insufficient memory available.
// An application used a Windows Sockets function which directly maps to a Win32 function. The Win32 function is indicating a lack of required memory resources.
case WSANOTINITIALISED:
// (10093)
// Successful WSAStartup not yet performed.
// Either the application hasn't called WSAStartup or WSAStartup failed. The application may be accessing a socket which the current active task does not own (i.e. trying to share a socket between tasks), or WSACleanup has been called too many times.
result = netErrNotOpen;
break;
case WSANO_DATA:
// (11004)
// Valid name, no data record of requested type.
// The requested name is valid and was found in the database, but it does not have the correct associated data being resolved for. The usual example for this is a hostname -> address translation attempt (using gethostbyname or WSAAsyncGetHostByName) which uses the DNS (Domain Name Server), and an MX record is returned but no A record - indicating the host itself exists, but is not directly reachable.
result = netErrDNSFormat;
break;
case WSANO_RECOVERY:
// (11003)
// This is a non-recoverable error.
// This indicates some sort of non-recoverable error occurred during a database lookup. This may be because the database files (e.g. BSD-compatible HOSTS, SERVICES or PROTOCOLS files) could not be found, or a DNS request was returned by the server with a severe error.
result = netErrInternal;
break;
// case WSAPROVIDERFAILEDINIT:
// (OS dependent)
// Unable to initialize a service provider.
// Either a service provider's DLL could not be loaded (LoadLibrary failed) or the provider's WSPStartup/NSPStartup function failed.
// case WSASYSCALLFAILURE:
// (OS dependent)
// System call failure.
// Returned when a system call that should never fail does. For example, if a call to WaitForMultipleObjects fails or one of the registry functions fails trying to manipulate theprotocol/namespace catalogs.
case WSASYSNOTREADY:
// (10091)
// Network subsystem is unavailable.
// This error is returned by WSAStartup if the Windows Sockets implementation cannot function at this time because the underlying system it uses to provide network services is currently unavailable. Users should check:
// * that the appropriate Windows Sockets DLL file is in the current path,
// * that they are not trying to use more than one Windows Sockets implementation simultaneously. If there is more than one WINSOCK DLL on your system, be sure the first one in the path is appropriate for the network subsystem currently loaded.
// * the Windows Sockets implementation documentation to be sure all necessary components are currently installed and configured correctly.
result = netErrInternal;
break;
case WSATRY_AGAIN:
// (11002)
// Non-authoritative host not found.
// This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. A retry at some time later may be successful.
result = netErrDNSTimeout;
break;
case WSAVERNOTSUPPORTED:
// (10092)
// WINSOCK.DLL version out of range.
// The current Windows Sockets implementation does not support the Windows Sockets specification version requested by the application. Check that no old Windows Sockets DLL files are being accessed.
result = netErrInternal;
break;
case WSAEDISCON:
// (10094)
// Graceful shutdown in progress.
// Returned by WSARecv and WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.
result = netErrSocketNotConnected;
break;
// case WSA_OPERATION_ABORTED:
// (OS dependent)
// Overlapped operation aborted.
// An overlapped operation was canceled due to the closure of the socket, or the execution of the SIO_FLUSH command in WSAIoctl.
#endif // PLATFORM_WINDOWS
}
PRINTF ("PrvTranslateError: mapping host error code %ld (0x%08lX) to NetLib code %ld (0x%08lX).",
err, err, result, result);
return result;
}
|