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
|
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mozilla Communicator client code, released
* March 31, 1998.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998-1999
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/*
* code that is shared by two or more of the LDAP command line tools
*/
#include "ldaptool.h"
#include "fileurl.h"
#ifdef LDAP_TOOL_ARGPIN
#include "argpin.h"
#include "ntuserpin.h"
#endif /* LDAP_TOOL_ARGPIN */
#include <nspr.h>
#include <stdlib.h>
#include <time.h> /* for time() and ctime() */
#ifdef HAVE_SASL_OPTIONS
#include <sasl.h>
#include "ldaptool-sasl.h"
#endif /* HAVE_SASL_OPTIONS */
#if defined(HPUX)
#include <sys/termios.h> /* for tcgetattr and tcsetattr */
#endif /* HPUX */
#if !defined(macintosh) && !defined(DOS) && !defined( _WINDOWS )
#include <sys/socket.h>
#endif
static LDAP_REBINDPROC_CALLBACK get_rebind_credentials;
static void print_library_info( const LDAPAPIInfo *aip, FILE *fp );
static int wait4result( LDAP *ld, int msgid, struct berval **servercredp,
char *msg );
static int parse_result( LDAP *ld, LDAPMessage *res,
struct berval **servercredp, char *msg, int freeit );
static int check_response_controls( LDAP *ld, char *msg, LDAPControl **ctrls, int freeit );
#ifdef LDAPTOOL_DEBUG_MEMORY
static void *ldaptool_debug_malloc( size_t size );
static void *ldaptool_debug_calloc( size_t nelem, size_t elsize );
static void *ldaptool_debug_realloc( void *ptr, size_t size );
static void ldaptool_debug_free( void *ptr );
#endif /* LDAPTOOL_DEBUG_MEMORY */
#if defined(NET_SSL) && defined(LDAP_TOOL_PKCS11)
static void ldaptool_setcallbacks( struct ldapssl_pkcs_fns *pfns);
static char * buildTokenCertName( const char *tokenName, const char *certName);
#endif
#ifdef HAVE_SASL_OPTIONS
static int saslSetParam(char *saslarg);
#endif /* HAVE_SASL_OPTIONS */
/* copied from ldaprot.h - required to parse the pwpolicy ctrl */
#define LDAP_TAG_PWP_WARNING 0xA0L /* context specific + constructed */
#define LDAP_TAG_PWP_SECSLEFT 0x80L /* context specific + primitive */
#define LDAP_TAG_PWP_GRCLOGINS 0x81L /* context specific + primitive + 1 */
#define LDAP_TAG_PWP_ERROR 0x81L /* context specific + primitive + 1 */
/*
* display usage for common options with one exception: -f is not included
* since the description tends to be tool-specific.
*
* As of 1-Jul-1998, of the characters in the set [A-Za-z] the following are
* not currently used by any of the tools: EJgjqr
*/
void
ldaptool_common_usage( int two_hosts )
{
fprintf( stderr, " -n\t\tshow what would be done but don't actually do it\n" );
fprintf( stderr, " -v\t\trun in verbose mode (diagnostics to standard output)\n" );
if ( two_hosts ) {
fprintf( stderr, " -h host\tLDAP server1 name or IP address (default: %s)\n", LDAPTOOL_DEFHOST );
fprintf( stderr, " -p port\tLDAP server1 TCP port number (default: %d)\n", LDAP_PORT );
fprintf( stderr, " -h host\tLDAP server2 name or IP address (default: %s)\n", LDAPTOOL_DEFHOST );
fprintf( stderr, " -p port\tLDAP server2 TCP port number (default: %d)\n", LDAP_PORT );
} else {
fprintf( stderr, " -h host\tLDAP server name or IP address (default: %s)\n", LDAPTOOL_DEFHOST );
fprintf( stderr, " -p port\tLDAP server TCP port number (default: %d)\n", LDAP_PORT );
}
fprintf( stderr,
" -V n\tLDAP protocol version number (%d or %d; default: %d)\n",
LDAP_VERSION2, LDAP_VERSION3, LDAP_VERSION3 );
#if defined(NET_SSL)
fprintf( stderr, " -ZZ\t\tstart TLS request\n" );
fprintf( stderr, " -ZZZ\tenforce start TLS request (successful server response required)\n" );
fprintf( stderr, " -Z\t\tmake an SSL-encrypted connection\n" );
fprintf( stderr, " -P pathname\tpath to SSL certificate database (default: current directory)\n" );
fprintf( stderr, " -N\t\tname of certificate to use for SSL client authentication\n" );
fprintf( stderr, " -K pathname\tpath to key database to use for SSL client authentication\n" );
fprintf( stderr, " \t\t(default: path to certificate database provided with -P option)\n" );
#ifdef LDAP_TOOL_PKCS11
fprintf( stderr, " -m pathname\tpath to security module database\n");
#endif /* LDAP_TOOL_PKCS11 */
fprintf( stderr, " -W\t\tSSL key password\n" );
fprintf( stderr, " -W - \tprompt for SSL key password\n" );
#ifdef LDAP_TOOL_PKCS11
fprintf( stderr, " -I file\tSSL key password 'file' containing token:password pair/s\n" );
fprintf( stderr, " -Q [token][:certificate name]\tPKCS 11\n" );
#endif /* LDAP_TOOL_PKCS11 */
fprintf( stderr, " -3\t\tcheck hostnames in SSL certificates\n" );
#endif /* NET_SSL */
fprintf( stderr, " -D binddn\tbind dn\n" );
fprintf( stderr, " -w passwd\tbind passwd (for simple authentication)\n" );
fprintf( stderr, " -w - \tprompt for bind passwd (for simple authentication)\n" );
fprintf( stderr, " -j file\tread bind passwd from 'file' (for simple authentication)\n" );
fprintf( stderr, " -E\t\task server to expose (report) bind identity\n" );
fprintf( stderr, " -g\t\tdo not send a password policy request control\n" );
#ifdef LDAP_DEBUG
fprintf( stderr, " -d level\tset LDAP debugging level to `level'\n" );
#endif
fprintf( stderr, " -R\t\tdo not automatically follow referrals\n" );
fprintf( stderr, " -O limit\tmaximum number of referral hops to traverse (default: %d)\n", LDAPTOOL_DEFREFHOPLIMIT );
fprintf( stderr, " -M\t\tmanage references (treat them as regular entries)\n" );
fprintf( stderr, " -0\t\tignore LDAP library version mismatches\n" );
fprintf( stderr, " -i charset\tcharacter set for command line input (default taken from locale)\n" );
fprintf( stderr, " \t\tuse '-i 0' to override locale settings and bypass any conversions\n" );
fprintf( stderr, " -k do not convert password to utf8 (use default from locale)\n" );
#if 0
/*
* Suppress usage for -y (old proxied authorization control) even though
* we still support it. We want to encourage people to use -Y instead (the
* new proxied authorization control).
*/
fprintf( stderr, " -y proxydn\tDN used for proxy authorization\n" );
#endif
fprintf( stderr, " -Y proxyid\tproxied authorization id,\n" );
fprintf( stderr, " \te.g, dn:uid=bjensen,dc=example,dc=com\n" );
fprintf( stderr, " -H\t\tdisplay usage information\n" );
fprintf( stderr, " -J controloid[:criticality[:value|::b64value|:<fileurl]]\n" );
fprintf( stderr, "\t\tcriticality is a boolean value (default is false)\n" );
#ifdef HAVE_SASL_OPTIONS
#ifdef HAVE_SASL_OPTIONS_2
fprintf( stderr, " -2 attrName=attrVal\tSASL options which are described in the man page\n");
#else
fprintf( stderr, " -o attrName=attrVal\tSASL options which are described in the man page\n");
#endif
#endif /* HAVE_SASL_OPTIONS */
}
/* globals */
char *ldaptool_charset = NULL;
char *ldaptool_host = LDAPTOOL_DEFHOST;
char *ldaptool_host2 = LDAPTOOL_DEFHOST;
int ldaptool_port = LDAP_PORT;
int ldaptool_port2 = LDAP_PORT;
int ldaptool_verbose = 0;
int ldaptool_not = 0;
int ldaptool_nobind = 0;
int ldaptool_noconv_passwd = 0;
FILE *ldaptool_fp = NULL;
char *ldaptool_progname = "";
LDAPControl *ldaptool_request_ctrls[CONTROL_REQUESTS] = {0};
#ifdef LDAP_DEBUG
int ldaptool_dbg_lvl = 0;
#endif /* LDAP_DEBUG */
/* statics */
static char *binddn = NULL;
static char *passwd = NULL;
static int send_auth_response_ctrl = 0;
static int user_specified_port = 0;
static int user_specified_port2 = 0;
static int chase_referrals = 1;
static int lib_version_mismatch_is_fatal = 1;
static int ldversion = -1; /* use default */
static int refhoplim = LDAPTOOL_DEFREFHOPLIMIT;
static int send_manage_dsait_ctrl = 0;
static int prompt_password = 0;
static int prompt_sslpassword = 0;
static FILE *password_fp = NULL;
static char *proxyauth_id = NULL;
static int proxyauth_version = 2; /* use newer proxy control */
static int no_pwpolicy_req_ctrl = 0;
#ifdef HAVE_SASL_OPTIONS
static unsigned sasl_flags = LDAP_SASL_AUTOMATIC;
static char *sasl_mech = NULL;
static char *sasl_authid = NULL;
static char *sasl_realm = NULL;
static char *sasl_username = NULL;
static char *sasl_secprops = NULL;
static int ldapauth = -1;
#endif /* HAVE_SASL_OPTIONS */
#if defined(NET_SSL)
static int secure = 0;
static int isZ = 0;
static int isZZ = 0;
static int isZZZ = 0;
static int isN = 0;
static int isW = 0;
static int isw = 0;
static int isD = 0;
static int isj = 0;
static int isk = 0;
static int ssl_strength = LDAPTOOL_DEFSSLSTRENGTH;
static char *ssl_certdbpath = NULL;
static char *ssl_keydbpath = NULL;
static char *ssl_certname = NULL;
static char *ssl_passwd = NULL;
#ifdef LDAP_TOOL_PKCS11
static char *ssl_secmodpath = NULL;
static char *pkcs_token = NULL;
static char *ssl_donglefile = NULL;
#if 0
static char *pkcs_pin = NULL;
#endif
static struct ldapssl_pkcs_fns local_pkcs_fns =
{0,NULL,NULL,NULL,NULL,NULL,NULL,NULL, NULL };
#endif /* LDAP_TOOL_PKCS11 */
#endif /* NET_SSL */
/*
* Handle general initialization and options that are common to all of
* the LDAP tools.
* Handle options that are common to all of the LDAP tools.
* Note the the H option is included here but handled via the
* extra_opt_callback function (along with any "extra_opts" ).
*
* Return: final value for optind or -1 if usage should be displayed (for
* some fatal errors, we call exit here).
*/
int
ldaptool_process_args( int argc, char **argv, char *extra_opts,
int two_hosts, void (*extra_opt_callback)( int option, char *optarg ))
{
int rc, i, hostnum;
char *optstring, *common_opts;
extern char *optarg;
extern int optind;
LDAPAPIInfo ldai;
char *ctrl_arg, *ctrl_oid=NULL, *ctrl_value=NULL;
int ctrl_criticality=0, vlen;
LDAPControl *ldctrl;
/*
* Set program name global based on argv[0].
*/
if (( ldaptool_progname = strrchr( argv[ 0 ], '/' )) == NULL ) {
ldaptool_progname = argv[ 0 ];
} else {
++ldaptool_progname;
}
#ifdef LDAPTOOL_DEBUG_MEMORY
{
struct ldap_memalloc_fns mafns = {
ldaptool_debug_malloc,
ldaptool_debug_calloc,
ldaptool_debug_realloc,
ldaptool_debug_free
};
ldap_set_option( NULL, LDAP_OPT_MEMALLOC_FN_PTRS, &mafns );
}
#endif /* LDAPTOOL_DEBUG_MEMORY */
#ifdef LDAP_DEBUG
i = LDAP_DEBUG_ANY;
ldap_set_option( NULL, LDAP_OPT_DEBUG_LEVEL, (void *) &i);
#endif
/*
* Perform a sanity check on the revision of the LDAP API library to
* make sure it is at least as new as the one we were compiled against.
* If the API implementation is from the same vendor as we were compiled
* against, we also check to make sure the vendor version is at least
* as new as the library we were compiled against.
*
* Version differences are fatal unless the -0 option is passed on the
* tool command line (that's a zero, not an oh). We check for the
* presence of -0 in a crude way to it must appear by itself in argv.
*/
for ( i = 1; i < argc; ++i ) {
if ( strcmp( argv[i], "-0" ) == 0 ) {
lib_version_mismatch_is_fatal = 0;
break;
}
}
memset( &ldai, 0, sizeof(ldai));
ldai.ldapai_info_version = LDAP_API_INFO_VERSION;
if (( rc = ldap_get_option( NULL, LDAP_OPT_API_INFO, &ldai )) != 0 ) {
fprintf( stderr, "%s: unable to retrieve LDAP library version"
" information;\n\tthis program requires an LDAP library that"
" implements revision\n\t%d or greater of the LDAP API.\n",
ldaptool_progname, LDAP_API_VERSION );
if ( lib_version_mismatch_is_fatal ) {
exit( LDAP_LOCAL_ERROR );
}
} else if ( ldai.ldapai_api_version < LDAP_API_VERSION ) {
fprintf( stderr, "%s: this program requires an LDAP library that"
" implements revision\n\t%d or greater of the LDAP API;"
" running with revision %d.\n",
ldaptool_progname, LDAP_API_VERSION, ldai.ldapai_api_version );
if ( lib_version_mismatch_is_fatal ) {
exit( LDAP_LOCAL_ERROR );
}
} else if ( strcmp( ldai.ldapai_vendor_name, LDAP_VENDOR_NAME ) != 0 ) {
fprintf( stderr, "%s: this program requires %s's LDAP\n"
"\tlibrary version %2.2f or greater; running with\n"
"\t%s's version %2.2f.\n",
ldaptool_progname, LDAP_VENDOR_NAME,
(float)LDAP_VENDOR_VERSION / 100,
ldai.ldapai_vendor_name,
(float)ldai.ldapai_vendor_version / 100 );
if ( lib_version_mismatch_is_fatal ) {
exit( LDAP_LOCAL_ERROR );
}
} else if ( ldai.ldapai_vendor_version < LDAP_VENDOR_VERSION ) {
fprintf( stderr, "%s: this program requires %s's LDAP\n"
"\tlibrary version %2.2f or greater; running with"
" version %2.2f.\n",
ldaptool_progname, LDAP_VENDOR_NAME,
(float)LDAP_VENDOR_VERSION / 100,
(float)ldai.ldapai_vendor_version / 100 );
if ( lib_version_mismatch_is_fatal ) {
exit( LDAP_LOCAL_ERROR );
}
}
/*
* Process command line options.
*/
if ( extra_opts == NULL ) {
extra_opts = "";
}
#ifdef HAVE_SASL_OPTIONS
#ifdef HAVE_SASL_OPTIONS_2
common_opts = "kgnvEMRHZ02:3d:D:f:h:j:I:K:N:O:P:p:W:w:V:m:i:y:Y:J:";
#else
common_opts = "kgnvEMRHZ03d:D:f:h:j:I:K:N:O:o:P:p:W:w:V:m:i:y:Y:J:";
#endif
#else
common_opts = "kgnvEMRHZ03d:D:f:h:j:I:K:N:O:P:p:Q:W:w:V:m:i:k:y:Y:J:";
#endif /* HAVE_SASL_OPTIONS */
if (( optstring = (char *) malloc( strlen( extra_opts ) + strlen( common_opts )
+ 1 )) == NULL ) {
perror( "malloc" );
exit( LDAP_NO_MEMORY );
}
sprintf( optstring, "%s%s", common_opts, extra_opts );
if ( argc == 2 ) {
if ( ((strncmp( argv[1], "/?", strlen("/?") + 1 )) == 0 ) ||
((strncmp( argv[1], "-help", strlen("-help") + 1 )) == 0 ) ||
((strncmp( argv[1], "--help", strlen("--help") + 1 )) == 0 ) ) {
return( -1 );
}
}
hostnum = 0;
while ( (i = getopt( argc, argv, optstring )) != EOF ) {
switch( i ) {
case 'n': /* do Not do any LDAP operations */
++ldaptool_not;
break;
case 'v': /* verbose mode */
++ldaptool_verbose;
break;
case 'd':
#ifdef LDAP_DEBUG
ldaptool_dbg_lvl = atoi( optarg ); /* */
ber_set_option(NULL, LBER_OPT_DEBUG_LEVEL,
(void *)&ldaptool_dbg_lvl);
ldaptool_dbg_lvl |= LDAP_DEBUG_ANY;
ldap_set_option( NULL, LDAP_OPT_DEBUG_LEVEL,
(void *)&ldaptool_dbg_lvl);
#else /* LDAP_DEBUG */
fprintf( stderr, "compile with -DLDAP_DEBUG for debugging\n" );
#endif /* LDAP_DEBUG */
break;
case 'R': /* don't automatically chase referrals */
chase_referrals = 0;
break;
case 'f': /* input file */
if ( optarg[0] == '-' && optarg[1] == '\0' ) {
ldaptool_fp = stdin;
} else if (( ldaptool_fp = ldaptool_open_file( optarg, "r" )) == NULL ) {
perror( optarg );
exit( LDAP_PARAM_ERROR );
}
break;
case 'h': /* ldap host */
if ( hostnum == 0 ) {
ldaptool_host = strdup( optarg );
} else if ( two_hosts ) {
ldaptool_host2 = strdup( optarg );
} else {
fprintf( stderr,
"%s: only one host (-h option) should be specified\n",
ldaptool_progname );
return(-1); /* usage error */
}
++hostnum;
break;
case 'D': /* bind DN */
isD = 1;
binddn = strdup( optarg );
break;
case 'E': /* expose bind identity via auth. response control */
++send_auth_response_ctrl;
break;
case 'p': /* ldap port */
if ( !user_specified_port ) {
++user_specified_port;
ldaptool_port = atoi( optarg );
} else if ( two_hosts ) {
++user_specified_port2;
ldaptool_port2 = atoi( optarg );
} else {
fprintf( stderr,
"%s: only one port (-p option) should be specified\n",
ldaptool_progname );
return(-1); /* usage error */
}
break;
#if defined(NET_SSL)
case 'P': /* path to security database */
if ( (0 == isZ) && (0 == isZZ) )
{
secure = 1; /* do SSL encryption */
}
ssl_certdbpath = strdup( optarg );
if (NULL == ssl_certdbpath)
{
perror("malloc");
exit( LDAP_NO_MEMORY );
}
break;
case 'Z': /* do SSL encryption */
if ( (0 == isZ) && (0 == isZZ) )
{
secure = 1;
isZ = 1;
}
else {
secure = 0;
isZ = 0;
/* -ZZZ for Server response required */
if (isZZ == 1) isZZZ =1;
isZZ = 1; /* -ZZ : Start TLS request */
}
break;
case 'N': /* nickname of cert. to use for client auth. */
ssl_certname = strdup( optarg );
if (NULL == ssl_certname)
{
perror("malloc");
exit( LDAP_NO_MEMORY );
}
isN = 1;
break;
case 'K': /* location of key database */
ssl_keydbpath = strdup( optarg );
if (NULL == ssl_keydbpath)
{
perror("malloc");
exit( LDAP_NO_MEMORY );
}
break;
case 'W': /* SSL key password */
if ( optarg[0] == '-' && optarg[1] == '\0' ) {
prompt_sslpassword = 1;
} else {
ssl_passwd = strdup( optarg );
if (NULL == ssl_passwd)
{
perror("malloc");
exit( LDAP_NO_MEMORY );
}
}
isW = 1;
break;
case '3': /* check hostnames in SSL certificates ("no third") */
ssl_strength = LDAPSSL_AUTH_CNCHECK;
break;
#ifdef LDAP_TOOL_PKCS11
case 'm': /* SSL secmod path */
ssl_secmodpath = strdup( optarg);
if (NULL == ssl_secmodpath)
{
perror("malloc");
exit( LDAP_NO_MEMORY );
}
break;
case 'Q': /* [token][:certificate name] */
pkcs_token = strdup(optarg);
if (NULL == pkcs_token)
{
perror("malloc");
exit( LDAP_NO_MEMORY );
}
break;
case 'I': /* PIN (password file) */
ssl_donglefile = strdup( optarg );
break;
#endif /* LDAP_TOOL_PKCS11 */
#endif /* NET_SSL */
case 'w': /* bind password */
isw = 1;
if ( optarg[0] == '-' && optarg[1] == '\0' )
prompt_password = 1;
else
passwd = strdup( optarg );
break;
case 'j': /* bind password from file */
isj = 1;
if ((password_fp = fopen( optarg, "r" )) == NULL ) {
fprintf(stderr, "%s: Unable to open '%s' file\n",
ldaptool_progname, optarg);
exit( LDAP_PARAM_ERROR );
}
break;
case 'O': /* referral hop limit */
refhoplim = atoi( optarg );
break;
case 'V': /* protocol version */
ldversion = atoi (optarg);
if ( ldversion != LDAP_VERSION2 && ldversion != LDAP_VERSION3 ) {
fprintf( stderr, "%s: LDAP protocol version %d is not "
"supported (use -V%d or -V%d)\n",
ldaptool_progname, ldversion, LDAP_VERSION2,
LDAP_VERSION3 );
exit( LDAP_PARAM_ERROR );
}
break;
case 'M': /* send a manageDsaIT control */
send_manage_dsait_ctrl = 1;
break;
case 'i': /* character set specified */
ldaptool_charset = strdup( optarg );
if (NULL == ldaptool_charset)
{
perror( "malloc" );
exit( LDAP_NO_MEMORY );
}
break;
case 'k': /* bypass passwd conversion to utf8 */
isk = 1;
ldaptool_noconv_passwd = 1; /* tell the tool about it */
break;
case 'y': /* old (version 1) proxied authorization control */
proxyauth_version = 1;
/*FALLTHRU*/
case 'Y': /* new (version 2 ) proxied authorization control */
proxyauth_id = strdup(optarg);
if (NULL == proxyauth_id)
{
perror( "malloc" );
exit( LDAP_NO_MEMORY );
}
break;
case '0': /* zero -- override LDAP library version check */
break; /* already handled above */
case 'J': /* send an arbitrary control */
if ( (ctrl_arg = strdup( optarg)) == NULL ) {
perror ("strdup");
exit (LDAP_NO_MEMORY);
}
if (ldaptool_parse_ctrl_arg(ctrl_arg, ':', &ctrl_oid,
&ctrl_criticality, &ctrl_value, &vlen)) {
return (-1);
}
ldctrl = calloc(1,sizeof(LDAPControl));
if (ctrl_value) {
rc = ldaptool_berval_from_ldif_value( ctrl_value,
vlen, &(ldctrl->ldctl_value),
1 /* recognize file URLs */,
0 /* always try file */,
1 /* report errors */ );
if ((rc = ldaptool_fileurlerr2ldaperr( rc )) != LDAP_SUCCESS) {
fprintf( stderr, "Unable to parse %s\n", ctrl_value);
return (-1);
}
}
ldctrl->ldctl_oid = ctrl_oid;
ldctrl->ldctl_iscritical = ctrl_criticality;
ldaptool_add_control_to_array(ldctrl, ldaptool_request_ctrls);
break;
case 'g': /* do not send password policy request control */
no_pwpolicy_req_ctrl++;
break;
#ifdef HAVE_SASL_OPTIONS
#ifdef HAVE_SASL_OPTIONS_2
case '2': /* attribute assignment */
#else
case 'o': /* attribute assignment */
#endif
if ((rc = saslSetParam(optarg)) == -1) {
return (-1);
}
ldapauth = LDAP_AUTH_SASL;
ldversion = LDAP_VERSION3;
break;
#endif /* HAVE_SASL_OPTIONS */
default:
(*extra_opt_callback)( i, optarg );
}
}
/* If '-Z' is specified, check if '-P' is specified too. */
if ( isN || isW ) {
if ( !(isZ || isZZ) ) {
fprintf( stderr, "%s: with -N, -W options, please specify either -Z , -ZZ or -ZZZ\n\n", ldaptool_progname );
return (-1);
}
}
#ifdef LDAP_TOOL_PKCS11
/* if '-N' is specified, -W or -I is needed too */
if ( isN && NULL == ssl_passwd && 0 == prompt_sslpassword && NULL == ssl_donglefile ) {
fprintf( stderr, "%s: with the -N option, please specify -W or -I also\n\n", ldaptool_progname );
return (-1);
}
#else
/* if '-N' is specified, -W is needed too */
if ( isN && NULL == ssl_passwd && 0 == prompt_sslpassword ) {
fprintf( stderr, "%s: with the -N option, please specify -W also\n\n", ldaptool_progname );
return (-1);
}
#endif /* LDAP_TOOL_PKCS11 */
if ( isj && isw ) {
fprintf(stderr, "%s: -j and -w options cannot be specified simultaneously\n\n", ldaptool_progname );
return (-1);
}
/* complain if -j or -w does not also have -D, unless using SASL */
#ifdef HAVE_SASL_OPTIONS
if ( (isj || isw) && !isD && ( ldapauth != LDAP_AUTH_SASL ) ) {
#else
if ( (isj || isw) && !isD ) {
#endif
fprintf(stderr, "%s: with -j, -w options, please specify -D\n\n", ldaptool_progname );
return (-1);
}
/* use default key and cert DB paths if not set on the command line */
if ( NULL == ssl_keydbpath ) {
if ( NULL == ssl_certdbpath ) {
ssl_keydbpath = LDAPTOOL_DEFKEYDBPATH;
} else {
/* The ldapssl_.*init() functions, which call NSS_Initialize(),
* don't rely on the key DB path ending in the correct filename,
* so it is OK to just pass them the cert DB path.
*/
ssl_keydbpath = ssl_certdbpath;
}
}
if ( NULL == ssl_certdbpath ) {
ssl_certdbpath = LDAPTOOL_DEFCERTDBPATH;
}
if (prompt_password != 0) {
char *password_string = "Enter bind password: ";
passwd = ldaptool_getpass( password_string );
} else if (password_fp != NULL) {
passwd = ldaptool_read_password( password_fp );
}
/*
* If verbose (-v) flag was passed in, display program name and start time.
* If the verbose flag was passed at least twice (-vv), also display
* information about the API library we are running with.
*/
if ( ldaptool_verbose ) {
time_t curtime;
curtime = time( NULL );
printf( "%s: started %s\n", ldaptool_progname, ctime( &curtime ));
if ( ldaptool_verbose > 1 ) {
print_library_info( &ldai, stdout );
}
}
#ifdef LDAP_TOOL_PKCS11
if ((NULL != pkcs_token) && (NULL != ssl_certname)) {
char *result;
if ( (result = buildTokenCertName( pkcs_token, ssl_certname)) != NULL){
free( ssl_certname );
ssl_certname = result;
}
}
#endif /* LDAP_TOOL_PKCS11 */
free( optstring );
/*
* Clean up and return index of first non-option argument.
*/
if ( ldai.ldapai_extensions != NULL ) {
ldap_value_free( ldai.ldapai_extensions );
}
if ( ldai.ldapai_vendor_name != NULL ) {
ldap_memfree( ldai.ldapai_vendor_name );
}
#ifdef HAVE_SASL_OPTIONS
if (ldversion == LDAP_VERSION2 && ldapauth == LDAP_AUTH_SASL) {
fprintf( stderr, "Incompatible with version %d\n", ldversion);
return (-1);
}
#endif /* HAVE_SASL_OPTIONS */
return( optind );
}
/*
* Write detailed information about the API library we are running with to fp.
*/
static void
print_library_info( const LDAPAPIInfo *aip, FILE *fp )
{
int i;
LDAPAPIFeatureInfo fi;
fprintf( fp, "LDAP Library Information -\n"
" Highest supported protocol version: %d\n"
" LDAP API revision: %d\n"
" API vendor name: %s\n"
" Vendor-specific version: %.2f\n",
aip->ldapai_protocol_version, aip->ldapai_api_version,
aip->ldapai_vendor_name,
(float)aip->ldapai_vendor_version / 100.0 );
if ( aip->ldapai_extensions != NULL ) {
fputs( " LDAP API Extensions:\n", fp );
for ( i = 0; aip->ldapai_extensions[i] != NULL; i++ ) {
fprintf( fp, " %s", aip->ldapai_extensions[i] );
fi.ldapaif_info_version = LDAP_FEATURE_INFO_VERSION;
fi.ldapaif_name = aip->ldapai_extensions[i];
fi.ldapaif_version = 0;
if ( ldap_get_option( NULL, LDAP_OPT_API_FEATURE_INFO, &fi )
!= 0 ) {
fprintf( fp, " %s: ldap_get_option( NULL,"
" LDAP_OPT_API_FEATURE_INFO, ... ) for %s failed"
" (Feature Info version: %d)\n", ldaptool_progname,
fi.ldapaif_name, fi.ldapaif_info_version );
} else {
fprintf( fp, " (revision %d)\n", fi.ldapaif_version);
}
}
}
fputc( '\n', fp );
}
#ifdef LDAP_TOOL_ARGPIN
static int PinArgRegistration( void )
{
/* pkcs_init was successful register the pin args */
SVRCOREArgPinObj *ArgPinObj;
char *tokenName;
#ifndef _WIN32
SVRCOREStdPinObj *StdPinObj;
#else
SVRCOREFilePinObj *FilePinObj;
SVRCOREAltPinObj *AltPinObj;
SVRCORENTUserPinObj *NTUserPinObj;
int err;
#endif
char *pin;
char *filename;
/* Create and register the pin object for PKCS 11 */
local_pkcs_fns.pkcs_getdonglefilename(NULL, &filename);
local_pkcs_fns.pkcs_getpin(NULL, "", &pin);
#ifndef _WIN32
if ( SVRCORE_CreateStdPinObj(&StdPinObj, filename, PR_TRUE) !=
SVRCORE_Success) {
fprintf(stderr, "Security Initialization: Unable to create PinObj "
"(%d)", PR_GetError());
return -1;
}
if (pin != NULL)
{
local_pkcs_fns.pkcs_gettokenname(NULL, &tokenName);
SVRCORE_CreateArgPinObj(&ArgPinObj, tokenName, pin, (SVRCOREPinObj *)StdPinObj);
SVRCORE_RegisterPinObj((SVRCOREPinObj *)ArgPinObj);
}
else
{
SVRCORE_RegisterPinObj((SVRCOREPinObj *)StdPinObj);
}
#else
if (NULL != pin)
{
local_pkcs_fns.pkcs_gettokenname(NULL, &tokenName);
if ((err = SVRCORE_CreateNTUserPinObj(&NTUserPinObj)) != SVRCORE_Success){
fprintf(stderr, "Security Initialization: Unable to create NTUserPinObj "
"(%d)", PR_GetError());
exit( LDAP_LOCAL_ERROR );
}
if ((err = SVRCORE_CreateArgPinObj(&ArgPinObj, tokenName, pin,
(SVRCOREPinObj *)NTUserPinObj)) != SVRCORE_Success)
{
fprintf(stderr, "Security Initialization: Unable to create ArgPinObj "
"(%d)", PR_GetError());
return -1;
}
SVRCORE_RegisterPinObj((SVRCOREPinObj *)ArgPinObj);
}
else
{
if ((err = SVRCORE_CreateNTUserPinObj(&NTUserPinObj)) != SVRCORE_Success){
fprintf( stderr, "Security Initialization: Unable to create NTUserPinObj "
"(%d)", PR_GetError());
return -1;
}
if (filename && *filename)
{
if ((err = SVRCORE_CreateFilePinObj(&FilePinObj, filename)) !=
SVRCORE_Success) {
fprintf( stderr, "Security Initialization: Unable to create FilePinObj "
"(%d)", PR_GetError());
return -1;
}
if ((err = SVRCORE_CreateAltPinObj(&AltPinObj, (SVRCOREPinObj *)FilePinObj,
(SVRCOREPinObj *)NTUserPinObj)) != SVRCORE_Success) {
fprintf( stderr, "Security Initialization: Unable to create AltPinObj "
"(%d)", PR_GetError());
return -1;
}
SVRCORE_RegisterPinObj((SVRCOREPinObj *)AltPinObj);
}
else
{
SVRCORE_RegisterPinObj((SVRCOREPinObj *)NTUserPinObj);
}
}
#endif
return LDAP_SUCCESS;
}
#endif /* LDAP_TOOL_ARGPIN */
#if !defined(macintosh) && !defined(DOS) && !defined( _WINDOWS )
/* If numaddr is IPv6 numeric address and if possible, get FQDN from it.
* This conversion is needed to fulfill the spec of sasl_client_init.
* If successful, FQDN is stored in buf and return LDAP_SUCCESS
* If numaddr is not IPv6 numeric address, it returns non LDAP_SUCCESS (-1)
* If any step of the conversion fails, it returns non LDAP_SUCCESS (-1)
* Note: any conversion failure does not print out an error message.
*/
static int
getFQDNbyIPv6NumericAddr ( char *numaddr, char *buf, size_t blen )
{
char *hostp = NULL;
int isIPv6Numeric = 0;
int rc, return_value = -1;
/* IPv6 numeric address includes 2 or more colons */
/* example: [3ffe:1111:2222:3333::1] */
hostp = strchr( numaddr, ':' );
if ( hostp ) { /* found one colon */
hostp = strchr( hostp+1, ':' );
if ( hostp ) { /* found two colons */
hostp = strchr( numaddr, '[' );
if ( hostp ) { /* numaddr starts with '[' */
/* example: [fe80::250:ffff:ffff:e53a%eth0]
* if interface is given, it's link-local.
* we don't do lookup */
char *workp = strchr( ++hostp, '%' );
if ( !workp ) { /* address does not include % */
size_t mylen = 0;
isIPv6Numeric = 1;
workp = strchr( hostp, ']' );
if ( workp ) {
mylen = workp - hostp;
} else {
mylen = strlen( hostp );
}
if ( mylen >= blen ) { /* address too long */
return return_value;
}
strncpy( buf, hostp, mylen );
buf[mylen] = '\0';
}
} else {
isIPv6Numeric = 1;
if ( strlen(numaddr) >= blen ) { /* address too long */
return return_value;
}
strcpy( buf, numaddr );
}
}
}
if ( !isIPv6Numeric ) {
return return_value; /* it's not IPv6 numeric address */
}
{
struct sockaddr *saddr = NULL;
socklen_t slen = 0;
#ifdef HAVE_GETADDRINFO
struct addrinfo hints = {0};
struct addrinfo *ainfo = NULL;
hints.ai_flags = AI_ADDRCONFIG;
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
rc = getaddrinfo( buf, NULL, &hints, &ainfo );
if ( 0 == rc ) {
saddr = ainfo->ai_addr;
slen = ainfo->ai_addrlen;
}
/* if saddr is NULL here, getaddrinfo failed */
#endif
if ( saddr && slen > 0 ) {
#ifdef HAVE_GETNAMEINFO
rc = getnameinfo( saddr, slen, buf, (socklen_t)blen, NULL, 0, NI_NAMEREQD );
if (0 == rc) {
return_value = LDAP_SUCCESS;
}
#endif
#ifdef HAVE_GETADDRINFO
if ( ainfo ) {
freeaddrinfo( ainfo );
}
#endif
if ( LDAP_SUCCESS == return_value ) {
return return_value;
}
}
}
/* getaddrinfo and getnameinfo are not available; let's use nspr apis */
{
PRNetAddr praddr;
PRIntn idx = 0;
PRHostEnt prhent, prrevhent;
char tmpbuf[PR_NETDB_BUF_SIZE];
if ( PR_GetIPNodeByName(buf, PR_AF_INET6, PR_AI_DEFAULT,
tmpbuf, sizeof(tmpbuf), &prhent) != PR_SUCCESS ) {
return return_value;
}
while (1) {
idx = PR_EnumerateHostEnt(idx, &prhent, 0, &praddr);
if (idx == -1) {
return return_value;
}
if (idx == 0) break; /* normal loop termination */
if (PR_GetHostByAddr(&praddr, tmpbuf, sizeof(tmpbuf),
&prrevhent) == PR_FAILURE) {
return return_value;
}
if ( prrevhent.h_name ) {
PR_snprintf( buf, blen, "%s", prrevhent.h_name );
return_value = LDAP_SUCCESS;
break;
}
}
return return_value;
}
}
#endif
/*
* initialize and return an LDAP session handle.
* if errors occur, we exit here.
*/
LDAP *
ldaptool_ldap_init( int second_host )
{
LDAP *ld = NULL;
char *host;
int port, rc, user_port;
#if !defined(macintosh) && !defined(DOS) && !defined( _WINDOWS )
#if defined(MAXHOSTNAMELEN)
char hname[MAXHOSTNAMELEN];
size_t hlen = MAXHOSTNAMELEN;
#else
char hname[256];
size_t hlen = 256;
#endif
#endif
if ( ldaptool_not ) {
return( NULL );
}
if ( second_host ) {
host = ldaptool_host2;
port = ldaptool_port2;
user_port = user_specified_port2;
} else {
host = ldaptool_host;
port = ldaptool_port;
user_port = user_specified_port;
}
#if !defined(macintosh) && !defined(DOS) && !defined( _WINDOWS )
/* If numaddr is IPv6 numeric address and if possible, get FQDN from it. */
if ( getFQDNbyIPv6NumericAddr ( host, hname, hlen ) == LDAP_SUCCESS ) {
host = hname;
}
#endif
if ( ldaptool_verbose ) {
printf( "ldap_init( %s, %d )\n", host, port );
}
#if defined(NET_SSL)
/*
* Initialize security libraries and databases and LDAP session. If
* ssl_certname is not NULL, then we will attempt to use client auth.
* if the server supports it.
*/
#ifdef LDAP_TOOL_PKCS11
ldaptool_setcallbacks( &local_pkcs_fns );
if ( !second_host && ( secure || isZZ )
&&(rc = ldapssl_pkcs_init( &local_pkcs_fns)) < 0) {
/* secure connection requested -- fail if no SSL */
rc = PORT_GetError();
fprintf( stderr, "SSL initialization failed: error %d (%s)\n",
rc, ldapssl_err2string( rc ));
exit( LDAP_LOCAL_ERROR );
}
#ifdef LDAP_TOOL_ARGPIN
if (secure || isZZ) {
if (PinArgRegistration( )) {
exit( LDAP_LOCAL_ERROR);
}
}
#endif /* LDAP_TOOL_ARGPIN */
#else /* LDAP_TOOL_PKCS11 */
if ( !second_host && ( secure || isZZ )
&&(rc = ldapssl_client_init( ssl_certdbpath, NULL )) < 0) {
/* secure connection requested -- fail if no SSL */
rc = PORT_GetError();
fprintf( stderr, "SSL initialization failed: error %d (%s)\n",
rc, ldapssl_err2string( rc ));
exit( LDAP_LOCAL_ERROR );
}
#endif /* LDAP_TOOL_PKCS11 */
/* set the default SSL strength (used for all future ld's we create) */
if ( ldapssl_set_strength( NULL, ssl_strength ) < 0 ) {
perror( "ldapssl_set_strength" );
exit( LDAP_LOCAL_ERROR );
}
if (secure) {
if ( !user_port ) {
port = LDAPS_PORT;
}
if (( ld = ldapssl_init( host, port,
secure )) != NULL && ssl_certname != NULL )
if (ldapssl_enable_clientauth( ld, ssl_keydbpath, ssl_passwd,
ssl_certname ) != 0 ) {
exit ( ldaptool_print_lderror( ld, "ldapssl_enable_clientauth",
LDAPTOOL_CHECK4SSL_ALWAYS ));
}
} else if (isZZ)
{/* startTLS if -ZZ or -ZZZ option is used */
if (( ld = prldap_init( host, port, 0 )) == NULL) {
perror("prldap_init failed");
exit( LDAP_LOCAL_ERROR );
}
/* Provide client authentication if -N option is used */
if ( ssl_certname != NULL ) {
if (ldapssl_enable_clientauth( ld, ssl_keydbpath, ssl_passwd,
ssl_certname ) != 0 ) {
exit ( ldaptool_print_lderror( ld, "ldapssl_enable_clientauth",
LDAPTOOL_CHECK4SSL_ALWAYS ));
}
}
/* Call to startTLS over the current clear-text connection */
if ( ( rc = ldap_start_tls_s( ld, NULL, NULL ) ) != LDAP_SUCCESS ) {
fprintf( stderr, "ldap_start_tls_s failed: (%s)\n",
ldap_err2string(rc));
if( isZZZ ) {
ldap_unbind( ld );
exit( rc );
}
}
} /* End startTLS case */
else {
/* In order to support IPv6, we use NSPR I/O */
ld = prldap_init( host, port, 0 /* not shared across threads */ );
}
#else
/* In order to support IPv6, we use NSPR I/O */
ld = prldap_init( host, port, 0 /* not shared across threads */ );
#endif
if ( ld == NULL ) {
perror( "ldap_init" );
exit( LDAP_LOCAL_ERROR );
}
ldap_set_option( ld, LDAP_OPT_REFERRALS, chase_referrals ? LDAP_OPT_ON:
LDAP_OPT_OFF );
if ( chase_referrals ) {
ldap_set_rebind_proc( ld, get_rebind_credentials, NULL );
ldap_set_option( ld, LDAP_OPT_REFERRAL_HOP_LIMIT, &refhoplim );
}
if ( ldversion == -1 ) { /* not set with -V and not using local db */
ldversion = LDAP_VERSION3;
}
ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &ldversion );
return( ld );
}
/*
* perform a bind to the LDAP server if needed.
* if an error occurs, we exit here.
*/
void
ldaptool_bind( LDAP *ld )
{
int rc, ctrl_index = 0;
char *conv_binddn;
char *conv_passwd = NULL;
LDAPControl auth_resp_ctrl, *ctrl_array[ 3 ], **bindctrls;
LDAPControl pwpolicy_req_ctrl;
LDAPControl **ctrls = NULL;
#ifdef HAVE_SASL_OPTIONS
void *defaults;
#endif
if ( ldaptool_not ) {
return;
}
if ( send_auth_response_ctrl ) {
auth_resp_ctrl.ldctl_oid = LDAP_CONTROL_AUTH_REQUEST;
auth_resp_ctrl.ldctl_value.bv_val = NULL;
auth_resp_ctrl.ldctl_value.bv_len = 0;
auth_resp_ctrl.ldctl_iscritical = 0;
ctrl_array[ctrl_index++] = &auth_resp_ctrl;
}
if ( !no_pwpolicy_req_ctrl ) {
pwpolicy_req_ctrl.ldctl_oid = LDAP_X_CONTROL_PWPOLICY_REQUEST;
pwpolicy_req_ctrl.ldctl_value.bv_val = NULL;
pwpolicy_req_ctrl.ldctl_value.bv_len = 0;
pwpolicy_req_ctrl.ldctl_iscritical = 0;
ctrl_array[ctrl_index++] = &pwpolicy_req_ctrl;
}
if ( ctrl_index == 0 ) {
bindctrls = NULL;
} else {
ctrl_array[ctrl_index] = NULL;
bindctrls = ctrl_array;
}
/*
* if using LDAPv3 and not using client auth., omit NULL bind for
* efficiency.
*/
if ( ldversion > LDAP_VERSION2 && binddn == NULL && passwd == NULL
&& ssl_certname == NULL ) {
#ifdef HAVE_SASL_OPTIONS
if ( ldapauth != LDAP_AUTH_SASL ) {
#endif
/* let the tool know we did no bind */
ldaptool_nobind = 1;
return;
#ifdef HAVE_SASL_OPTIONS
}
#endif
}
/*
* do the bind, backing off one LDAP version if necessary
*/
conv_binddn = ldaptool_local2UTF8( binddn, "bind DN" );
if ( passwd != NULL ) {
if ( isk ) {
conv_passwd = strdup( passwd );
} else {
conv_passwd = ldaptool_local2UTF8( passwd, "password" );
}
}
#ifdef HAVE_SASL_OPTIONS
if ( ldapauth == LDAP_AUTH_SASL) {
LDAPControl **rctrls = NULL;
if ( sasl_mech == NULL) {
fprintf( stderr, "Please specify the SASL mechanism name when "
"using SASL options\n");
return;
}
if ( sasl_secprops != NULL) {
rc = ldap_set_option( ld, LDAP_OPT_X_SASL_SECPROPS,
(void *) sasl_secprops );
if ( rc != LDAP_SUCCESS ) {
fprintf( stderr, "Unable to set LDAP_OPT_X_SASL_SECPROPS: %s\n",
sasl_secprops );
return;
}
}
defaults = ldaptool_set_sasl_defaults( ld, sasl_flags, sasl_mech,
sasl_authid, sasl_username, passwd, sasl_realm );
if (defaults == NULL) {
perror ("malloc");
exit (LDAP_NO_MEMORY);
}
rc = ldap_sasl_interactive_bind_ext_s( ld, binddn, sasl_mech,
bindctrls, ctrls, sasl_flags,
ldaptool_sasl_interact, defaults, &rctrls );
if (rc != LDAP_SUCCESS ) {
ldap_perror( ld, "Bind Error" );
}
check_response_controls( ld, "ldaptool_bind", rctrls, 1 );
} else
#endif /* HAVE_SASL_OPTIONS */
/*
* if using LDAPv3 and client auth., try a SASL EXTERNAL bind
*/
if ( ldversion > LDAP_VERSION2 && binddn == NULL && passwd == NULL
&& ssl_certname != NULL ) {
rc = ldaptool_sasl_bind_s( ld, NULL, LDAP_SASL_EXTERNAL, NULL,
bindctrls, NULL, NULL, "ldap_sasl_bind" );
} else {
rc = ldaptool_simple_bind_s( ld, conv_binddn, conv_passwd, bindctrls, NULL,
"ldap_simple_bind" );
}
if ( rc == LDAP_SUCCESS ) {
if ( conv_binddn != NULL ) {
free( conv_binddn );
}
if ( conv_passwd != NULL ) {
free( conv_passwd );
}
return; /* success */
}
#ifdef HAVE_SASL_OPTIONS
if (ldapauth != LDAP_AUTH_SASL) {
#endif /* HAVE_SASL_OPTIONS */
if ( rc == LDAP_PROTOCOL_ERROR && ldversion > LDAP_VERSION2 ) {
/*
* try again, backing off one LDAP version
* this is okay even for client auth. because the way to achieve
* client auth. with LDAPv2 is to perform a NULL simple bind.
*/
--ldversion;
fprintf( stderr, "%s: the server doesn't understand LDAPv%d;"
" trying LDAPv%d instead...\n", ldaptool_progname,
ldversion + 1, ldversion );
ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &ldversion );
if (( rc = ldaptool_simple_bind_s( ld, conv_binddn, conv_passwd,
bindctrls, NULL, "ldap_simple_bind" )) == LDAP_SUCCESS ) {
if ( conv_binddn != NULL ) {
free( conv_binddn );
}
if ( conv_passwd != NULL ) {
free( conv_passwd );
}
return; /* a qualified success */
}
}
#ifdef HAVE_SASL_OPTIONS
}
#endif /* HAVE_SASL_OPTIONS */
if ( conv_binddn != NULL ) {
free( conv_binddn );
}
if ( conv_passwd != NULL ) {
free( conv_passwd );
}
/*
* bind(s) failed -- fatal error
*/
ldap_unbind( ld );
exit( rc );
}
/*
* close open files, unbind, etc.
*/
void
ldaptool_cleanup( LDAP *ld )
{
if ( ld != NULL ) {
ldap_unbind( ld );
}
if ( ldaptool_fp != NULL && ldaptool_fp != stdin ) {
fclose( ldaptool_fp );
ldaptool_fp = NULL;
}
}
/*
* Retrieve and print an LDAP error message. Returns the LDAP error code.
*/
int
ldaptool_print_lderror( LDAP *ld, char *msg, int check4ssl )
{
int lderr = ldap_get_lderrno( ld, NULL, NULL );
ldap_perror( ld, msg );
if ( ( secure || isZZ ) && check4ssl != LDAPTOOL_CHECK4SSL_NEVER ) {
if ( check4ssl == LDAPTOOL_CHECK4SSL_ALWAYS
|| ( lderr == LDAP_SERVER_DOWN )
|| ( lderr == LDAP_CONNECT_ERROR )) {
int sslerr = PORT_GetError();
if ( isZZ ) {
fprintf( stderr, "\tTLS/SSL error %d (%s)\n", sslerr,
ldapssl_err2string( sslerr ));
}
else {
fprintf( stderr, "\tSSL error %d (%s)\n", sslerr,
ldapssl_err2string( sslerr ));
}
}
}
return( lderr );
}
/*
* print referrals to stderr
*/
void
ldaptool_print_referrals( char **refs )
{
int i;
if ( refs != NULL ) {
for ( i = 0; refs[ i ] != NULL; ++i ) {
fprintf( stderr, "Referral: %s\n", refs[ i ] );
}
}
}
/*
* print contents of an extended response to stderr
* this is mainly to support unsolicited notifications
* Returns an LDAP error code (from the extended result).
*/
int
ldaptool_print_extended_response( LDAP *ld, LDAPMessage *res, char *msg )
{
char *oid;
struct berval *data;
if ( ldap_parse_extended_result( ld, res, &oid, &data, 0 )
!= LDAP_SUCCESS ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
} else {
if ( oid != NULL ) {
if ( strcmp ( oid, LDAP_NOTICE_OF_DISCONNECTION ) == 0 ) {
fprintf( stderr, "%s: Notice of Disconnection\n", msg );
} else {
fprintf( stderr, "%s: OID %s\n", msg, oid );
}
ldap_memfree( oid );
} else {
fprintf( stderr, "%s: missing OID\n", msg );
}
if ( data != NULL ) {
fprintf( stderr, "%s: Data (length %d):\n", msg, data->bv_len );
#if 0
/* XXXmcs: maybe we should display the actual data? */
lber_bprint( data->bv_val, data->bv_len );
#endif
ber_bvfree( data );
}
}
return parse_result( ld, res, NULL, msg, 1 );
}
/*
* Like ldap_sasl_bind_s() but calls wait4result() to display
* any referrals returned and report errors in a consistent way.
*/
int
ldaptool_sasl_bind_s( LDAP *ld, const char *dn, const char *mechanism,
const struct berval *cred, LDAPControl **serverctrls,
LDAPControl **clientctrls, struct berval **servercredp, char *msg )
{
int rc, msgid;
if ( servercredp != NULL ) {
*servercredp = NULL;
}
if (( rc = ldap_sasl_bind( ld, dn, mechanism, cred, serverctrls,
clientctrls, &msgid )) != LDAP_SUCCESS ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
} else {
rc = wait4result( ld, msgid, servercredp, msg );
}
return( rc );
}
/*
* Like ldap_simple_bind_s() but calls wait4result() to display
* any referrals returned and report errors in a consistent way.
*/
int
ldaptool_simple_bind_s( LDAP *ld, const char *dn, const char *passwd,
LDAPControl **serverctrls, LDAPControl **clientctrls, char *msg )
{
struct berval bv;
bv.bv_val = (char *)passwd; /* XXXmcs: had to cast away const */
bv.bv_len = ( passwd == NULL ? 0 : strlen( passwd ));
return( ldaptool_sasl_bind_s( ld, dn, LDAP_SASL_SIMPLE, &bv, serverctrls,
clientctrls, NULL, msg ));
}
/*
* Like ldap_add_ext_s() but calls wait4result() to display
* any referrals returned and report errors in a consistent way.
*/
int
ldaptool_add_ext_s( LDAP *ld, const char *dn, LDAPMod **attrs,
LDAPControl **serverctrls, LDAPControl **clientctrls, char *msg )
{
int rc, msgid;
if (( rc = ldap_add_ext( ld, dn, attrs, serverctrls, clientctrls, &msgid ))
!= LDAP_SUCCESS ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
} else {
/*
* 25-April-2000 Note: the next line used to read:
* rc = wait4result( ld, msgid, NULL, msg );
* 'msgid' it was changed to 'LDAP_RES_ANY' in order to receive
* unsolicited notifications.
*/
rc = wait4result( ld, LDAP_RES_ANY, NULL, msg );
}
return( rc );
}
/*
* Like ldap_modify_ext_s() but calls wait4result() to display
* any referrals returned and report errors in a consistent way.
*/
int
ldaptool_modify_ext_s( LDAP *ld, const char *dn, LDAPMod **mods,
LDAPControl **serverctrls, LDAPControl **clientctrls, char *msg )
{
int rc, msgid;
if (( rc = ldap_modify_ext( ld, dn, mods, serverctrls, clientctrls,
&msgid )) != LDAP_SUCCESS ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
} else {
rc = wait4result( ld, msgid, NULL, msg );
}
return( rc );
}
/*
* Like ldap_delete_ext_s() but calls wait4result() to display
* any referrals returned and report errors in a consistent way.
*/
int
ldaptool_delete_ext_s( LDAP *ld, const char *dn, LDAPControl **serverctrls,
LDAPControl **clientctrls, char *msg )
{
int rc, msgid;
if (( rc = ldap_delete_ext( ld, dn, serverctrls, clientctrls, &msgid ))
!= LDAP_SUCCESS ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
} else {
rc = wait4result( ld, msgid, NULL, msg );
}
return( rc );
}
/*
* Like ldap_compare_ext_s() but calls wait4result() to display
* any referrals returned and report errors in a consistent way.
*/
int ldaptool_compare_ext_s( LDAP *ld, const char *dn, const char *attrtype,
const struct berval *bvalue, LDAPControl **serverctrls,
LDAPControl **clientctrls, char *msg )
{
int rc, msgid;
if (( rc = ldap_compare_ext( ld, dn, attrtype, bvalue, serverctrls,
clientctrls, &msgid )) != LDAP_SUCCESS ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
} else {
rc = wait4result( ld, msgid, NULL, msg );
}
return( rc );
}
/*
* Like ldap_rename_s() but calls wait4result() to display
* any referrals returned and report errors in a consistent way.
*/
int
ldaptool_rename_s( LDAP *ld, const char *dn, const char *newrdn,
const char *newparent, int deleteoldrdn, LDAPControl **serverctrls,
LDAPControl **clientctrls, char *msg )
{
int rc, msgid;
if (( rc = ldap_rename( ld, dn, newrdn, newparent, deleteoldrdn,
serverctrls, clientctrls, &msgid )) != LDAP_SUCCESS ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
} else {
rc = wait4result( ld, msgid, NULL, msg );
}
return( rc );
}
/*
* Wait for a result, check for and display errors and referrals.
* Also recognize and display "Unsolicited notification" messages.
* Returns an LDAP error code.
*/
static int
wait4result( LDAP *ld, int msgid, struct berval **servercredp, char *msg )
{
LDAPMessage *res;
int rc, received_only_unsolicited = 1;
while ( received_only_unsolicited ) {
res = NULL;
if (( rc = ldap_result( ld, msgid, 1, (struct timeval *)NULL, &res ))
== -1 ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
return( ldap_get_lderrno( ld, NULL, NULL ));
}
/*
* Special handling for unsolicited notifications:
* 1. Parse and display contents.
* 2. go back and wait for another (real) result.
*/
if ( rc == LDAP_RES_EXTENDED
&& ldap_msgid( res ) == LDAP_RES_UNSOLICITED ) {
rc = ldaptool_print_extended_response( ld, res,
"Unsolicited response" );
} else {
rc = parse_result( ld, res, servercredp, msg, 1 );
received_only_unsolicited = 0; /* we're done */
}
}
return( rc );
}
static int
parse_result( LDAP *ld, LDAPMessage *res, struct berval **servercredp,
char *msg, int freeit )
{
int rc, lderr, errno;
char **refs = NULL;
LDAPControl **ctrls;
if (( rc = ldap_parse_result( ld, res, &lderr, NULL, NULL, &refs,
&ctrls, 0 )) != LDAP_SUCCESS ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
ldap_msgfree( res );
return( rc );
}
if ( (rc = check_response_controls( ld, msg, ctrls, 1 )) != LDAP_SUCCESS ) {
ldap_msgfree( res );
return( rc );
}
if ( servercredp != NULL && ( rc = ldap_parse_sasl_bind_result( ld, res,
servercredp, 0 )) != LDAP_SUCCESS ) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
ldap_msgfree( res );
return( rc );
}
if ( freeit ) {
ldap_msgfree( res );
}
if ( LDAPTOOL_RESULT_IS_AN_ERROR( lderr )) {
(void)ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP );
}
if ( refs != NULL ) {
ldaptool_print_referrals( refs );
ldap_value_free( refs );
}
return( lderr );
}
/*
* check for response controls. authentication response control
* and PW POLICY control are the ones we care about right now.
*/
static int
check_response_controls( LDAP *ld, char *msg, LDAPControl **ctrls, int freeit )
{
int i;
int errno;
int pw_days=0, pw_hrs=0, pw_mins=0, pw_secs=0; /* for pwpolicy */
char *s = NULL;
BerElement *ber = NULL;
static const char *pwpolicy_err2str[] = {
"Password has expired.",
"Account is locked.",
"Password has been reset by an administrator; you must change it.",
"Password change not allowed.",
"Must supply old password.",
"Invalid password syntax.",
"Password too short.",
"Password too young.",
"Password in history."
};
if ( NULL != ctrls ) {
for ( i = 0; NULL != ctrls[i]; ++i ) {
if ( 0 == strcmp( ctrls[i]->ldctl_oid,
LDAP_CONTROL_AUTH_RESPONSE )) {
s = ctrls[i]->ldctl_value.bv_val;
if ( NULL == s ) {
s = "Null";
} else if ( *s == '\0' ) {
s = "Anonymous";
}
fprintf( stderr, "%s: bound as %s\n", ldaptool_progname, s );
} /* end of LDAP_CONTROL_AUTH_RESPONSE */
if ( 0 == strcmp( ctrls[i]->ldctl_oid,
LDAP_CONTROL_PWEXPIRING )) {
/* Warn the user his passwd is to expire */
errno = 0;
pw_secs = atoi(ctrls[i]->ldctl_value.bv_val);
if ( pw_secs > 0 && errno != ERANGE ) {
if ( pw_secs > 86400 ) {
pw_days = ( pw_secs / 86400 );
pw_secs = ( pw_secs % 86400 );
}
if ( pw_secs > 3600 ) {
pw_hrs = ( pw_secs / 3600 );
pw_secs = ( pw_secs % 3600 );
}
if ( pw_secs > 60 ) {
pw_mins = ( pw_secs / 60 );
pw_secs = ( pw_secs % 60 );
}
printf("%s: Warning ! Your password will expire after ", ldaptool_progname);
if ( pw_days ) {
printf ("%d days, ", pw_days);
}
if ( pw_hrs ) {
printf ("%d hrs, ", pw_hrs);
}
if ( pw_mins ) {
printf ("%d mins, ", pw_mins);
}
printf("%d seconds.\n", pw_secs);
}
} /* end of LDAP_CONTROL_PWEXPIRING */
if ( 0 == strcmp( ctrls[i]->ldctl_oid,
LDAP_X_CONTROL_PWPOLICY_RESPONSE )) {
ber_tag_t tag1=0, tag2=0, tag3=0;
ber_int_t warnvalue=0;
int grclogins=-1, secsleft=-1;
ber_int_t errvalue=-1;
static int err2str_size = sizeof(pwpolicy_err2str)/sizeof(pwpolicy_err2str[0]);
if ( ( ber = ber_init(&(ctrls[i]->ldctl_value)) ) == NULL ) {
fprintf(stderr, "%s: not enough memory\n", ldaptool_progname);
return( LDAP_NO_MEMORY );
}
if ( ber_scanf(ber,"{t", &tag1) == LBER_ERROR ) {
/* error */
ber_free( ber, 1 );
return (ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP ));
}
switch (tag1) {
case LDAP_TAG_PWP_WARNING:
if ( ber_scanf(ber, "{ti}", &tag2, &warnvalue)
== LBER_ERROR ) {
/* error */
ber_free( ber, 1 );
return(ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP ));
}
switch (tag2) {
case LDAP_TAG_PWP_SECSLEFT:
secsleft = (int)warnvalue;
break;
case LDAP_TAG_PWP_GRCLOGINS:
grclogins = (int)warnvalue;
break;
default:
/* error */
ber_free( ber, 1 );
return(ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP ));
}
/* Now check for the error value if it's present */
if ( ber_scanf(ber, "te", &tag3, &errvalue) != LBER_ERROR ) {
if (tag3 != LDAP_TAG_PWP_ERROR) {
errvalue = -1;
}
}
break;
case LDAP_TAG_PWP_ERROR:
if ( ber_scanf(ber, "e}", &errvalue)
== LBER_ERROR ) {
/* error */
ber_free( ber, 1 );
return(ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP ));
}
break;
default : /* error */
ber_free( ber, 1 );
return(ldaptool_print_lderror( ld, msg, LDAPTOOL_CHECK4SSL_IF_APPROP ));
}
/* Now we have all the values */
if ( secsleft >= 0 ) {
fprintf(stderr, "%s: Password will expire in %d seconds\n",
ldaptool_progname, secsleft);
}
if ( grclogins >= 0 ) {
fprintf(stderr, "%s: %d grace login(s) remain\n",
ldaptool_progname, grclogins);
}
if ( errvalue >= 0 && errvalue < err2str_size ) {
fprintf(stderr, "%s: %s\n",
ldaptool_progname, pwpolicy_err2str[errvalue]);
} else if ( errvalue != -1 ) {
fprintf(stderr, "%s: %s\n",
ldaptool_progname,
"Invalid error value in password policy response control");
}
} /* end of LDAP_X_CONTROL_PWPOLICY_RESPONSE */
}
if ( freeit ) {
ldap_controls_free( ctrls );
ber_free( ber, 1 );
}
}
return( LDAP_SUCCESS );
}
/*
* if -M was passed on the command line, create and return a "Manage DSA IT"
* LDAPv3 control. If not, return NULL.
*/
LDAPControl *
ldaptool_create_manage_dsait_control( void )
{
LDAPControl *ctl;
if ( !send_manage_dsait_ctrl ) {
return( NULL );
}
if (( ctl = (LDAPControl *)calloc( 1, sizeof( LDAPControl ))) == NULL ||
( ctl->ldctl_oid = strdup( LDAP_CONTROL_MANAGEDSAIT )) == NULL ) {
perror( "calloc" );
exit( LDAP_NO_MEMORY );
}
ctl->ldctl_iscritical = 1;
return( ctl );
}
/*
* if -y "dn" was supplied on the command line, create the control
*/
LDAPControl *
ldaptool_create_proxyauth_control( LDAP *ld )
{
LDAPControl *ctl = NULL;
int rc;
if ( !proxyauth_id)
return( NULL );
if ( 2 == proxyauth_version ) {
rc = ldap_create_proxiedauth_control( ld, proxyauth_id, &ctl);
} else {
rc = ldap_create_proxyauth_control( ld, proxyauth_id, 1, &ctl);
}
if ( rc != LDAP_SUCCESS)
{
if (ctl)
ldap_control_free( ctl);
return NULL;
}
return( ctl );
}
/* Effective Rights control */
LDAPControl *
ldaptool_create_geteffectiveRights_control ( LDAP *ld, const char *authzid,
const char **attrlist)
{
LDAPControl *ctl = NULL;
int rc;
rc = ldap_create_geteffectiveRights_control( ld, authzid, attrlist, 1,
&ctl);
if ( rc != LDAP_SUCCESS)
{
if (ctl)
ldap_control_free( ctl);
return NULL;
}
return( ctl );
}
void
ldaptool_add_control_to_array( LDAPControl *ctrl, LDAPControl **array)
{
int i;
for (i=0; i< CONTROL_REQUESTS; i++)
{
if (*(array + i) == NULL)
{
*(array + i +1) = NULL;
*(array + i) = ctrl;
return ;
}
}
fprintf(stderr, "%s: failed to store request control!!!!!!\n",
ldaptool_progname);
}
/*
* Dispose of all controls in array and prepare array for reuse.
*/
void
ldaptool_reset_control_array( LDAPControl **array )
{
int i;
for ( i = 0; i < CONTROL_REQUESTS; i++ ) {
if ( array[i] != NULL ) {
ldap_control_free( array[i] );
array[i] = NULL;
}
}
}
/*
* This function calculates control value and its length. *value can
* be pointing to plain value, ":b64encoded value" or "<fileurl".
*/
static int
calculate_ctrl_value( const char *value,
char **ctrl_value, int *vlen)
{
int b64;
if (*value == ':') {
value++;
b64 = 1;
} else {
b64 = 0;
}
*ctrl_value = (char *)value;
if ( b64 ) {
if (( *vlen = ldif_base64_decode( (char *)value,
(unsigned char *)value )) < 0 ) {
fprintf( stderr,
"Unable to decode base64 control value \"%s\"\n", value);
return( -1 );
}
} else {
*vlen = (int)strlen(*ctrl_value);
}
return( 0 );
}
/*
* Parse the optarg from -J option of ldapsearch
* and within LDIFfile for ldapmodify. Take ctrl_arg
* (the whole string) and divide it into oid, criticality
* and value. This function breaks down original ctrl_arg
* with '\0' in places. Also, calculate length of valuestring.
*/
int
ldaptool_parse_ctrl_arg(char *ctrl_arg, char sep,
char **ctrl_oid, int *ctrl_criticality,
char **ctrl_value, int *vlen)
{
char *s, *p;
int strict;
/* Initialize passed variables with default values */
*ctrl_oid = *ctrl_value = NULL;
*ctrl_criticality = 0;
*vlen = 0;
strict = (sep == ' ' ? 1 : 0);
if(!(s=strchr(ctrl_arg, sep))) {
/* Possible values of ctrl_arg are
* oid[:value|::b64value|:<fileurl] within LDIF, i.e. sep=' '
* oid from command line option, i.e. sep=':'
*/
if (sep == ' ') {
if (!(s=strchr(ctrl_arg, ':'))) {
*ctrl_oid = ctrl_arg;
}
else {
/* ctrl_arg is of oid:[value|:b64value|<fileurl]
* form in the LDIF record. So, grab the oid and then
* jump to continue the parsing of ctrl_arg.
* 's' is pointing just after oid ends.
*/
*s++ = '\0';
*ctrl_oid = ctrl_arg;
return (calculate_ctrl_value( s, ctrl_value, vlen ));
}
} else {
/* oid - from command line option, i.e. sep=':' */
*ctrl_oid = ctrl_arg;
}
}
else {
/* Possible values of ctrl_arg are
* oid:criticality[:value|::b64value|:<fileurl] - command line
* oid criticality[:value|::b64value|:<fileurl] - LDIF
* And 's' is pointing just after oid ends.
*/
if (*(s+1) == '\0') {
fprintf( stderr, "missing value\n" );
return( -1 );
}
*s = '\0';
*ctrl_oid = ctrl_arg;
p = ++s;
if(!(s=strchr(p, ':'))) {
if ( (*ctrl_criticality = ldaptool_boolean_str2value(p, strict))
== -1 ) {
fprintf( stderr, "Invalid criticality value\n" );
return( -1 );
}
}
else {
if (*(s+1) == '\0') {
fprintf( stderr, "missing value\n" );
return ( -1 );
}
*s++ = '\0';
if ( (*ctrl_criticality = ldaptool_boolean_str2value(p, strict))
== -1 ) {
fprintf( stderr, "Invalid criticality value\n" );
return ( -1 );
}
return (calculate_ctrl_value( s, ctrl_value, vlen ));
}
}
return( 0 );
}
/*
* callback function for LDAP bind credentials
*/
/*ARGSUSED*/
static int
LDAP_CALL
LDAP_CALLBACK
get_rebind_credentials( LDAP *ld, char **whop, char **credp,
int *methodp, int freeit, void* arg )
{
if ( !freeit ) {
if ( binddn != NULL ) {
*whop = ldaptool_local2UTF8( binddn, "bind DN" );
}
if ( passwd != NULL ) {
if ( isk ) {
*credp = strdup( passwd );
} else {
*credp = ldaptool_local2UTF8( passwd, "password" );
}
}
*methodp = LDAP_AUTH_SIMPLE;
} else {
if ( *whop != NULL ) {
free( *whop );
}
if ( *credp != NULL ) {
free( *credp );
}
*methodp = LDAP_AUTH_NONE;
}
return( LDAP_SUCCESS );
}
/*
* return pointer to pathname to temporary directory.
* First we see if the environment variable "TEMP" is set and use it.
* Then we see if the environment variable "TMP" is set and use it.
* If this fails, we use "/tmp" on UNIX and fail on Windows.
*/
char *
ldaptool_get_tmp_dir( void )
{
char *p;
int offset;
if (( p = getenv( "TEMP" )) == NULL && ( p = getenv( "TMP" )) == NULL ) {
#ifdef _WINDOWS
fprintf( stderr, "%s: please set the TEMP environment variable.\n",
ldaptool_progname );
exit( LDAP_LOCAL_ERROR );
#else
return( "/tmp" ); /* last resort on UNIX */
#endif
}
/*
* remove trailing slash if present
*/
offset = strlen( p ) - 1;
if ( p[offset] == '/'
#ifdef _WINDOWS
|| p[offset] == '\\'
#endif
) {
if (( p = strdup( p )) == NULL ) {
perror( "strdup" );
exit( LDAP_NO_MEMORY );
}
p[offset] = '\0';
}
return( p );
}
int
ldaptool_berval_is_ascii( const struct berval *bvp )
{
unsigned long j;
int is_ascii = 1; /* optimistic */
for ( j = 0; j < bvp->bv_len; ++j ) {
if ( !isascii( bvp->bv_val[ j ] )) {
is_ascii = 0;
break;
}
}
return( is_ascii );
}
#ifdef LDAP_DEBUG_MEMORY
#define LDAPTOOL_ALLOC_FREED 0xF001
#define LDAPTOOL_ALLOC_INUSE 0xF002
static void *
ldaptool_debug_alloc( void *ptr, size_t size )
{
int *statusp;
void *systemptr;
if ( ptr == NULL ) {
systemptr = NULL;
} else {
systemptr = (void *)((char *)ptr - sizeof(int));
}
if (( statusp = (int *)realloc( systemptr, size + sizeof(int))) == NULL ) {
fprintf( stderr, "%s: realloc( 0x%x, %d) failed\n",
ldaptool_progname, systemptr, size );
return( NULL );
}
*statusp = LDAPTOOL_ALLOC_INUSE;
return( (char *)statusp + sizeof(int));
}
static void *
ldaptool_debug_realloc( void *ptr, size_t size )
{
void *p;
if ( ldaptool_dbg_lvl & LDAP_DEBUG_TRACE ) {
fprintf( stderr, "%s: => realloc( 0x%x, %d )\n",
ldaptool_progname, ptr, size );
}
p = ldaptool_debug_alloc( ptr, size );
if ( ldaptool_dbg_lvl & LDAP_DEBUG_TRACE ) {
fprintf( stderr, "%s: 0x%x <= realloc()\n", ldaptool_progname, p );
}
return( p );
}
static void *
ldaptool_debug_malloc( size_t size )
{
void *p;
if ( ldaptool_dbg_lvl & LDAP_DEBUG_TRACE ) {
fprintf( stderr, "%s: => malloc( %d)\n", ldaptool_progname, size );
}
p = ldaptool_debug_alloc( NULL, size );
if ( ldaptool_dbg_lvl & LDAP_DEBUG_TRACE ) {
fprintf( stderr, "%s: 0x%x <= malloc()\n", ldaptool_progname, p );
}
return( p );
}
static void *
ldaptool_debug_calloc( size_t nelem, size_t elsize )
{
void *p;
if ( ldaptool_dbg_lvl & LDAP_DEBUG_TRACE ) {
fprintf( stderr, "%s: => calloc( %d, %d )\n",
ldaptool_progname, nelem, elsize );
}
if (( p = ldaptool_debug_alloc( NULL, nelem * elsize )) != NULL ) {
memset( p, 0, nelem * elsize );
}
if ( ldaptool_dbg_lvl & LDAP_DEBUG_TRACE ) {
fprintf( stderr, "%s: 0x%x <= calloc()\n", ldaptool_progname, p );
}
return( p );
}
static void
ldaptool_debug_free( void *ptr )
{
int *statusp = (int *)((char *)ptr - sizeof(int));
if ( ldaptool_dbg_lvl & LDAP_DEBUG_TRACE ) {
fprintf( stderr, "%s: => free( 0x%x )\n", ldaptool_progname, ptr );
}
if ( ptr == NULL ) {
fprintf( stderr, "%s: bad free( 0x0 ) attempted (NULL pointer)\n",
ldaptool_progname );
} else if ( *statusp != LDAPTOOL_ALLOC_INUSE ) {
fprintf( stderr, "%s: bad free( 0x%x ) attempted"
" (block not in use; status is %d)\n",
ldaptool_progname, ptr, *statusp );
} else {
*statusp = LDAPTOOL_ALLOC_FREED;
free( statusp );
}
}
#endif /* LDAP_DEBUG_MEMORY */
#if defined(NET_SSL)
#ifdef LDAP_TOOL_PKCS11
static
char *
buildTokenCertName( const char *tokenName, const char *certName)
{
int tokenlen = strlen(tokenName);
int len = tokenlen + strlen(certName) +2;
char *result;
if (( result = malloc( len )) != NULL) {
strcpy(result, tokenName);
*(result+tokenlen) = ':';
++tokenlen;
strcpy(result+tokenlen, certName);
} else {
perror("malloc");
exit( LDAP_NO_MEMORY );
}
return result;
}
/*ARGSUSED*/
static int
ldaptool_getcertpath( void *context, char **certlocp )
{
*certlocp = ssl_certdbpath;
if ( ldaptool_verbose ) {
if (ssl_certdbpath)
{
printf("ldaptool_getcertpath -- %s\n", ssl_certdbpath );
}
else
{
printf("ldaptool_getcertpath -- (null)\n");
}
}
return LDAP_SUCCESS;
}
/*ARGSUSED*/
int
ldaptool_getcertname( void *context, char **certnamep )
{
*certnamep = ssl_certname;
if ( ldaptool_verbose ) {
if (ssl_certname)
{
printf("ldaptool_getcertname -- %s\n", *certnamep);
}
else
{
printf("ldaptool_getcertname -- (null)\n");
}
}
return LDAP_SUCCESS;
}
/*ARGSUSED*/
int
ldaptool_getkeypath(void *context, char **keylocp )
{
*keylocp = ssl_keydbpath;
if ( ldaptool_verbose ) {
if (ssl_keydbpath)
{
printf("ldaptool_getkeypath -- %s\n",*keylocp);
}
else
{
printf("ldaptool_getkeypath -- (null)\n");
}
}
return LDAP_SUCCESS;
}
/*ARGSUSED*/
int
ldaptool_gettokenname( void *context, char **tokennamep )
{
*tokennamep = pkcs_token;
if ( ldaptool_verbose ) {
if (pkcs_token)
{
printf("ldaptool_gettokenname -- %s\n",*tokennamep);
}
else
{
printf("ldaptool_gettokenname -- (null)\n");
}
}
return LDAP_SUCCESS;
}
/*ARGSUSED*/
int
ldaptool_gettokenpin( void *context, const char *tokennamep, char **tokenpinp)
{
#if 0
char *localtoken;
#endif
/* XXXceb this stuff is removed for the time being.
* This function should return the pin from ssl_password
*/
*tokenpinp = ssl_passwd;
return LDAP_SUCCESS;
#if 0
ldaptool_gettokenname( NULL, &localtoken);
if (strcmp( localtoken, tokennamep))
*tokenpinp = pkcs_pin;
else
*tokenpinp = NULL;
if ( ldaptool_verbose ) {
if (pkcs_pin)
{
printf("ldaptool_getokenpin --%s\n", tokenpinp);
}
else
{
printf("ldaptool_getokenpin -- (null)\n");
}
}
return LDAP_SUCCESS;
#endif
}
/*ARGSUSED*/
int
ldaptool_getmodpath( void *context, char **modulep )
{
*modulep = ssl_secmodpath;
if ( ldaptool_verbose ) {
if (ssl_secmodpath)
{
printf("ldaptool_getmodpath -- %s\n", *modulep);
}
else
{
printf("ldaptool_getmodpath -- (null)\n");
}
}
return LDAP_SUCCESS;
}
/*ARGSUSED*/
int
ldaptool_getdonglefilename( void *context, char **filename )
{
*filename = ssl_donglefile;
if ( ldaptool_verbose ) {
if (ssl_donglefile)
{
printf("ldaptool_getdonglefilename -- %s\n", *filename);
}
else
{
printf("ldaptool_getdonglefilename -- (null)\n");
}
}
return LDAP_SUCCESS;
}
static void
ldaptool_setcallbacks( struct ldapssl_pkcs_fns *pfns)
{
pfns->pkcs_getcertpath = (int (*)(void *, char **))ldaptool_getcertpath;
pfns->pkcs_getcertname = (int (*)(void *, char **))ldaptool_getcertname;
pfns->pkcs_getkeypath = (int (*)(void *, char **)) ldaptool_getkeypath;
pfns->pkcs_getmodpath = (int (*)(void *, char **)) ldaptool_getmodpath;
pfns->pkcs_getpin = (int (*)(void *, const char*, char **)) ldaptool_gettokenpin;
pfns->pkcs_gettokenname = (int (*)(void *, char **)) ldaptool_gettokenname;
pfns->pkcs_getdonglefilename = (int (*)(void *, char **)) ldaptool_getdonglefilename;
pfns->local_structure_id=PKCS_STRUCTURE_ID;
}
#endif /* LDAP_TOOL_PKCS11 */
#endif /* NET_SSL */
#ifdef HAVE_SASL_OPTIONS
/*
* Function checks for valid args, returns an error if not found
* and sets SASL params from command line
*/
static int
saslSetParam(char *saslarg)
{
char *attr = NULL;
int argnamelen;
attr = strchr(saslarg, '=');
if (attr == NULL) {
fprintf( stderr, "Didn't find \"=\" character in %s\n", saslarg);
return (-1);
}
argnamelen = attr - saslarg;
attr++;
if (!strncasecmp(saslarg, "secProp", argnamelen)) {
if ( sasl_secprops != NULL ) {
fprintf( stderr, "secProp previously specified\n");
return (-1);
}
if (( sasl_secprops = strdup(attr)) == NULL ) {
perror ("malloc");
exit (LDAP_NO_MEMORY);
}
} else if (!strncasecmp(saslarg, "realm", argnamelen)) {
if ( sasl_realm != NULL ) {
fprintf( stderr, "Realm previously specified\n");
return (-1);
}
if (( sasl_realm = strdup(attr)) == NULL ) {
perror ("malloc");
exit (LDAP_NO_MEMORY);
}
} else if (!strncasecmp(saslarg, "authzid", argnamelen)) {
if (sasl_username != NULL) {
fprintf( stderr, "Authorization name previously specified\n");
return (-1);
}
if (( sasl_username = strdup(attr)) == NULL ) {
perror ("malloc");
exit (LDAP_NO_MEMORY);
}
} else if (!strncasecmp(saslarg, "authid", argnamelen)) {
if ( sasl_authid != NULL ) {
fprintf( stderr, "Authentication name previously specified\n");
return (-1);
}
if (( sasl_authid = strdup(attr)) == NULL) {
perror ("malloc");
exit (LDAP_NO_MEMORY);
}
} else if (!strncasecmp(saslarg, "mech", argnamelen)) {
if ( sasl_mech != NULL ) {
fprintf( stderr, "Mech previously specified\n");
return (-1);
}
if (( sasl_mech = strdup(attr)) == NULL) {
perror ("malloc");
exit (LDAP_NO_MEMORY);
}
} else if (!strncasecmp(saslarg, "flags", argnamelen)) {
int len = strlen(attr);
if (len && !strncasecmp(attr, "automatic", len)) {
sasl_flags = LDAP_SASL_AUTOMATIC;
} else if (len && !strncasecmp(attr, "interactive", len)) {
sasl_flags = LDAP_SASL_INTERACTIVE;
} else if (len && !strncasecmp(attr, "quiet", len)) {
sasl_flags = LDAP_SASL_QUIET;
} else {
fprintf(stderr, "Invalid SASL flags value [%s]: must be one of "
"automatic, interactive, or quiet\n", attr);
return (-1);
}
} else {
fprintf (stderr, "Invalid attribute name %s\n", saslarg);
return (-1);
}
return 0;
}
#endif /* HAVE_SASL_OPTIONS */
/*
* Implements getpass like functionality for supported platforms.
*
* It is the callers responsibility to zero out the memory used
* to store the password and to free it when it's finished with
* it.
*/
char *
ldaptool_getpass ( const char *prompt )
{
char *pass;
#if defined(_WIN32)
char pbuf[257];
fputs(prompt,stdout);
fflush(stdout);
if (fgets(pbuf,256,stdin) == NULL) {
pass = NULL;
} else {
char *tmp;
tmp = strchr(pbuf,'\n');
if (tmp) *tmp = '\0';
tmp = strchr(pbuf,'\r');
if (tmp) *tmp = '\0';
pass = strdup(pbuf);
}
#else
#if defined(SOLARIS)
/* 256 characters on Solaris */
pass = (char *)getpassphrase(prompt);
#else
#if defined(HPUX)
/* HP-UX has deprecated their password asking function, so we have
* to resort to doing it the hard way . . . */
char pbuf[257];
struct termios termstat;
tcflag_t savestat;
/* Only perform terminal manipulation if stdin is a terminal */
int havetty = isatty(fileno(stdin));
fputs(prompt, stdout);
fflush(stdout);
if(havetty) {
if(tcgetattr(fileno(stdin), &termstat) < 0) {
perror( "tcgetattr" );
exit( LDAP_LOCAL_ERROR );
}
savestat = termstat.c_lflag;
termstat.c_lflag &= ~(ECHO | ECHOE | ECHOK);
termstat.c_lflag |= (ICANON | ECHONL);
if(tcsetattr(fileno(stdin), TCSANOW, &termstat) < 0) {
perror( "tcsetattr" );
exit( LDAP_LOCAL_ERROR );
}
}
if (fgets(pbuf,256,stdin) == NULL) {
pass = NULL;
} else {
char *tmp;
pass = NULL;
tmp = strchr(pbuf,'\n');
if (tmp)
*tmp = '\0';
pass = strdup(pbuf);
}
if(havetty) {
termstat.c_lflag = savestat;
if(tcsetattr(fileno(stdin), TCSANOW, &termstat) < 0) {
perror( "tcgetattr" );
exit( LDAP_LOCAL_ERROR );
}
}
#else
/* limited to 16 chars on Tru64, 32 on AIX */
pass = (char *)getpass(prompt);
#endif
#endif
#endif
return pass;
}
/*
* ldaptool_read_password
*
* Reads the password in from a file.
*/
char *
ldaptool_read_password( FILE *mod_password_fp )
{
int increment = 0;
int c, index;
char *mod_passwd = NULL;
/* allocate initial block of memory */
if ((mod_passwd = (char *)malloc(BUFSIZ)) == NULL) {
fprintf( stderr, "%s: not enough memory to read password from file\n", ldaptool_progname );
exit( LDAP_NO_MEMORY );
}
increment++;
index = 0;
while ((c = fgetc( mod_password_fp )) != '\n' && c != EOF) {
/* check if we will overflow the buffer */
if ((c != EOF) && (index == ((increment * BUFSIZ) -1))) {
/* if we did, add another BUFSIZ worth of bytes */
if ((mod_passwd = (char *)
realloc(mod_passwd, (increment + 1) * BUFSIZ)) == NULL) {
fprintf( stderr, "%s: not enough memory to read password from file\n", ldaptool_progname );
exit( LDAP_NO_MEMORY );
}
increment++;
}
mod_passwd[index++] = c;
}
mod_passwd[index] = '\0';
return( (char *)mod_passwd );
}
int
ldaptool_boolean_str2value ( const char *ptr, int strict )
{
if (strict) {
if ( !(strcasecmp(ptr, "true"))) {
return 1;
}
else if ( !(strcasecmp(ptr, "false"))) {
return 0;
}
else {
return (-1);
}
}
else {
if ( !(strcasecmp(ptr, "true")) ||
!(strcasecmp(ptr, "t")) ||
!(strcmp(ptr, "1")) ) {
return (1);
}
else if ( !(strcasecmp(ptr, "false")) ||
!(strcasecmp(ptr, "f")) ||
!(strcmp(ptr, "0")) ) {
return (0);
}
else {
return (-1);
}
}
}
FILE *
ldaptool_open_file(const char *filename, const char *mode)
{
#ifdef _LARGEFILE64_SOURCE
return fopen64(filename, mode);
#else
return fopen(filename, mode);
#endif
}
/*
* check for and report input or output error on named stream
* return ldap_err or ferror() (ldap_err takes precedence)
* assume that fflush() already has been called if needed.
* don't want to fflush() an input stream.
*/
int
ldaptool_check_ferror(FILE * stream, const int ldap_err, const char *msg)
{
int err = 0;
if ((err = ferror(stream)) != 0 ) {
fprintf(stderr, "%s: ERROR: ", ldaptool_progname);
perror(msg);
err = LDAP_LOCAL_ERROR;
}
/*
* reporting LDAP_ error code is more important than
* reporting errors from ferror()
*/
if (LDAP_SUCCESS == ldap_err) {
return(err);
}
else {
return(ldap_err);
}
}
|