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
|
2008-08-14 Love Hornquist Astrand <lha@10a140laptop.local>
* krb5/accept_sec_context.c: If there is a initiator subkey, copy
that to acceptor subkey to match windows behavior. From Metze.
2008-08-02 Love Hörnquist Åstrand <lha@h5l.org>
* ntlm/init_sec_context.c: Catch error
* krb5/inquire_sec_context_by_oid.c: Catch store failure.
* mech/gss_canonicalize_name.c: Not init m, return never
used (overwritten later).
2008-07-25 Love Hörnquist Åstrand <lha@kth.se>
* ntlm/init_sec_context.c: Use krb5_cc_get_config.
2008-07-25 Love Hörnquist Åstrand <lha@kth.se>
* krb5/init_sec_context.c: Match the orignal patch I got from
metze, seems that DCE-STYLE is even more weirer then what I though
when I merged the patch.
2008-06-02 Love Hörnquist Åstrand <lha@kth.se>
* krb5/init_sec_context.c: Don't add asn1 wrapping to token when
using DCE_STYLE. Patch from Stefan Metzmacher.
2008-05-27 Love Hörnquist Åstrand <lha@kth.se>
* ntlm/init_sec_context.c: use krb5_get_error_message
2008-05-05 Love Hörnquist Åstrand <lha@kth.se>
* spnego/spnego_locl.h: Add back "mech/utils.h", its needed for
oid/buffer functions.
2008-05-02 Love Hörnquist Åstrand <lha@it.su.se>
* spnego: Changes from doug barton to make spnego indepedant of
the heimdal version of the plugin system.
2008-04-27 Love Hörnquist Åstrand <lha@it.su.se>
* krb5: use DES_set_key_unchecked()
2008-04-17 Love Hörnquist Åstrand <lha@it.su.se>
* add __declspec() for windows.
2008-04-15 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/import_sec_context.c: Use tmp to read ac->flags value to
avoid warning.
2008-04-07 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_mech_switch.c: Use unsigned where appropriate.
2008-03-14 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c: Add test for gsskrb5_register_acceptor_identity.
2008-03-09 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/init_sec_context.c (init_auth): use right variable to
detect if we want to free or not.
2008-02-26 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: add missing \
* Makefile.am: reshuffle depenencies
* Add flag to krb5 to not add GSS-API INT|CONF to the negotiation
2008-02-21 Love Hörnquist Åstrand <lha@it.su.se>
* make the SPNEGO mech store the error itself instead, works for
everything except other stackable mechs
2008-02-18 Love Hörnquist Åstrand <lha@it.su.se>
* spnego/init_sec_context.c (spnego_reply): if the reply token was
of length 0, make it the same as no token. Pointed out by Zeqing
Xia.
* krb5/acquire_cred.c (acquire_initiator_cred): handle the
credential cache better, use destroy/close when appriate and for
all cases. Thanks to Michael Allen for point out the memory-leak
that I also fixed.
2008-02-03 Love Hörnquist Åstrand <lha@it.su.se>
* spnego/accept_sec_context.c: Make error reporting somewhat more
correct for SPNEGO.
2008-01-27 Love Hörnquist Åstrand <lha@it.su.se>
* test_common.c: Improve the error message.
2008-01-24 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/accept_sec_context.c: Avoid free-ing type1 message before
its allocated.
2008-01-13 Love Hörnquist Åstrand <lha@it.su.se>
* test_ntlm.c: Test source name (and make the acceptor in ntlm gss
mech useful).
2007-12-30 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/init_sec_context.c: Don't confuse target name and source
name, make regressiont tests pass again.
2007-12-29 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm: clean up name handling
2007-12-04 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/init_sec_context.c: Use credential if it was passed in.
* ntlm/acquire_cred.c: Check if there is initial creds with
_gss_ntlm_get_user_cred().
* ntlm/init_sec_context.c: Add _gss_ntlm_get_user_info() that
return the user info so it can be used by external modules.
* ntlm/inquire_cred.c: use the right error code.
* ntlm/inquire_cred.c: Return GSS_C_NO_CREDENTIAL if there is no
credential, ntlm have (not yet) a default credential.
* mech/gss_release_oid_set.c: Avoid trying to deref NULL, from
Phil Fisher.
2007-12-03 Love Hörnquist Åstrand <lha@it.su.se>
* test_acquire_cred.c: Always try to fetch cred (even with
GSS_C_NO_NAME).
2007-08-09 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_krb5.c: Readd gss_krb5_get_tkt_flags.
2007-08-08 Love Hörnquist Åstrand <lha@it.su.se>
* spnego/compat.c (_gss_spnego_internal_delete_sec_context):
release ctx->target_name too From Rafal Malinowski.
2007-07-26 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_mech_switch.c: Don't try to do dlopen if system doesn't
have dlopen. From Rune of Chalmers.
2007-07-10 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_duplicate_name.c: New signature of _gss_find_mn.
* mech/gss_init_sec_context.c: New signature of _gss_find_mn.
* mech/gss_acquire_cred.c: New signature of _gss_find_mn.
* mech/name.h: New signature of _gss_find_mn.
* mech/gss_canonicalize_name.c: New signature of _gss_find_mn.
* mech/gss_compare_name.c: New signature of _gss_find_mn.
* mech/gss_add_cred.c: New signature of _gss_find_mn.
* mech/gss_names.c (_gss_find_mn): Return an error code for
caller.
* spnego/accept_sec_context.c: remove checks that are done by the
previous function.
* Makefile.am: New library version.
2007-07-04 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_oid_to_str.c: Refuse to print GSS_C_NULL_OID, from
Rafal Malinowski.
* spnego/spnego.asn1: Indent and make NegTokenInit and
NegTokenResp extendable.
2007-06-21 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/inquire_cred.c: Implement _gss_ntlm_inquire_cred.
* mech/gss_display_status.c: Provide message for GSS_S_COMPLETE.
* mech/context.c: If the canned string is "", its no use to the
user, make it fall back to the default error string.
2007-06-20 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_display_name.c (gss_display_name): no name ->
fail. From Rafal Malinswski.
* spnego/accept_sec_context.c: Wrap name in a spnego_name instead
of just a copy of the underlaying object. From Rafal Malinswski.
* spnego/accept_sec_context.c: Handle underlaying mech not
returning mn.
* mech/gss_accept_sec_context.c: Handle underlaying mech not
returning mn.
* spnego/accept_sec_context.c: Make sure src_name is always set to
GSS_C_NO_NAME when returning.
* krb5/acquire_cred.c (acquire_acceptor_cred): don't claim
everything is well on failure. From Phil Fisher.
* mech/gss_duplicate_name.c: catch error (and ignore it)
* ntlm/init_sec_context.c: Use heim_ntlm_calculate_ntlm2_sess.
* mech/gss_accept_sec_context.c: Only wrap the delegated cred if
we got a delegated mech cred. From Rafal Malinowski.
* spnego/accept_sec_context.c: Only wrap the delegated cred if we
are going to return it to the consumer. From Rafal Malinowski.
* spnego/accept_sec_context.c: Fixed memory leak pointed out by
Rafal Malinowski, also while here moved to use NegotiationToken
for decoding.
2007-06-18 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/prf.c (_gsskrb5_pseudo_random): add missing break.
* krb5/release_name.c: Set *minor_status unconditionallty, its
done later anyway.
* spnego/accept_sec_context.c: Init get_mic to 0.
* mech/gss_set_cred_option.c: Free memory in failure case, found
by beam.
* mech/gss_inquire_context.c: Handle mech_type being NULL.
* mech/gss_inquire_cred_by_mech.c: Handle cred_name being NULL.
* mech/gss_krb5.c: Free memory in error case, found by beam.
2007-06-12 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/inquire_context.c: Use ctx->gssflags for flags.
* krb5/display_name.c: Use KRB5_PRINCIPAL_UNPARSE_DISPLAY, this is
not ment for machine consumption.
2007-06-09 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/digest.c (kdc_alloc): free memory on failure, pointed out
by Rafal Malinowski.
* ntlm/digest.c (kdc_destroy): free context when done, pointed out
by Rafal Malinowski.
* spnego/context_stubs.c (_gss_spnego_display_name): if input_name
is null, fail. From Rafal Malinowski.
2007-06-04 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/digest.c: Free memory when done.
2007-06-02 Love Hörnquist Åstrand <lha@it.su.se>
* test_ntlm.c: Test both with and without keyex.
* ntlm/digest.c: If we didn't set session key, don't expect one
back.
* test_ntlm.c: Set keyex flag and calculate session key.
2007-05-31 Love Hörnquist Åstrand <lha@it.su.se>
* spnego/accept_sec_context.c: Use the return value before is
overwritten by later calls. From Rafal Malinowski
* krb5/release_cred.c: Give an minor_status argument to
gss_release_oid_set. From Rafal Malinowski
2007-05-30 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/accept_sec_context.c: Catch errors and return the up the
stack.
* test_kcred.c: more testing of lifetimes
2007-05-17 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: Drop the gss oid_set function for the krb5 mech,
use the mech glue versions instead. Pointed out by Rafal
Malinowski.
* krb5: Use gss oid_set functions from mechglue
2007-05-14 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/accept_sec_context.c: Set session key only if we are
returned a session key. Found by David Love.
2007-05-13 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/prf.c: switched MIN to min to make compile on solaris,
pointed out by David Love.
2007-05-09 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/inquire_cred_by_mech.c: Fill in all of the variables if
they are passed in. Pointed out by Phil Fisher.
2007-05-08 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/inquire_cred.c: Fix copy and paste error, bug spotted by
from Phil Fisher.
* mech: dont keep track of gc_usage, just figure it out at
gss_inquire_cred() time
* mech/gss_mech_switch.c (add_builtin): ok for
__gss_mech_initialize() to return NULL
* test_kcred.c: more correct tests
* spnego/cred_stubs.c (gss_inquire_cred*): wrap the name with a
spnego_name.
* ntlm/inquire_cred.c: make ntlm gss_inquire_cred fail for now,
need to find default cred and friends.
* krb5/inquire_cred_by_mech.c: reimplement
2007-05-07 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/acquire_cred.c: drop unused variable.
* ntlm/acquire_cred.c: Reimplement.
* Makefile.am: add ntlm/digest.c
* ntlm: split out backend ntlm server processing
2007-04-24 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/delete_sec_context.c (_gss_ntlm_delete_sec_context): free
credcache when done
2007-04-22 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/init_sec_context.c: ntlm-key credential entry is prefix with @
* ntlm/init_sec_context.c (get_user_ccache): pick up the ntlm
creds from the krb5 credential cache.
2007-04-21 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/delete_sec_context.c: free the key stored in the context
* ntlm/ntlm.h: switch password for a key
* test_oid.c: Switch oid to one that is exported.
2007-04-20 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/init_sec_context.c: move where hash is calculated to make
it easier to add ccache support.
* Makefile.am: Add version-script.map to EXTRA_DIST.
2007-04-19 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: Unconfuse newer versions of automake that doesn't
know the diffrence between depenences and setting variables. foo:
vs foo=.
* test_ntlm.c: delete sec context when done.
* version-script.map: export more symbols.
* Makefile.am: add version script if ld supports it
* version-script.map: add version script if ld supports it
2007-04-18 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: test_acquire_cred need test_common.[ch]
* test_acquire_cred.c: add more test options.
* krb5/external.c: add GSS_KRB5_CCACHE_NAME_X
* gssapi/gssapi_krb5.h: add GSS_KRB5_CCACHE_NAME_X
* krb5/set_sec_context_option.c: refactor code, implement
GSS_KRB5_CCACHE_NAME_X
* mech/gss_krb5.c: reimplement gss_krb5_ccache_name
2007-04-17 Love Hörnquist Åstrand <lha@it.su.se>
* spnego/cred_stubs.c: Need to import spnego name before we can
use it as a gss_name_t.
* test_acquire_cred.c: use this test as part of the regression
suite.
* mech/gss_acquire_cred.c (gss_acquire_cred): dont init
cred->gc_mc every time in the loop.
2007-04-15 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: add test_common.h
2007-02-16 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: Add link for
gsskrb5_register_acceptor_identity.
2007-02-08 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/copy_ccache.c: Try to leak less memory in the failure case.
2007-01-31 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_display_status.c: Use right printf formater.
* test_*.[ch]: split out the error printing function and try to
return better errors
2007-01-30 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/init_sec_context.c: revert 1.75: (init_auth): only turn on
GSS_C_CONF_FLAG and GSS_C_INT_FLAG if the caller requseted it.
This is because Kerberos always support INT|CONF, matches behavior
with MS and MIT. The creates problems for the GSS-SPNEGO mech.
2007-01-24 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/prf.c: constrain desired_output_len
* krb5/external.c (krb5_mech): add _gsskrb5_pseudo_random
* mech/gss_pseudo_random.c: Catch error from underlaying mech on
failure.
* Makefile.am: Add krb5/prf.c
* krb5/prf.c: gss_pseudo_random for krb5
* test_context.c: Checks for gss_pseudo_random.
* krb5/gkrb5_err.et: add KG_INPUT_TOO_LONG
* Makefile.am: Add mech/gss_pseudo_random.c
* gssapi/gssapi.h: try to load pseudo_random
* mech/gss_mech_switch.c: try to load pseudo_random
* mech/gss_pseudo_random.c: Add gss_pseudo_random.
* gssapi_mech.h: Add hook for gm_pseudo_random.
2007-01-17 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c: Don't assume bufer from gss_display_status is
ok.
* mech/gss_wrap_size_limit.c: Reset out variables.
* mech/gss_wrap.c: Reset out variables.
* mech/gss_verify_mic.c: Reset out variables.
* mech/gss_utils.c: Reset out variables.
* mech/gss_release_oid_set.c: Reset out variables.
* mech/gss_release_cred.c: Reset out variables.
* mech/gss_release_buffer.c: Reset variables.
* mech/gss_oid_to_str.c: Reset out variables.
* mech/gss_inquire_sec_context_by_oid.c: Fix reset out variables.
* mech/gss_mech_switch.c: Reset out variables.
* mech/gss_inquire_sec_context_by_oid.c: Reset out variables.
* mech/gss_inquire_names_for_mech.c: Reset out variables.
* mech/gss_inquire_cred_by_oid.c: Reset out variables.
* mech/gss_inquire_cred_by_oid.c: Reset out variables.
* mech/gss_inquire_cred_by_mech.c: Reset out variables.
* mech/gss_inquire_cred.c: Reset out variables, fix memory leak.
* mech/gss_inquire_context.c: Reset out variables.
* mech/gss_init_sec_context.c: Zero out outbuffer on failure.
* mech/gss_import_name.c: Reset out variables.
* mech/gss_import_name.c: Reset out variables.
* mech/gss_get_mic.c: Reset out variables.
* mech/gss_export_name.c: Reset out variables.
* mech/gss_encapsulate_token.c: Reset out variables.
* mech/gss_duplicate_oid.c: Reset out variables.
* mech/gss_duplicate_oid.c: Reset out variables.
* mech/gss_duplicate_name.c: Reset out variables.
* mech/gss_display_status.c: Reset out variables.
* mech/gss_display_name.c: Reset out variables.
* mech/gss_delete_sec_context.c: Reset out variables using propper
macros.
* mech/gss_decapsulate_token.c: Reset out variables using propper
macros.
* mech/gss_add_cred.c: Reset out variables.
* mech/gss_acquire_cred.c: Reset out variables.
* mech/gss_accept_sec_context.c: Reset out variables using propper
macros.
* mech/gss_init_sec_context.c: Reset out variables.
* mech/mech_locl.h (_mg_buffer_zero): new macro that zaps a
gss_buffer_t
2007-01-16 Love Hörnquist Åstrand <lha@it.su.se>
* mech: sprinkel _gss_mg_error
* mech/gss_display_status.c (gss_display_status): use
_gss_mg_get_error to fetch the error from underlaying mech, if it
failes, let do the regular dance for GSS-CODE version and a
generic print-the-error code for MECH-CODE.
* mech/gss_oid_to_str.c: Don't include the NUL in the length of
the string.
* mech/context.h: Protoypes for _gss_mg_.
* mech/context.c: Glue to catch the error from the lower gss-api
layer and save that for later so gss_display_status() can show the
error.
* gss.c: Detect NTLM.
2007-01-11 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_accept_sec_context.c: spelling
2007-01-04 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: Include build (private) prototypes header files.
* Makefile.am (ntlmsrc): add ntlm/ntlm-private.h
2006-12-28 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/accept_sec_context.c: Pass signseal argument to
_gss_ntlm_set_key.
* ntlm/init_sec_context.c: Pass signseal argument to
_gss_ntlm_set_key.
* ntlm/crypto.c (_gss_ntlm_set_key): add signseal argument
* test_ntlm.c: add ntlmv2 test
* ntlm/ntlm.h: break out struct ntlmv2_key;
* ntlm/crypto.c (_gss_ntlm_set_key): set ntlm v2 keys.
* ntlm/accept_sec_context.c: Set dummy ntlmv2 keys and Check TI.
* ntlm/ntlm.h: NTLMv2 keys.
* ntlm/crypto.c: NTLMv2 sign and verify.
2006-12-20 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/accept_sec_context.c: Don't send targetinfo now.
* ntlm/init_sec_context.c: Build ntlmv2 answer buffer.
* ntlm/init_sec_context.c: Leak less memory.
* ntlm/init_sec_context.c: Announce that we support key exchange.
* ntlm/init_sec_context.c: Add NTLM_NEG_NTLM2_SESSION, NTLMv2
session security (disable because missing sign and seal).
2006-12-19 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/accept_sec_context.c: split RC4 send and recv keystreams
* ntlm/init_sec_context.c: split RC4 send and recv keystreams
* ntlm/ntlm.h: split RC4 send and recv keystreams
* ntlm/crypto.c: Implement SEAL.
* ntlm/crypto.c: move gss_wrap/gss_unwrap here
* test_context.c: request INT and CONF from the gss layer, test
get and verify MIC.
* ntlm/ntlm.h: add crypto bits.
* ntlm/accept_sec_context.c: Save session master key.
* Makefile.am: Move get and verify mic to the same file (crypto.c)
since they share code.
* ntlm/crypto.c: Move get and verify mic to the same file since
they share code, implement NTLM v1 and dummy signatures.
* ntlm/init_sec_context.c: pass on GSS_C_CONF_FLAG and
GSS_C_INTEG_FLAG, save the session master key
* spnego/accept_sec_context.c: try using gss_accept_sec_context()
on the opportunistic token instead of guessing the acceptor name
and do gss_acquire_cred, this make SPNEGO work like before.
2006-12-18 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/init_sec_context.c: Calculate the NTLM version 1 "master"
key.
* spnego/accept_sec_context.c: Resurect negHints for the acceptor
sends first packet.
* Makefile.am: Add "windows" versions of the NegTokenInitWin and
friends.
* test_context.c: add --wrapunwrap flag
* spnego/compat.c: move _gss_spnego_indicate_mechtypelist() to
compat.c, use the sequence types of MechTypeList, make
add_mech_type() static.
* spnego/accept_sec_context.c: move
_gss_spnego_indicate_mechtypelist() to compat.c
* Makefile.am: Generate sequence code for MechTypeList
* spnego: check that the generated acceptor mechlist is acceptable too
* spnego/init_sec_context.c: Abstract out the initiator filter
function, it will be needed for the acceptor too.
* spnego/accept_sec_context.c: Abstract out the initiator filter
function, it will be needed for the acceptor too. Remove negHints.
* test_context.c: allow asserting return mech
* ntlm/accept_sec_context.c: add _gss_ntlm_allocate_ctx
* ntlm/acquire_cred.c: Check that the KDC seem to there and
answering us, we can't do better then that wen checking if we will
accept the credential.
* ntlm/get_mic.c: return GSS_S_UNAVAILABLE
* mech/utils.h: add _gss_free_oid, reverse of _gss_copy_oid
* mech/gss_utils.c: add _gss_free_oid, reverse of _gss_copy_oid
* spnego/spnego.asn1: Its very sad, but NegHints its are not part
of the NegTokenInit, this makes SPNEGO acceptor life a lot harder.
* spnego: try harder to handle names better. handle missing
acceptor and initator creds better (ie dont propose/accept mech
that there are no credentials for) split NegTokenInit and
NegTokenResp in acceptor
2006-12-16 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/import_name.c: Allocate the buffer from the right length.
2006-12-15 Love Hörnquist Åstrand <lha@it.su.se>
* ntlm/init_sec_context.c (init_sec_context): Tell the other side
what domain we think we are talking to.
* ntlm/delete_sec_context.c: free username and password
* ntlm/release_name.c (_gss_ntlm_release_name): free name.
* ntlm/import_name.c (_gss_ntlm_import_name): add support for
GSS_C_NT_HOSTBASED_SERVICE names
* ntlm/ntlm.h: Add ntlm_name.
* test_context.c: allow testing of ntlm.
* gssapi_mech.h: add __gss_ntlm_initialize
* ntlm/accept_sec_context.c (handle_type3): verify that the kdc
approved of the ntlm exchange too
* mech/gss_mech_switch.c: Add the builtin ntlm mech
* test_ntlm.c: NTLM test app.
* mech/gss_accept_sec_context.c: Add detection of NTLMSSP.
* gssapi/gssapi.h: add ntlm mech oid
* ntlm/external.c: Switch OID to the ms ntlmssp oid
* Makefile.am: Add ntlm gss-api module.
* ntlm/accept_sec_context.c: Catch more error errors.
* ntlm/accept_sec_context.c: Check after a credential to use.
2006-12-14 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/set_sec_context_option.c (GSS_KRB5_SET_DEFAULT_REALM_X):
don't fail on success. Bug report from Stefan Metzmacher.
2006-12-13 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/init_sec_context.c (init_auth): only turn on
GSS_C_CONF_FLAG and GSS_C_INT_FLAG if the caller requseted it.
From Stefan Metzmacher.
2006-12-11 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am (libgssapi_la_OBJECTS): depends on gssapi_asn1.h
spnego_asn1.h.
2006-11-20 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/acquire_cred.c: Make krb5_get_init_creds_opt_free take a
context argument.
2006-11-16 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c: Test that token keys are the same, return
actual_mech.
2006-11-15 Love Hörnquist Åstrand <lha@it.su.se>
* spnego/spnego_locl.h: Make bitfields unsigned, add maybe_open.
* spnego/accept_sec_context.c: Use ASN.1 encoder functions to
encode CHOICE structure now that we can handle it.
* spnego/init_sec_context.c: Use ASN.1 encoder functions to encode
CHOICE structure now that we can handle it.
* spnego/accept_sec_context.c (_gss_spnego_accept_sec_context):
send back ad accept_completed when the security context is ->open,
w/o this the client doesn't know that the server have completed
the transaction.
* test_context.c: Add delegate flag and check that the delegated
cred works.
* spnego/init_sec_context.c: Keep track of the opportunistic token
in the inital message, it might be a complete gss-api context, in
that case we'll get back accept_completed without any token. With
this change, krb5 w/o mutual authentication works.
* spnego/accept_sec_context.c: Use ASN.1 encoder functions to
encode CHOICE structure now that we can handle it.
* spnego/accept_sec_context.c: Filter out SPNEGO from the out
supported mechs list and make sure we don't select that for the
preferred mechamism.
2006-11-14 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_init_sec_context.c (_gss_mech_cred_find): break out the
cred finding to its own function
* krb5/wrap.c: Better error strings, from Andrew Bartlet.
2006-11-13 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c: Create our own krb5_context.
* krb5: Switch from using a specific error message context in the
TLS to have a whole krb5_context in TLS. This have some
interestion side-effekts for the configruration setting options
since they operate on per-thread basis now.
* mech/gss_set_cred_option.c: When calling ->gm_set_cred_option
and checking for success, use GSS_S_COMPLETE. From Andrew Bartlet.
2006-11-12 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: Help solaris make even more.
* Makefile.am: Help solaris make.
2006-11-09 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: remove include $(srcdir)/Makefile-digest.am for now
* mech/gss_accept_sec_context.c: Try better guessing what is mech
we are going to select by looking harder at the input_token, idea
from Luke Howard's mechglue branch.
* Makefile.am: libgssapi_la_OBJECTS: add depency on gkrb5_err.h
* gssapi/gssapi_krb5.h: add GSS_KRB5_SET_ALLOWABLE_ENCTYPES_X
* mech/gss_krb5.c: implement gss_krb5_set_allowable_enctypes
* gssapi/gssapi.h: GSS_KRB5_S_
* krb5/gsskrb5_locl.h: Include <gkrb5_err.h>.
* gssapi/gssapi_krb5.h: Add gss_krb5_set_allowable_enctypes.
* Makefile.am: Build and install gkrb5_err.h
* krb5/gkrb5_err.et: Move the GSS_KRB5_S error here.
2006-11-08 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_krb5.c: Add gsskrb5_set_default_realm.
* krb5/set_sec_context_option.c: Support
GSS_KRB5_SET_DEFAULT_REALM_X.
* gssapi/gssapi_krb5.h: add GSS_KRB5_SET_DEFAULT_REALM_X
* krb5/external.c: add GSS_KRB5_SET_DEFAULT_REALM_X
2006-11-07 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c: rename krb5_[gs]et_time_wrap to
krb5_[gs]et_max_time_skew
* krb5/copy_ccache.c: _gsskrb5_extract_authz_data_from_sec_context
no longer used, bye bye
* mech/gss_krb5.c: No depenency of the krb5 gssapi mech.
* mech/gss_krb5.c (gsskrb5_extract_authtime_from_sec_context): use
_gsskrb5_decode_om_uint32. From Andrew Bartlet.
* mech/gss_krb5.c: Add dummy gss_krb5_set_allowable_enctypes for
now.
* spnego/spnego_locl.h: Include <roken.h> for compatiblity.
* krb5/arcfour.c: Use IS_DCE_STYLE flag. There is no padding in
DCE-STYLE, don't try to use to. From Andrew Bartlett.
* test_context.c: test wrap/unwrap, add flag for dce-style and
mutual auth, also support multi-roundtrip sessions
* krb5/gsskrb5_locl.h: Add IS_DCE_STYLE macro.
* krb5/accept_sec_context.c (gsskrb5_acceptor_start): use
krb5_rd_req_ctx
* mech/gss_krb5.c (gsskrb5_get_subkey): return the per message
token subkey
* krb5/inquire_sec_context_by_oid.c: check if there is any key at
all
2006-11-06 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/inquire_sec_context_by_oid.c: Set more error strings, use
right enum for acceptor subkey. From Andrew Bartlett.
2006-11-04 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c: Test gsskrb5_extract_service_keyblock, needed in
PAC valication. From Andrew Bartlett
* mech/gss_krb5.c: Add gsskrb5_extract_authz_data_from_sec_context
and keyblock extraction functions.
* gssapi/gssapi_krb5.h: Add extraction of keyblock function, from
Andrew Bartlett.
* krb5/external.c: Add GSS_KRB5_GET_SERVICE_KEYBLOCK_X
2006-11-03 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c: Rename various routines and constants from
canonize to canonicalize. From Andrew Bartlett
* mech/gss_krb5.c: Rename various routines and constants from
canonize to canonicalize. From Andrew Bartlett
* krb5/set_sec_context_option.c: Rename various routines and
constants from canonize to canonicalize. From Andrew Bartlett
* krb5/external.c: Rename various routines and constants from
canonize to canonicalize. From Andrew Bartlett
* gssapi/gssapi_krb5.h: Rename various routines and constants from
canonize to canonicalize. From Andrew Bartlett
2006-10-25 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/accept_sec_context.c (gsskrb5_accept_delegated_token): need
to free ccache
2006-10-24 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c (loop): free target_name
* mech/gss_accept_sec_context.c: SLIST_INIT the ->gc_mc'
* mech/gss_acquire_cred.c : SLIST_INIT the ->gc_mc'
* krb5/init_sec_context.c: Avoid leaking memory.
* mech/gss_buffer_set.c (gss_release_buffer_set): don't leak the
->elements memory.
* test_context.c: make compile
* krb5/cfx.c (_gssapi_verify_mic_cfx): always free crypto context.
* krb5/set_cred_option.c (import_cred): free sp
2006-10-22 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_add_oid_set_member.c: Use old implementation of
gss_add_oid_set_member, it leaks less memory.
* krb5/test_cfx.c: free krb5_crypto.
* krb5/test_cfx.c: free krb5_context
* mech/gss_release_name.c (gss_release_name): free input_name
it-self.
2006-10-21 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c: Call setprogname.
* mech/gss_krb5.c: Add gsskrb5_extract_authtime_from_sec_context.
* gssapi/gssapi_krb5.h: add
gsskrb5_extract_authtime_from_sec_context
2006-10-20 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/inquire_sec_context_by_oid.c: Add get_authtime.
* krb5/external.c: add GSS_KRB5_GET_AUTHTIME_X
* gssapi/gssapi_krb5.h: add GSS_KRB5_GET_AUTHTIME_X
* krb5/set_sec_context_option.c: Implement GSS_KRB5_SEND_TO_KDC_X.
* mech/gss_krb5.c: Add gsskrb5_set_send_to_kdc
* gssapi/gssapi_krb5.h: Add GSS_KRB5_SEND_TO_KDC_X and
gsskrb5_set_send_to_kdc
* krb5/external.c: add GSS_KRB5_SEND_TO_KDC_X
* Makefile.am: more files
2006-10-19 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: remove spnego/gssapi_spnego.h, its now in gssapi/
* test_context.c: Allow specifing mech.
* krb5/external.c: add GSS_SASL_DIGEST_MD5_MECHANISM (for now)
* gssapi/gssapi.h: Rename GSS_DIGEST_MECHANISM to
GSS_SASL_DIGEST_MD5_MECHANISM
2006-10-18 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gssapi.asn1: Make it into a heim_any_set, its doesn't
except a tag.
* mech/gssapi.asn1: GSSAPIContextToken is IMPLICIT SEQUENCE
* gssapi/gssapi_krb5.h: add GSS_KRB5_GET_ACCEPTOR_SUBKEY_X
* krb5/external.c: Add GSS_KRB5_GET_ACCEPTOR_SUBKEY_X.
* gssapi/gssapi_krb5.h: add GSS_KRB5_GET_INITIATOR_SUBKEY_X and
GSS_KRB5_GET_SUBKEY_X
* krb5/external.c: add GSS_KRB5_GET_INITIATOR_SUBKEY_X,
GSS_KRB5_GET_SUBKEY_X
2006-10-17 Love Hörnquist Åstrand <lha@it.su.se>
* test_context.c: Support switching on name type oid's
* test_context.c: add test for dns canon flag
* mech/gss_krb5.c: Add gsskrb5_set_dns_canonlize.
* gssapi/gssapi_krb5.h: remove gss_krb5_compat_des3_mic
* gssapi/gssapi_krb5.h: Add gsskrb5_set_dns_canonlize.
* krb5/set_sec_context_option.c: implement
GSS_KRB5_SET_DNS_CANONIZE_X
* gssapi/gssapi_krb5.h: add GSS_KRB5_SET_DNS_CANONIZE_X
* krb5/external.c: add GSS_KRB5_SET_DNS_CANONIZE_X
* mech/gss_krb5.c: add bits to make lucid context work
2006-10-14 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_oid_to_str.c: Prefix der primitives with der_.
* krb5/inquire_sec_context_by_oid.c: Prefix der primitives with
der_.
* krb5/encapsulate.c: Prefix der primitives with der_.
* mech/gss_oid_to_str.c: New der_print_heim_oid signature.
2006-10-12 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: add test_context
* krb5/inquire_sec_context_by_oid.c: Make it work.
* test_oid.c: Test lucid oid.
* gssapi/gssapi.h: Add OM_uint64_t.
* krb5/inquire_sec_context_by_oid.c: Add lucid interface.
* krb5/external.c: Add lucid interface, renumber oids to my
delegated space.
* mech/gss_krb5.c: Add lucid interface.
* gssapi/gssapi_krb5.h: Add lucid interface.
* spnego/spnego_locl.h: Maybe include <netdb.h>.
2006-10-09 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_mech_switch.c: define RTLD_LOCAL to 0 if not defined.
2006-10-08 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: install gssapi_krb5.H and gssapi_spnego.h
* gssapi/gssapi_krb5.h: Move krb5 stuff to <gssapi/gssapi_krb5.h>.
* gssapi/gssapi.h: Move krb5 stuff to <gssapi/gssapi_krb5.h>.
* Makefile.am: Drop some -I no longer needed.
* gssapi/gssapi_spnego.h: Move gssapi_spengo.h over here.
* krb5: reference all include files using 'krb5/'
2006-10-07 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.h: Add file inclusion protection.
* gssapi/gssapi.h: Correct header file inclusion protection.
* gssapi/gssapi.h: Move the gssapi.h from lib/gssapi/ to
lib/gssapi/gssapi/ to please automake.
* spnego/spnego_locl.h: Maybe include <sys/types.h>.
* mech/mech_locl.h: Include <roken.h>.
* Makefile.am: split build files into dist_ and noinst_ SOURCES
2006-10-06 Love Hörnquist Åstrand <lha@it.su.se>
* gss.c: #if 0 out unused code.
* mech/gss_mech_switch.c: Cast argument to ctype(3) functions
to (unsigned char).
2006-10-05 Love Hörnquist Åstrand <lha@it.su.se>
* mech/name.h: remove <sys/queue.h>
* mech/mech_switch.h: remove <sys/queue.h>
* mech/cred.h: remove <sys/queue.h>
2006-10-02 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/arcfour.c: Thinker more with header lengths.
* krb5/arcfour.c: Improve the calcucation of header
lengths. DCE-STYLE data is also padded so remove if (1 || ...)
code.
* krb5/wrap.c (_gsskrb5_wrap_size_limit): use
_gssapi_wrap_size_arcfour for arcfour
* krb5/arcfour.c: Move _gssapi_wrap_size_arcfour here.
* Makefile.am: Split all mech to diffrent mechsrc variables.
* spnego/context_stubs.c: Make internal function static (and
rename).
2006-10-01 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/inquire_cred.c: Fix "if (x) lock(y)" bug. From Harald
Barth.
* spnego/spnego_locl.h: Include <sys/param.h> for MAXHOSTNAMELEN.
2006-09-25 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/arcfour.c: Add wrap support, interrop with itself but not
w2k3s-sp1
* krb5/gsskrb5_locl.h: move the arcfour specific stuff to the
arcfour header.
* krb5/arcfour.c: Support DCE-style unwrap, tested with
w2k3server-sp1.
* mech/gss_accept_sec_context.c (gss_accept_sec_context): if the
token doesn't start with [APPLICATION 0] SEQUENCE, lets assume its
a DCE-style kerberos 5 connection. XXX this needs to be made
better in cause we get another GSS-API protocol violating
protocol. It should be possible to detach the Kerberos DCE-style
since it starts with a AP-REQ PDU, but that have to wait for now.
2006-09-22 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.h: Add GSS_C flags from
draft-brezak-win2k-krb-rc4-hmac-04.txt.
* krb5/delete_sec_context.c: Free service_keyblock and fwd_data,
indent.
* krb5/accept_sec_context.c: Merge of the acceptor part from the
samba patch by Stefan Metzmacher and Andrew Bartlet.
* krb5/init_sec_context.c: Add GSS_C_DCE_STYLE.
* krb5/{init_sec_context.c,gsskrb5_locl.h}: merge most of the
initiator part from the samba patch by Stefan Metzmacher and
Andrew Bartlet (still missing DCE/RPC support)
2006-08-28 Love Hörnquist Åstrand <lha@it.su.se>
* gss.c (help): use sl_slc_help().
2006-07-22 Love Hörnquist Åstrand <lha@it.su.se>
* gss-commands.in: rename command to supported-mechanisms
* Makefile.am: Make gss objects depend on the slc built
gss-commands.h
2006-07-20 Love Hörnquist Åstrand <lha@it.su.se>
* gss-commands.in: add slc commands for gss
* krb5/gsskrb5_locl.h: Remove dup prototype of _gsskrb5_init()
* Makefile.am: Add test_cfx
* krb5/external.c: add GSS_KRB5_REGISTER_ACCEPTOR_IDENTITY_X
* krb5/set_sec_context_option.c: catch
GSS_KRB5_REGISTER_ACCEPTOR_IDENTITY_X
* krb5/accept_sec_context.c: reimplement
gsskrb5_register_acceptor_identity
* mech/gss_krb5.c: implement gsskrb5_register_acceptor_identity
* mech/gss_inquire_mechs_for_name.c: call _gss_load_mech
* mech/gss_inquire_cred.c (gss_inquire_cred): call _gss_load_mech
* mech/gss_mech_switch.c: Make _gss_load_mech() atomic and run
only once, this have the side effect that _gss_mechs and
_gss_mech_oids is only initialized once, so if just the users of
these two global variables calls _gss_load_mech() first, it will
act as a barrier and make sure the variables are never changed and
we don't need to lock them.
* mech/utils.h: no need to mark functions extern.
* mech/name.h: no need to mark _gss_find_mn extern.
2006-07-19 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/cfx.c: Redo the wrap length calculations.
* krb5/test_cfx.c: test max_wrap_size in cfx.c
* mech/gss_display_status.c: Handle more error codes.
2006-07-07 Love Hörnquist Åstrand <lha@it.su.se>
* mech/mech_locl.h: Include <krb5-types.h> and "mechqueue.h"
* mech/mechqueue.h: Add SLIST macros.
* krb5/inquire_context.c: Don't free return values on success.
* krb5/inquire_cred.c (_gsskrb5_inquire_cred): When cred provided
is the default cred, acquire the acceptor cred and initator cred
in two diffrent steps and then query them for the information,
this way, the code wont fail if there are no keytab, but there is
a credential cache.
* mech/gss_inquire_cred.c: move the check if we found any cred
where it matter for both cases
(default cred and provided cred)
* mech/gss_init_sec_context.c: If the desired mechanism can't
convert the name to a MN, fail with GSS_S_BAD_NAME rather then a
NULL de-reference.
2006-07-06 Love Hörnquist Åstrand <lha@it.su.se>
* spnego/external.c: readd gss_spnego_inquire_names_for_mech
* spnego/spnego_locl.h: reimplement
gss_spnego_inquire_names_for_mech add support function
_gss_spnego_supported_mechs
* spnego/context_stubs.h: reimplement
gss_spnego_inquire_names_for_mech add support function
_gss_spnego_supported_mechs
* spnego/context_stubs.c: drop gss_spnego_indicate_mechs
* mech/gss_indicate_mechs.c: if the underlaying mech doesn't
support gss_indicate_mechs, use the oid in the mechswitch
structure
* spnego/external.c: let the mech glue layer implement
gss_indicate_mechs
* spnego/cred_stubs.c (gss_spnego_acquire_cred): don't care about
desired_mechs, get our own list with indicate_mechs and remove
ourself.
2006-07-05 Love Hörnquist Åstrand <lha@it.su.se>
* spnego/external.c: remove gss_spnego_inquire_names_for_mech, let
the mechglue layer implement it
* spnego/context_stubs.c: remove gss_spnego_inquire_names_for_mech, let
the mechglue layer implement it
* spnego/spnego_locl.c: remove gss_spnego_inquire_names_for_mech, let
the mechglue layer implement it
2006-07-01 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_set_cred_option.c: fix argument to gss_release_cred
2006-06-30 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/init_sec_context.c: Make work on compilers that are
somewhat more picky then gcc4 (like gcc2.95)
* krb5/init_sec_context.c (do_delegation): use KDCOptions2int to
convert fwd_flags to an integer, since otherwise int2KDCOptions in
krb5_get_forwarded_creds wont do the right thing.
* mech/gss_set_cred_option.c (gss_set_cred_option): free memory on
failure
* krb5/set_sec_context_option.c (_gsskrb5_set_sec_context_option):
init global kerberos context
* krb5/set_cred_option.c (_gsskrb5_set_cred_option): init global
kerberos context
* mech/gss_accept_sec_context.c: Insert the delegated sub cred on
the delegated cred handle, not cred handle
* mech/gss_accept_sec_context.c (gss_accept_sec_context): handle
the case where ret_flags == NULL
* mech/gss_mech_switch.c (add_builtin): set
_gss_mech_switch->gm_mech_oid
* mech/gss_set_cred_option.c (gss_set_cred_option): laod mechs
* test_cred.c (gss_print_errors): don't try to print error when
gss_display_status failed
* Makefile.am: Add mech/gss_release_oid.c
* mech/gss_release_oid.c: Add gss_release_oid, reverse of
gss_duplicate_oid
* spnego/compat.c: preferred_mech_type was allocated with
gss_duplicate_oid in one place and assigned static varianbles a
the second place. change that static assignement to
gss_duplicate_oid and bring back gss_release_oid.
* spnego/compat.c (_gss_spnego_delete_sec_context): don't release
preferred_mech_type and negotiated_mech_type, they where never
allocated from the begining.
2006-06-29 Love Hörnquist Åstrand <lha@it.su.se>
* mech/gss_import_name.c (gss_import_name): avoid
type-punned/strict aliasing rules
* mech/gss_add_cred.c: avoid type-punned/strict aliasing rules
* gssapi.h: Make gss_name_t an opaque type.
* krb5: make gss_name_t an opaque type
* krb5/set_cred_option.c: Add
* mech/gss_set_cred_option.c (gss_set_cred_option): support the
case where *cred_handle == NULL
* mech/gss_krb5.c (gss_krb5_import_cred): make sure cred is
GSS_C_NO_CREDENTIAL on failure.
* mech/gss_acquire_cred.c (gss_acquire_cred): if desired_mechs is
NO_OID_SET, there is a need to load the mechs, so always do that.
2006-06-28 Love Hörnquist Åstrand <lha@it.su.se>
* krb5/inquire_cred_by_oid.c: Reimplement GSS_KRB5_COPY_CCACHE_X
to instead pass a fullname to the credential, then resolve and
copy out the content, and then close the cred.
* mech/gss_krb5.c: Reimplement GSS_KRB5_COPY_CCACHE_X to instead
pass a fullname to the credential, then resolve and copy out the
content, and then close the cred.
* krb5/inquire_cred_by_oid.c: make "work", GSS_KRB5_COPY_CCACHE_X
interface needs to be re-done, currently its utterly broken.
* mech/gss_set_cred_option.c: Make work.
* krb5/external.c: Add _gsskrb5_set_{sec_context,cred}_option
* mech/gss_krb5.c (gss_krb5_import_cred): implement
* Makefile.am: Add gss_set_{sec_context,cred}_option and sort
* mech/gss_set_{sec_context,cred}_option.c: add
* gssapi.h: Add GSS_KRB5_IMPORT_CRED_X
* test_*.c: make compile again
* Makefile.am: Add lib dependencies and test programs
* spnego: remove dependency on libkrb5
* mech: Bug fixes, cleanup, compiler warnings, restructure code.
* spnego: Rename gss_context_id_t and gss_cred_id_t to local names
* krb5: repro copy the krb5 files here
* mech: import Doug Rabson mechglue from freebsd
* spnego: Import Luke Howard's SPNEGO from the mechglue branch
2006-06-22 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.h: Add oid_to_str.
* Makefile.am: add oid_to_str and test_oid
* oid_to_str.c: Add gss_oid_to_str
* test_oid.c: Add test for gss_oid_to_str()
2006-05-13 Love Hörnquist Åstrand <lha@it.su.se>
* verify_mic.c: Less pointer signedness warnings.
* unwrap.c: Less pointer signedness warnings.
* arcfour.c: Less pointer signedness warnings.
* gssapi_locl.h: Use const void * to instead of unsigned char * to
avoid pointer signedness warnings.
* encapsulate.c: Use const void * to instead of unsigned char * to
avoid pointer signedness warnings.
* decapsulate.c: Use const void * to instead of unsigned char * to
avoid pointer signedness warnings.
* decapsulate.c: Less pointer signedness warnings.
* cfx.c: Less pointer signedness warnings.
* init_sec_context.c: Less pointer signedness warnings (partly by
using the new asn.1 CHOICE decoder)
* import_sec_context.c: Less pointer signedness warnings.
2006-05-09 Love Hörnquist Åstrand <lha@it.su.se>
* accept_sec_context.c (gsskrb5_is_cfx): always set is_cfx. From
Andrew Abartlet.
2006-05-08 Love Hörnquist Åstrand <lha@it.su.se>
* get_mic.c (mic_des3): make sure message_buffer doesn't point to
free()ed memory on failure. Pointed out by IBM checker.
2006-05-05 Love Hörnquist Åstrand <lha@it.su.se>
* Rename u_intXX_t to uintXX_t
2006-05-04 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: Less pointer signedness warnings.
* arcfour.c: Avoid pointer signedness warnings.
* gssapi_locl.h (gssapi_decode_*): make data argument const void *
* 8003.c (gssapi_decode_*): make data argument const void *
2006-04-12 Love Hörnquist Åstrand <lha@it.su.se>
* export_sec_context.c: Export sequence order element. From Wynn
Wilkes <wynn.wilkes@quest.com>.
* import_sec_context.c: Import sequence order element. From Wynn
Wilkes <wynn.wilkes@quest.com>.
* sequence.c (_gssapi_msg_order_import,_gssapi_msg_order_export):
New functions, used by {import,export}_sec_context. From Wynn
Wilkes <wynn.wilkes@quest.com>.
* test_sequence.c: Add test for import/export sequence.
2006-04-09 Love Hörnquist Åstrand <lha@it.su.se>
* add_cred.c: Check that cred != GSS_C_NO_CREDENTIAL, this is a
standard conformance failure, but much better then a crash.
2006-04-02 Love Hörnquist Åstrand <lha@it.su.se>
* get_mic.c (get_mic*)_: make sure message_token is cleaned on
error, found by IBM checker.
* wrap.c (wrap*): Reset output_buffer on error, found by IBM
checker.
2006-02-15 Love Hörnquist Åstrand <lha@it.su.se>
* import_name.c: Accept both GSS_C_NT_HOSTBASED_SERVICE and
GSS_C_NT_HOSTBASED_SERVICE_X as nametype for hostbased names.
2006-01-16 Love Hörnquist Åstrand <lha@it.su.se>
* delete_sec_context.c (gss_delete_sec_context): if the context
handle is GSS_C_NO_CONTEXT, don't fall over.
2005-12-12 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: Replace gss_krb5_import_ccache with
gss_krb5_import_cred and add more references
2005-12-05 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.h: Change gss_krb5_import_ccache to gss_krb5_import_cred,
it can handle keytabs too.
* add_cred.c (gss_add_cred): avoid deadlock
* context_time.c (gssapi_lifetime_left): define the 0 lifetime as
GSS_C_INDEFINITE.
2005-12-01 Love Hörnquist Åstrand <lha@it.su.se>
* acquire_cred.c (acquire_acceptor_cred): only check if principal
exists if we got called with principal as an argument.
* acquire_cred.c (acquire_acceptor_cred): check that the acceptor
exists in the keytab before returning ok.
2005-11-29 Love Hörnquist Åstrand <lha@it.su.se>
* copy_ccache.c (gss_krb5_import_cred): fix buglet, from Andrew
Bartlett.
2005-11-25 Love Hörnquist Åstrand <lha@it.su.se>
* test_kcred.c: Rename gss_krb5_import_ccache to
gss_krb5_import_cred.
* copy_ccache.c: Rename gss_krb5_import_ccache to
gss_krb5_import_cred and let it grow code to handle keytabs too.
2005-11-02 Love Hörnquist Åstrand <lha@it.su.se>
* init_sec_context.c: Change sematics of ok-as-delegate to match
windows if
[gssapi]realm/ok-as-delegate=true is set, otherwise keep old
sematics.
* release_cred.c (gss_release_cred): use
GSS_CF_DESTROY_CRED_ON_RELEASE to decide if the cache should be
krb5_cc_destroy-ed
* acquire_cred.c (acquire_initiator_cred):
GSS_CF_DESTROY_CRED_ON_RELEASE on created credentials.
* accept_sec_context.c (gsskrb5_accept_delegated_token): rewrite
to use gss_krb5_import_ccache
2005-11-01 Love Hörnquist Åstrand <lha@it.su.se>
* arcfour.c: Remove signedness warnings.
2005-10-31 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: Document that gss_krb5_import_ccache is copy
by reference.
* copy_ccache.c (gss_krb5_import_ccache): Instead of making a copy
of the ccache, make a reference by getting the name and resolving
the name. This way the cache is shared, this flipp side is of
course that if someone calls krb5_cc_destroy the cache is lost for
everyone.
* test_kcred.c: Remove memory leaks.
2005-10-26 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: build test_kcred
* gss_acquire_cred.3: Document gss_krb5_import_ccache
* gssapi.3: Sort and add gss_krb5_import_ccache.
* acquire_cred.c (_gssapi_krb5_ccache_lifetime): break out code
used to extract lifetime from a credential cache
* gssapi_locl.h: Add _gssapi_krb5_ccache_lifetime, used to extract
lifetime from a credential cache.
* gssapi.h: add gss_krb5_import_ccache, reverse of
gss_krb5_copy_ccache
* copy_ccache.c: add gss_krb5_import_ccache, reverse of
gss_krb5_copy_ccache
* test_kcred.c: test gss_krb5_import_ccache
2005-10-21 Love Hörnquist Åstrand <lha@it.su.se>
* acquire_cred.c (acquire_initiator_cred): use krb5_cc_cache_match
to find a matching creditial cache, if that failes, fallback to
the default cache.
2005-10-12 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi_locl.h: Add gssapi_krb5_set_status and
gssapi_krb5_clear_status
* init_sec_context.c (spnego_reply): Don't pass back raw Kerberos
errors, use GSS-API errors instead. From Michael B Allen.
* display_status.c: Add gssapi_krb5_clear_status,
gssapi_krb5_set_status for handling error messages.
2005-08-23 Love Hörnquist Åstrand <lha@it.su.se>
* external.c: Use rk_UNCONST to avoid const warning.
* display_status.c: Constify strings to avoid warnings.
2005-08-11 Love Hörnquist Åstrand <lha@it.su.se>
* init_sec_context.c: avoid warnings, update (c)
2005-07-13 Love Hörnquist Åstrand <lha@it.su.se>
* init_sec_context.c (spnego_initial): use NegotiationToken
encoder now that we have one with the new asn1. compiler.
* Makefile.am: the new asn.1 compiler includes the modules name in
the depend file
2005-06-16 Love Hörnquist Åstrand <lha@it.su.se>
* decapsulate.c: use rk_UNCONST
* ccache_name.c: rename to avoid shadowing
* gssapi_locl.h: give kret in GSSAPI_KRB5_INIT a more unique name
* process_context_token.c: use rk_UNCONST to unconstify
* test_cred.c: rename optind to optidx
2005-05-30 Love Hörnquist Åstrand <lha@it.su.se>
* init_sec_context.c (init_auth): honor ok-as-delegate if local
configuration approves
* gssapi_locl.h: prototype for _gss_check_compat
* compat.c: export check_compat as _gss_check_compat
2005-05-29 Love Hörnquist Åstrand <lha@it.su.se>
* init_sec_context.c: Prefix Der_class with ASN1_C_ to avoid
problems with system headerfiles that pollute the name space.
* accept_sec_context.c: Prefix Der_class with ASN1_C_ to avoid
problems with system headerfiles that pollute the name space.
2005-05-17 Love Hörnquist Åstrand <lha@it.su.se>
* init_sec_context.c (init_auth): set
KRB5_AUTH_CONTEXT_CLEAR_FORWARDED_CRED (for java compatibility),
also while here, use krb5_auth_con_addflags
2005-05-06 Love Hörnquist Åstrand <lha@it.su.se>
* arcfour.c (_gssapi_wrap_arcfour): fix calculating the encap
length. From: Tom Maher <tmaher@eecs.berkeley.edu>
2005-05-02 Dave Love <fx@gnu.org>
* test_cred.c (main): Call setprogname.
2005-04-27 Love Hörnquist Åstrand <lha@it.su.se>
* prefix all sequence symbols with _, they are not part of the
GSS-API api. By comment from Wynn Wilkes <wynnw@vintela.com>
2005-04-10 Love Hörnquist Åstrand <lha@it.su.se>
* accept_sec_context.c: break out the processing of the delegated
credential to a separate function to make error handling easier,
move the credential handling to after other setup is done
* test_sequence.c: make less verbose in case of success
* Makefile.am: add test_sequence to TESTS
2005-04-01 Love Hörnquist Åstrand <lha@it.su.se>
* 8003.c (gssapi_krb5_verify_8003_checksum): check that cksum
isn't NULL From: Nicolas Pouvesle <npouvesle@tenablesecurity.com>
2005-03-21 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: use $(LIB_roken)
2005-03-16 Love Hörnquist Åstrand <lha@it.su.se>
* display_status.c (gssapi_krb5_set_error_string): pass in the
krb5_context to krb5_free_error_string
2005-03-15 Love Hörnquist Åstrand <lha@it.su.se>
* display_status.c (gssapi_krb5_set_error_string): don't misuse
the krb5_get_error_string api
2005-03-01 Love Hörnquist Åstrand <lha@it.su.se>
* compat.c (_gss_DES3_get_mic_compat): don't unlock mutex
here. Bug reported by Stefan Metzmacher <metze@samba.org>
2005-02-21 Luke Howard <lukeh@padl.com>
* init_sec_context.c: don't call krb5_get_credentials() with
KRB5_TC_MATCH_KEYTYPE, it can lead to the credentials cache
growing indefinitely as no key is found with KEYTYPE_NULL
* compat.c: remove GSS_C_EXPECTING_MECH_LIST_MIC_FLAG, it is
no longer used (however the mechListMIC behaviour is broken,
rfc2478bis support requires the code in the mechglue branch)
* init_sec_context.c: remove GSS_C_EXPECTING_MECH_LIST_MIC_FLAG
* gssapi.h: remove GSS_C_EXPECTING_MECH_LIST_MIC_FLAG
2005-01-05 Luke Howard <lukeh@padl.com>
* 8003.c: use symbolic name for checksum type
* accept_sec_context.c: allow client to indicate
that subkey should be used
* acquire_cred.c: plug leak
* get_mic.c: use gss_krb5_get_subkey() instead
of gss_krb5_get_{local,remote}key(), support
KEYTYPE_ARCFOUR_56
* gssapi_local.c: use gss_krb5_get_subkey(),
support KEYTYPE_ARCFOUR_56
* import_sec_context.c: plug leak
* unwrap.c: use gss_krb5_get_subkey(),
support KEYTYPE_ARCFOUR_56
* verify_mic.c: use gss_krb5_get_subkey(),
support KEYTYPE_ARCFOUR_56
* wrap.c: use gss_krb5_get_subkey(),
support KEYTYPE_ARCFOUR_56
2004-11-30 Love Hörnquist Åstrand <lha@it.su.se>
* inquire_cred.c: Reverse order of HEIMDAL_MUTEX_unlock and
gss_release_cred to avoid deadlock, from Luke Howard
<lukeh@padl.com>.
2004-09-06 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: gss_krb5_extract_authz_data_from_sec_context
was renamed to gsskrb5_extract_authz_data_from_sec_context
2004-08-07 Love Hörnquist Åstrand <lha@it.su.se>
* unwrap.c: mutex buglet, From: Luke Howard <lukeh@PADL.COM>
* arcfour.c: mutex buglet, From: Luke Howard <lukeh@PADL.COM>
2004-05-06 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.3: spelling from Josef El-Rayes <josef@FreeBSD.org> while
here, write some text about the SPNEGO situation
2004-04-08 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: s/CTXAcceptorSubkey/CFXAcceptorSubkey/
2004-04-07 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.h: add GSS_C_EXPECTING_MECH_LIST_MIC_FLAG From: Luke
Howard <lukeh@padl.com>
* init_sec_context.c (spnego_reply): use
_gss_spnego_require_mechlist_mic to figure out if we need to check
MechListMIC; From: Luke Howard <lukeh@padl.com>
* accept_sec_context.c (send_accept): use
_gss_spnego_require_mechlist_mic to figure out if we need to send
MechListMIC; From: Luke Howard <lukeh@padl.com>
* gssapi_locl.h: add _gss_spnego_require_mechlist_mic
From: Luke Howard <lukeh@padl.com>
* compat.c: add _gss_spnego_require_mechlist_mic for compatibility
with MS SPNEGO, From: Luke Howard <lukeh@padl.com>
2004-04-05 Love Hörnquist Åstrand <lha@it.su.se>
* accept_sec_context.c (gsskrb5_is_cfx): krb5_keyblock->keytype is
an enctype, not keytype
* accept_sec_context.c: use ASN1_MALLOC_ENCODE
* init_sec_context.c: avoid the malloc loop and just allocate the
propper amount of data
* init_sec_context.c (spnego_initial): handle mech_token better
2004-03-19 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.h: add gss_krb5_get_tkt_flags
* Makefile.am: add ticket_flags.c
* ticket_flags.c: Get ticket-flags from acceptor ticket From: Luke
Howard <lukeh@PADL.COM>
* gss_acquire_cred.3: document gss_krb5_get_tkt_flags
2004-03-14 Love Hörnquist Åstrand <lha@it.su.se>
* acquire_cred.c (gss_acquire_cred): check usage before even
bothering to process it, add both keytab and initial tgt if
requested
* wrap.c: support cfx, try to handle acceptor asserted subkey
* unwrap.c: support cfx, try to handle acceptor asserted subkey
* verify_mic.c: support cfx
* get_mic.c: support cfx
* test_sequence.c: handle changed signature of
gssapi_msg_order_create
* import_sec_context.c: handle acceptor asserted subkey
* init_sec_context.c: handle acceptor asserted subkey
* accept_sec_context.c: handle acceptor asserted subkey
* sequence.c: add dummy use_64 argument to gssapi_msg_order_create
* gssapi_locl.h: add partial support for CFX
* Makefile.am (noinst_PROGRAMS) += test_cred
* test_cred.c: gssapi credential testing
* test_acquire_cred.c: fix comment
2004-03-07 Love Hörnquist Åstrand <lha@it.su.se>
* arcfour.h: drop structures for message formats, no longer used
* arcfour.c: comment describing message formats
* accept_sec_context.c (spnego_accept_sec_context): make sure the
length of the choice element doesn't overrun us
* init_sec_context.c (spnego_reply): make sure the length of the
choice element doesn't overrun us
* spnego.asn1: move NegotiationToken to avoid warning
* spnego.asn1: uncomment NegotiationToken
* Makefile.am: spnego_files += asn1_NegotiationToken.x
2004-01-25 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.h: add gss_krb5_ccache_name
* Makefile.am (libgssapi_la_SOURCES): += ccache_name.c
* ccache_name.c (gss_krb5_ccache_name): help function enable to
set krb5 name, using out_name argument makes function no longer
thread-safe
* gssapi.3: add missing gss_krb5_ references
* gss_acquire_cred.3: document gss_krb5_ccache_name
2003-12-12 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: make rrc a modulus operation if its longer then the
length of the message, noticed by Sam Hartman
2003-12-07 Love Hörnquist Åstrand <lha@it.su.se>
* accept_sec_context.c: use krb5_auth_con_addflags
2003-12-05 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: Wrap token id was in wrong order, found by Sam Hartman
2003-12-04 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: add AcceptorSubkey (but no code understand it yet) ignore
unknown token flags
2003-11-22 Love Hörnquist Åstrand <lha@it.su.se>
* accept_sec_context.c: Don't require timestamp to be set on
delegated token, its already protected by the outer token (and
windows doesn't alway send it) Pointed out by Zi-Bin Yang
<zbyang@decru.com> on heimdal-discuss
2003-11-14 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: fix {} error, pointed out by Liqiang Zhu
2003-11-10 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: Sequence number should be stored in bigendian order From:
Luke Howard <lukeh@padl.com>
2003-11-09 Love Hörnquist Åstrand <lha@it.su.se>
* delete_sec_context.c (gss_delete_sec_context): don't free
ticket, krb5_free_ticket does that now
2003-11-06 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: checksum the header last in MIC token, update to -03
From: Luke Howard <lukeh@padl.com>
2003-10-07 Love Hörnquist Åstrand <lha@it.su.se>
* add_cred.c: If its a MEMORY cc, make a copy. We need to do this
since now gss_release_cred will destroy the cred. This should be
really be solved a better way.
* acquire_cred.c (gss_release_cred): if its a mcc, destroy it
rather the just release it Found by: "Zi-Bin Yang"
<zbyang@decru.com>
* acquire_cred.c (acquire_initiator_cred): use kret instead of ret
where appropriate
2003-09-30 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: spelling
From: jmc <jmc@prioris.mini.pw.edu.pl>
2003-09-23 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: - EC and RRC are big-endian, not little-endian - The
default is now to rotate regardless of GSS_C_DCE_STYLE. There are
no longer any references to GSS_C_DCE_STYLE. - rrc_rotate()
avoids allocating memory on the heap if rrc <= 256
From: Luke Howard <lukeh@padl.com>
2003-09-22 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.[ch]: rrc_rotate() was untested and broken, fix it.
Set and verify wrap Token->Filler.
Correct token ID for wrap tokens,
were accidentally swapped with delete tokens.
From: Luke Howard <lukeh@PADL.COM>
2003-09-21 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.[ch]: no ASN.1-ish header on per-message tokens
From: Luke Howard <lukeh@PADL.COM>
2003-09-19 Love Hörnquist Åstrand <lha@it.su.se>
* arcfour.h: remove depenency on gss_arcfour_mic_token and
gss_arcfour_warp_token
* arcfour.c: remove depenency on gss_arcfour_mic_token and
gss_arcfour_warp_token
2003-09-18 Love Hörnquist Åstrand <lha@it.su.se>
* 8003.c: remove #if 0'ed code
2003-09-17 Love Hörnquist Åstrand <lha@it.su.se>
* accept_sec_context.c (gsskrb5_accept_sec_context): set sequence
number when not requesting mutual auth From: Luke Howard
<lukeh@PADL.COM>
* init_sec_context.c (init_auth): set sequence number when not
requesting mutual auth From: Luke Howard <lukeh@PADL.COM>
2003-09-16 Love Hörnquist Åstrand <lha@it.su.se>
* arcfour.c (*): set minor_status
(gss_wrap): set conf_state to conf_req_flags on success
From: Luke Howard <lukeh@PADL.COM>
* wrap.c (gss_wrap_size_limit): use existing function From: Luke
Howard <lukeh@PADL.COM>
2003-09-12 Love Hörnquist Åstrand <lha@it.su.se>
* indicate_mechs.c (gss_indicate_mechs): in case of error, free
mech_set
* indicate_mechs.c (gss_indicate_mechs): add SPNEGO
2003-09-10 Love Hörnquist Åstrand <lha@it.su.se>
* init_sec_context.c (spnego_initial): catch errors and return
them
* init_sec_context.c (spnego_initial): add #if 0 out version of
the CHOICE branch encoding, also where here, free no longer used
memory
2003-09-09 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: support GSS_SPNEGO_MECHANISM
* accept_sec_context.c: SPNEGO doesn't include gss wrapping on
SubsequentContextToken like the Kerberos 5 mech does.
* init_sec_context.c (spnego_reply): SPNEGO doesn't include gss
wrapping on SubsequentContextToken like the Kerberos 5 mech
does. Lets check for it anyway.
* accept_sec_context.c: Add support for SPNEGO on the initator
side. Implementation initially from Assar Westerlund, passes
though quite a lot of hands before I commited it.
* init_sec_context.c: Add support for SPNEGO on the initator side.
Tested with ldap server on a Windows 2000 DC. Implementation
initially from Assar Westerlund, passes though quite a lot of
hands before I commited it.
* gssapi.h: export GSS_SPNEGO_MECHANISM
* gssapi_locl.h: include spnego_as.h add prototype for
gssapi_krb5_get_mech
* decapsulate.c (gssapi_krb5_get_mech): make non static
* Makefile.am: build SPNEGO file
2003-09-08 Love Hörnquist Åstrand <lha@it.su.se>
* external.c: SPENGO and IAKERB oids
* spnego.asn1: SPENGO ASN1
2003-09-05 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.c: RRC also need to be zero before wraping them
From: Luke Howard <lukeh@PADL.COM>
2003-09-04 Love Hörnquist Åstrand <lha@it.su.se>
* encapsulate.c (gssapi_krb5_encap_length): don't return void
2003-09-03 Love Hörnquist Åstrand <lha@it.su.se>
* verify_mic.c: switch from the des_ to the DES_ api
* get_mic.c: switch from the des_ to the DES_ api
* unwrap.c: switch from the des_ to the DES_ api
* wrap.c: switch from the des_ to the DES_ api
* cfx.c: EC is not included in the checksum since the length might
change depending on the data. From: Luke Howard <lukeh@PADL.COM>
* acquire_cred.c: use
krb5_get_init_creds_opt_alloc/krb5_get_init_creds_opt_free
2003-09-01 Love Hörnquist Åstrand <lha@it.su.se>
* copy_ccache.c: rename
gss_krb5_extract_authz_data_from_sec_context to
gsskrb5_extract_authz_data_from_sec_context
* gssapi.h: rename gss_krb5_extract_authz_data_from_sec_context to
gsskrb5_extract_authz_data_from_sec_context
2003-08-31 Love Hörnquist Åstrand <lha@it.su.se>
* copy_ccache.c (gss_krb5_extract_authz_data_from_sec_context):
check that we have a ticket before we start to use it
* gss_acquire_cred.3: document
gss_krb5_extract_authz_data_from_sec_context
* gssapi.h (gss_krb5_extract_authz_data_from_sec_context):
return the kerberos authorizationdata, from idea of Luke Howard
* copy_ccache.c (gss_krb5_extract_authz_data_from_sec_context):
return the kerberos authorizationdata, from idea of Luke Howard
* verify_mic.c (gss_verify_mic_internal): switch type and key
argument
2003-08-30 Love Hörnquist Åstrand <lha@it.su.se>
* cfx.[ch]: draft-ietf-krb-wg-gssapi-cfx-01.txt implemetation
From: Luke Howard <lukeh@PADL.COM>
2003-08-28 Love Hörnquist Åstrand <lha@it.su.se>
* arcfour.c (arcfour_mic_cksum): use free_Checksum to free the
checksum
* arcfour.h: swap two last arguments to verify_mic for consistency
with des3
* wrap.c,unwrap.c,get_mic.c,verify_mic.c,cfx.c,cfx.h:
prefix cfx symbols with _gssapi_
* arcfour.c: release the right buffer
* arcfour.c: rename token structure in consistency with rest of
GSS-API From: Luke Howard <lukeh@PADL.COM>
* unwrap.c (unwrap_des3): use _gssapi_verify_pad
(unwrap_des): use _gssapi_verify_pad
* arcfour.c (_gssapi_wrap_arcfour): set the correct padding
(_gssapi_unwrap_arcfour): verify and strip padding
* gssapi_locl.h: added _gssapi_verify_pad
* decapsulate.c (_gssapi_verify_pad): verify padding of a gss
wrapped message and return its length
* arcfour.c: support KEYTYPE_ARCFOUR_56 keys, from Luke Howard
<lukeh@PADL.COM>
* arcfour.c: use right seal alg, inherit keytype from parent key
* arcfour.c: include the confounder in the checksum use the right
key usage number for warped/unwraped tokens
* gssapi.h: add gss_krb5_nt_general_name as an mit compat glue
(same as GSS_KRB5_NT_PRINCIPAL_NAME)
* unwrap.c: hook in arcfour unwrap
* wrap.c: hook in arcfour wrap
* verify_mic.c: hook in arcfour verify_mic
* get_mic.c: hook in arcfour get_mic
* arcfour.c: implement wrap/unwarp
* gssapi_locl.h: add gssapi_{en,de}code_be_om_uint32
* 8003.c: add gssapi_{en,de}code_be_om_uint32
2003-08-27 Love Hörnquist Åstrand <lha@it.su.se>
* arcfour.c (_gssapi_verify_mic_arcfour): Do the checksum on right
area. Swap filler check, it was reversed.
* Makefile.am (libgssapi_la_SOURCES): += arcfour.c
* gssapi_locl.h: include "arcfour.h"
* arcfour.c: arcfour gss-api mech, get_mic/verify_mic working
* arcfour.h: arcfour gss-api mech, get_mic/verify_mic working
2003-08-26 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi_locl.h: always include cfx.h add prototype for
_gssapi_decapsulate
* cfx.[ch]: Implementation of draft-ietf-krb-wg-gssapi-cfx-00.txt
from Luke Howard <lukeh@PADL.COM>
* decapsulate.c: add _gssapi_decapsulate, from Luke Howard
<lukeh@PADL.COM>
2003-08-25 Love Hörnquist Åstrand <lha@it.su.se>
* unwrap.c: encap/decap now takes a oid if the enctype/keytype is
arcfour, return error add hook for cfx
* verify_mic.c: encap/decap now takes a oid if the enctype/keytype
is arcfour, return error add hook for cfx
* get_mic.c: encap/decap now takes a oid if the enctype/keytype is
arcfour, return error add hook for cfx
* accept_sec_context.c: encap/decap now takes a oid
* init_sec_context.c: encap/decap now takes a oid
* gssapi_locl.h: include cfx.h if we need it lifetime is a
OM_uint32, depend on gssapi interface add all new encap/decap
functions
* decapsulate.c: add decap functions that doesn't take the token
type also make all decap function take the oid mech that they
should use
* encapsulate.c: add encap functions that doesn't take the token
type also make all encap function take the oid mech that they
should use
* sequence.c (elem_insert): fix a off by one index counter
* inquire_cred.c (gss_inquire_cred): handle cred_handle being
GSS_C_NO_CREDENTIAL and use the default cred then.
2003-08-19 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: break out extensions and document
gsskrb5_register_acceptor_identity
2003-08-18 Love Hörnquist Åstrand <lha@it.su.se>
* test_acquire_cred.c (print_time): time is returned in seconds
from now, not unix time
2003-08-17 Love Hörnquist Åstrand <lha@it.su.se>
* compat.c (check_compat): avoid leaking principal when finding a
match
* address_to_krb5addr.c: sa_size argument to krb5_addr2sockaddr is
a krb5_socklen_t
* acquire_cred.c (gss_acquire_cred): 4th argument to
gss_test_oid_set_member is a int
2003-07-22 Love Hörnquist Åstrand <lha@it.su.se>
* init_sec_context.c (repl_mutual): don't set kerberos error where
there was no kerberos error
* gssapi_locl.h: Add destruction/creation prototypes and structure
for the thread specific storage.
* display_status.c: use thread specific storage to set/get the
kerberos error message
* init.c: Provide locking around the creation of the global
krb5_context. Add destruction/creation functions for the thread
specific storage that the error string handling is using.
2003-07-20 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: add missing prototype and missing .Ft
arguments
2003-06-17 Love Hörnquist Åstrand <lha@it.su.se>
* verify_mic.c: reorder code so sequence numbers can can be used
* unwrap.c: reorder code so sequence numbers can can be used
* sequence.c: remove unused function, indent, add
gssapi_msg_order_f that filter gss flags to gss_msg_order flags
* gssapi_locl.h: prototypes for
gssapi_{encode_om_uint32,decode_om_uint32} add sequence number
verifier prototypes
* delete_sec_context.c: destroy sequence number verifier
* init_sec_context.c: remember to free data use sequence number
verifier
* accept_sec_context.c: don't clear output_token twice remember to
free data use sequence number verifier
* 8003.c: export and rename encode_om_uint32/decode_om_uint32 and
start to use them
2003-06-09 Johan Danielsson <joda@pdc.kth.se>
* Makefile.am: can't have sequence.c in two different places
2003-06-06 Love Hörnquist Åstrand <lha@it.su.se>
* test_sequence.c: check rollover, print summery
* wrap.c (sub_wrap_size): gss_wrap_size_limit() has
req_output_size and max_input_size around the wrong way -- it
returns the output token size for a given input size, rather than
the maximum input size for a given output token size.
From: Luke Howard <lukeh@PADL.COM>
2003-06-05 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi_locl.h: add prototypes for sequence.c
* Makefile.am (libgssapi_la_SOURCES): add sequence.c
(test_sequence): build
* sequence.c: sequence number checks, order and replay
* test_sequence.c: sequence number checks, order and replay
2003-06-03 Love Hörnquist Åstrand <lha@it.su.se>
* accept_sec_context.c (gss_accept_sec_context): make sure time is
returned in seconds from now, not in kerberos time
* acquire_cred.c (gss_aquire_cred): make sure time is returned in
seconds from now, not in kerberos time
* init_sec_context.c (init_auth): if the cred is expired before we
tries to create a token, fail so the peer doesn't need reject us
(*): make sure time is returned in seconds from now,
not in kerberos time
(repl_mutual): remember to unlock the context mutex
* context_time.c (gss_context_time): remove unused variable
* verify_mic.c: make sure minor_status is always set, pointed out
by Luke Howard <lukeh@PADL.COM>
2003-05-21 Love Hörnquist Åstrand <lha@it.su.se>
* *.[ch]: do some basic locking (no reference counting so contexts
can be removed while still used)
- don't export gss_ctx_id_t_desc_struct and gss_cred_id_t_desc_struct
- make sure all lifetime are returned in seconds left until expired,
not in unix epoch
* gss_acquire_cred.3: document argument lifetime_rec to function
gss_inquire_context
2003-05-17 Love Hörnquist Åstrand <lha@it.su.se>
* test_acquire_cred.c: test gss_add_cred more then once
2003-05-06 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.h: if __cplusplus, wrap the extern variable (just to be
safe) and functions in extern "C" { }
2003-04-30 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.3: more about the des3 mic mess
* verify_mic.c (verify_mic_des3): always check if the mic is the
correct mic or the mic that old heimdal would have generated
2003-04-28 Jacques Vidrine <nectar@kth.se>
* verify_mic.c (verify_mic_des3): If MIC verification fails,
retry using the `old' MIC computation (with zero IV).
2003-04-26 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: more about difference between comparing IN
and MN
* gss_acquire_cred.3: more about name type and access control
2003-04-25 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: document gss_context_time
* context_time.c: if lifetime of context have expired, set
time_rec to 0 and return GSS_S_CONTEXT_EXPIRED
* gssapi.3: document [gssapi]correct_des3_mic
[gssapi]broken_des3_mic
* gss_acquire_cred.3: document gss_krb5_compat_des3_mic
* compat.c (gss_krb5_compat_des3_mic): enable turning on/off des3
mic compat
(_gss_DES3_get_mic_compat): handle [gssapi]correct_des3_mic too
* gssapi.h (gss_krb5_compat_des3_mic): new function, turn on/off
des3 mic compat
(GSS_C_KRB5_COMPAT_DES3_MIC): cpp symbol that exists if
gss_krb5_compat_des3_mic exists
2003-04-24 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: (libgssapi_la_LDFLAGS): update major
version of gssapi for incompatiblity in 3des getmic support
2003-04-23 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: test_acquire_cred_LDADD: use libgssapi.la not
./libgssapi.la (make make -jN work)
2003-04-16 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.3: spelling
* gss_acquire_cred.3: Change .Fd #include <header.h> to .In
header.h, from Thomas Klausner <wiz@netbsd.org>
2003-04-06 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: spelling
* Makefile.am: remove stuff that sneaked in with last commit
* acquire_cred.c (acquire_initiator_cred): if the requested name
isn't in the ccache, also check keytab. Extact the krbtgt for the
default realm to check how long the credentials will last.
* add_cred.c (gss_add_cred): don't create a new ccache, just open
the old one; better check if output handle is compatible with new
(copied) handle
* test_acquire_cred.c: test gss_add_cred too
2003-04-03 Love Hörnquist Åstrand <lha@it.su.se>
* Makefile.am: build test_acquire_cred
* test_acquire_cred.c: simple gss_acquire_cred test
2003-04-02 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: s/gssapi/GSS-API/
2003-03-19 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: document v1 interface (and that they are
obsolete)
2003-03-18 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: list supported mechanism and nametypes
2003-03-16 Love Hörnquist Åstrand <lha@it.su.se>
* gss_acquire_cred.3: text about gss_display_name
* Makefile.am (libgssapi_la_LDFLAGS): bump to 3:6:2
(libgssapi_la_SOURCES): add all new functions
* gssapi.3: now that we have a functions, uncomment the missing
ones
* gss_acquire_cred.3: now that we have a functions, uncomment the
missing ones
* process_context_token.c: implement gss_process_context_token
* inquire_names_for_mech.c: implement gss_inquire_names_for_mech
* inquire_mechs_for_name.c: implement gss_inquire_mechs_for_name
* inquire_cred_by_mech.c: implement gss_inquire_cred_by_mech
* add_cred.c: implement gss_add_cred
* acquire_cred.c (gss_acquire_cred): more testing of input
argument, make sure output arguments are ok, since we don't know
the time_rec (for now), set it to time_req
* export_sec_context.c: send lifetime, also set minor_status
* get_mic.c: set minor_status
* import_sec_context.c (gss_import_sec_context): add error
checking, pick up lifetime (if there is no lifetime, use
GSS_C_INDEFINITE)
* init_sec_context.c: take care to set export value to something
sane before we start so caller will have harmless values in them
if then function fails
* release_buffer.c (gss_release_buffer): set minor_status
* wrap.c: make sure minor_status get set
* verify_mic.c (gss_verify_mic_internal): rename verify_mic to
gss_verify_mic_internal and let it take the type as an argument,
(gss_verify_mic): call gss_verify_mic_internal
set minor_status
* unwrap.c: set minor_status
* test_oid_set_member.c (gss_test_oid_set_member): use
gss_oid_equal
* release_oid_set.c (gss_release_oid_set): set minor_status
* release_name.c (gss_release_name): set minor_status
* release_cred.c (gss_release_cred): set minor_status
* add_oid_set_member.c (gss_add_oid_set_member): set minor_status
* compare_name.c (gss_compare_name): set minor_status
* compat.c (check_compat): make sure ret have a defined value
* context_time.c (gss_context_time): set minor_status
* copy_ccache.c (gss_krb5_copy_ccache): set minor_status
* create_emtpy_oid_set.c (gss_create_empty_oid_set): set
minor_status
* delete_sec_context.c (gss_delete_sec_context): set minor_status
* display_name.c (gss_display_name): set minor_status
* display_status.c (gss_display_status): use gss_oid_equal, handle
supplementary errors
* duplicate_name.c (gss_duplicate_name): set minor_status
* inquire_context.c (gss_inquire_context): set lifetime_rec now
when we know it, set minor_status
* inquire_cred.c (gss_inquire_cred): take care to set export value
to something sane before we start so caller will have harmless
values in them if the function fails
* accept_sec_context.c (gss_accept_sec_context): take care to set
export value to something sane before we start so caller will have
harmless values in them if then function fails, set lifetime from
ticket expiration date
* indicate_mechs.c (gss_indicate_mechs): use
gss_create_empty_oid_set and gss_add_oid_set_member
* gssapi.h (gss_ctx_id_t_desc): store the lifetime in the cred,
since there is no ticket transfered in the exported context
* export_name.c (gss_export_name): export name with
GSS_C_NT_EXPORT_NAME wrapping, not just the principal
* import_name.c (import_export_name): new function, parses a
GSS_C_NT_EXPORT_NAME
(import_krb5_name): factor out common code of parsing krb5 name
(gss_oid_equal): rename from oid_equal
* gssapi_locl.h: add prototypes for gss_oid_equal and
gss_verify_mic_internal
* gssapi.h: comment out the argument names
2003-03-15 Love Hörnquist Åstrand <lha@it.su.se>
* gssapi.3: add LIST OF FUNCTIONS and copyright/license
* Makefile.am: s/gss_aquire_cred.3/gss_acquire_cred.3/
* Makefile.am: man_MANS += gss_aquire_cred.3
2003-03-14 Love Hörnquist Åstrand <lha@it.su.se>
* gss_aquire_cred.3: the gssapi api manpage
2003-03-03 Love Hörnquist Åstrand <lha@it.su.se>
* inquire_context.c: (gss_inquire_context): rename argument open
to open_context
* gssapi.h (gss_inquire_context): rename argument open to open_context
2003-02-27 Love Hörnquist Åstrand <lha@it.su.se>
* init_sec_context.c (do_delegation): remove unused variable
subkey
* gssapi.3: all 0.5.x version had broken token delegation
2003-02-21 Love Hörnquist Åstrand <lha@it.su.se>
* (init_auth): only generate one subkey
2003-01-27 Love Hörnquist Åstrand <lha@it.su.se>
* verify_mic.c (verify_mic_des3): fix 3des verify_mic to conform
to rfc (and mit kerberos), provide backward compat hook
* get_mic.c (mic_des3): fix 3des get_mic to conform to rfc (and
mit kerberos), provide backward compat hook
* init_sec_context.c (init_auth): check if we need compat for
older get_mic/verify_mic
* gssapi_locl.h: add prototype for _gss_DES3_get_mic_compat
* gssapi.h (more_flags): add COMPAT_OLD_DES3
* Makefile.am: add gssapi.3 and compat.c
* gssapi.3: add gssapi COMPATIBILITY documentation
* accept_sec_context.c (gss_accept_sec_context): check if we need
compat for older get_mic/verify_mic
* compat.c: check for compatiblity with other heimdal's 3des
get_mic/verify_mic
2002-10-31 Johan Danielsson <joda@pdc.kth.se>
* check return value from gssapi_krb5_init
* 8003.c (gssapi_krb5_verify_8003_checksum): check size of input
2002-09-03 Johan Danielsson <joda@pdc.kth.se>
* wrap.c (wrap_des3): use ETYPE_DES3_CBC_NONE
* unwrap.c (unwrap_des3): use ETYPE_DES3_CBC_NONE
2002-09-02 Johan Danielsson <joda@pdc.kth.se>
* init_sec_context.c: we need to generate a local subkey here
2002-08-20 Jacques Vidrine <n@nectar.com>
* acquire_cred.c, inquire_cred.c, release_cred.c: Use default
credential resolution if gss_acquire_cred is called with
GSS_C_NO_NAME.
2002-06-20 Jacques Vidrine <n@nectar.com>
* import_name.c: Compare name types by value if pointers do
not match. Reported by: "Douglas E. Engert" <deengert@anl.gov>
2002-05-20 Jacques Vidrine <n@nectar.com>
* verify_mic.c (gss_verify_mic), unwrap.c (gss_unwrap): initialize
the qop_state parameter. from Doug Rabson <dfr@nlsystems.com>
2002-05-09 Jacques Vidrine <n@nectar.com>
* acquire_cred.c: handle GSS_C_INITIATE/GSS_C_ACCEPT/GSS_C_BOTH
2002-05-08 Jacques Vidrine <n@nectar.com>
* acquire_cred.c: initialize gssapi; handle null desired_name
2002-03-22 Johan Danielsson <joda@pdc.kth.se>
* Makefile.am: remove non-functional stuff accidentally committed
2002-03-11 Assar Westerlund <assar@sics.se>
* Makefile.am (libgssapi_la_LDFLAGS): bump version to 3:5:2
* 8003.c (gssapi_krb5_verify_8003_checksum): handle zero channel
bindings
2001-10-31 Jacques Vidrine <n@nectar.com>
* get_mic.c (mic_des3): MIC computation using DES3/SHA1
was bogusly appending the message buffer to the result,
overwriting a heap buffer in the process.
2001-08-29 Assar Westerlund <assar@sics.se>
* 8003.c (gssapi_krb5_verify_8003_checksum,
gssapi_krb5_create_8003_checksum): make more consistent by always
returning an gssapi error and setting minor status. update
callers
2001-08-28 Jacques Vidrine <n@nectar.com>
* accept_sec_context.c: Create a cache for delegated credentials
when needed.
2001-08-28 Assar Westerlund <assar@sics.se>
* Makefile.am (libgssapi_la_LDFLAGS): set version to 3:4:2
2001-08-23 Assar Westerlund <assar@sics.se>
* *.c: handle minor_status more consistently
* display_status.c (gss_display_status): handle krb5_get_err_text
failing
2001-08-15 Johan Danielsson <joda@pdc.kth.se>
* gssapi_locl.h: fix prototype for gssapi_krb5_init
2001-08-13 Johan Danielsson <joda@pdc.kth.se>
* accept_sec_context.c (gsskrb5_register_acceptor_identity): init
context and check return value from kt_resolve
* init.c: return error code
2001-07-19 Assar Westerlund <assar@sics.se>
* Makefile.am (libgssapi_la_LDFLAGS): update to 3:3:2
2001-07-12 Assar Westerlund <assar@sics.se>
* Makefile.am (libgssapi_la_LIBADD): add required library
dependencies
2001-07-06 Assar Westerlund <assar@sics.se>
* accept_sec_context.c (gsskrb5_register_acceptor_identity): set
the keytab to be used for gss_acquire_cred too'
2001-07-03 Assar Westerlund <assar@sics.se>
* Makefile.am (libgssapi_la_LDFLAGS): set version to 3:2:2
2001-06-18 Assar Westerlund <assar@sics.se>
* wrap.c: replace gss_krb5_getsomekey with gss_krb5_get_localkey
and gss_krb5_get_remotekey
* verify_mic.c: update krb5_auth_con function names use
gss_krb5_get_remotekey
* unwrap.c: replace gss_krb5_getsomekey with gss_krb5_get_localkey
and gss_krb5_get_remotekey
* gssapi_locl.h (gss_krb5_get_remotekey, gss_krb5_get_localkey):
add prototypes
* get_mic.c: update krb5_auth_con function names. use
gss_krb5_get_localkey
* accept_sec_context.c: update krb5_auth_con function names
2001-05-17 Assar Westerlund <assar@sics.se>
* Makefile.am: bump version to 3:1:2
2001-05-14 Assar Westerlund <assar@sics.se>
* address_to_krb5addr.c: adapt to new address functions
2001-05-11 Assar Westerlund <assar@sics.se>
* try to return the error string from libkrb5 where applicable
2001-05-08 Assar Westerlund <assar@sics.se>
* delete_sec_context.c (gss_delete_sec_context): remember to free
the memory used by the ticket itself. from <tmartin@mirapoint.com>
2001-05-04 Assar Westerlund <assar@sics.se>
* gssapi_locl.h: add config.h for completeness
* gssapi.h: remove config.h, this is an installed header file
sys/types.h is not needed either
2001-03-12 Assar Westerlund <assar@sics.se>
* acquire_cred.c (gss_acquire_cred): remove memory leaks. from
Jason R Thorpe <thorpej@zembu.com>
2001-02-18 Assar Westerlund <assar@sics.se>
* accept_sec_context.c (gss_accept_sec_context): either return
gss_name NULL-ed or set
* import_name.c: set minor_status in some cases where it was not
done
2001-02-15 Assar Westerlund <assar@sics.se>
* wrap.c: use krb5_generate_random_block for the confounders
2001-01-30 Assar Westerlund <assar@sics.se>
* Makefile.am (libgssapi_la_LDFLAGS): bump version to 3:0:2
* acquire_cred.c, init_sec_context.c, release_cred.c: add support
for getting creds from a keytab, from fvdl@netbsd.org
* copy_ccache.c: add gss_krb5_copy_ccache
2001-01-27 Assar Westerlund <assar@sics.se>
* get_mic.c: cast parameters to des function to non-const pointers
to handle the case where these functions actually take non-const
des_cblock *
2001-01-09 Assar Westerlund <assar@sics.se>
* accept_sec_context.c (gss_accept_sec_context): use krb5_rd_cred2
instead of krb5_rd_cred
2000-12-11 Assar Westerlund <assar@sics.se>
* Makefile.am (libgssapi_la_LDFLAGS): bump to 2:3:1
2000-12-08 Assar Westerlund <assar@sics.se>
* wrap.c (wrap_des3): use the checksum as ivec when encrypting the
sequence number
* unwrap.c (unwrap_des3): use the checksum as ivec when encrypting
the sequence number
* init_sec_context.c (init_auth): always zero fwd_data
2000-12-06 Johan Danielsson <joda@pdc.kth.se>
* accept_sec_context.c: de-pointerise auth_context parameter to
krb5_mk_rep
2000-11-15 Assar Westerlund <assar@sics.se>
* init_sec_context.c (init_auth): update to new
krb5_build_authenticator
2000-09-19 Assar Westerlund <assar@sics.se>
* Makefile.am (libgssapi_la_LDFLAGS): bump to 2:2:1
2000-08-27 Assar Westerlund <assar@sics.se>
* init_sec_context.c: actually pay attention to `time_req'
* init_sec_context.c: re-organize. leak less memory.
* gssapi_locl.h (gssapi_krb5_encapsulate, gss_krb5_getsomekey):
update prototypes add assert.h
* gssapi.h (GSS_KRB5_CONF_C_QOP_DES, GSS_KRB5_CONF_C_QOP_DES3_KD):
add
* verify_mic.c: re-organize and add 3DES code
* wrap.c: re-organize and add 3DES code
* unwrap.c: re-organize and add 3DES code
* get_mic.c: re-organize and add 3DES code
* encapsulate.c (gssapi_krb5_encapsulate): do not free `in_data',
let the caller do that. fix the callers.
2000-08-16 Assar Westerlund <assar@sics.se>
* Makefile.am: bump version to 2:1:1
2000-07-29 Assar Westerlund <assar@sics.se>
* decapsulate.c (gssapi_krb5_verify_header): sanity-check length
2000-07-25 Johan Danielsson <joda@pdc.kth.se>
* Makefile.am: bump version to 2:0:1
2000-07-22 Assar Westerlund <assar@sics.se>
* gssapi.h: update OID for GSS_C_NT_HOSTBASED_SERVICE and other
details from rfc2744
2000-06-29 Assar Westerlund <assar@sics.se>
* address_to_krb5addr.c (gss_address_to_krb5addr): actually use
`int' instead of `sa_family_t' for the address family.
2000-06-21 Assar Westerlund <assar@sics.se>
* add support for token delegation. From Daniel Kouril
<kouril@ics.muni.cz> and Miroslav Ruda <ruda@ics.muni.cz>
2000-05-15 Assar Westerlund <assar@sics.se>
* Makefile.am (libgssapi_la_LDFLAGS): set version to 1:1:1
2000-04-12 Assar Westerlund <assar@sics.se>
* release_oid_set.c (gss_release_oid_set): clear set for
robustness. From GOMBAS Gabor <gombasg@inf.elte.hu>
* release_name.c (gss_release_name): reset input_name for
robustness. From GOMBAS Gabor <gombasg@inf.elte.hu>
* release_buffer.c (gss_release_buffer): set value to NULL to be
more robust. From GOMBAS Gabor <gombasg@inf.elte.hu>
* add_oid_set_member.c (gss_add_oid_set_member): actually check if
the oid is a member first. leave the oid_set unchanged if realloc
fails.
2000-02-13 Assar Westerlund <assar@sics.se>
* Makefile.am: set version to 1:0:1
2000-02-12 Assar Westerlund <assar@sics.se>
* gssapi_locl.h: add flags for import/export
* import_sec_context.c (import_sec_context: add flags for what
fields are included. do not include the authenticator for now.
* export_sec_context.c (export_sec_context: add flags for what
fields are included. do not include the authenticator for now.
* accept_sec_context.c (gss_accept_sec_context): set target in
context_handle
2000-02-11 Assar Westerlund <assar@sics.se>
* delete_sec_context.c (gss_delete_sec_context): set context to
GSS_C_NO_CONTEXT
* Makefile.am: add {export,import}_sec_context.c
* export_sec_context.c: new file
* import_sec_context.c: new file
* accept_sec_context.c (gss_accept_sec_context): set trans flag
2000-02-07 Assar Westerlund <assar@sics.se>
* Makefile.am: set version to 0:5:0
2000-01-26 Assar Westerlund <assar@sics.se>
* delete_sec_context.c (gss_delete_sec_context): handle a NULL
output_token
* wrap.c: update to pseudo-standard APIs for md4,md5,sha. some
changes to libdes calls to make them more portable.
* verify_mic.c: update to pseudo-standard APIs for md4,md5,sha.
some changes to libdes calls to make them more portable.
* unwrap.c: update to pseudo-standard APIs for md4,md5,sha. some
changes to libdes calls to make them more portable.
* get_mic.c: update to pseudo-standard APIs for md4,md5,sha. some
changes to libdes calls to make them more portable.
* 8003.c: update to pseudo-standard APIs for md4,md5,sha.
2000-01-06 Assar Westerlund <assar@sics.se>
* Makefile.am: set version to 0:4:0
1999-12-26 Assar Westerlund <assar@sics.se>
* accept_sec_context.c (gss_accept_sec_context): always set
`output_token'
* init_sec_context.c (init_auth): always initialize `output_token'
* delete_sec_context.c (gss_delete_sec_context): always set
`output_token'
1999-12-06 Assar Westerlund <assar@sics.se>
* Makefile.am: bump version to 0:3:0
1999-10-20 Assar Westerlund <assar@sics.se>
* Makefile.am: set version to 0:2:0
1999-09-21 Assar Westerlund <assar@sics.se>
* init_sec_context.c (gss_init_sec_context): initialize `ticket'
* gssapi.h (gss_ctx_id_t_desc): add ticket in here. ick.
* delete_sec_context.c (gss_delete_sec_context): free ticket
* accept_sec_context.c (gss_accept_sec_context): stove away
`krb5_ticket' in context so that ugly programs such as
gss_nt_server can get at it. uck.
1999-09-20 Johan Danielsson <joda@pdc.kth.se>
* accept_sec_context.c: set minor_status
1999-08-04 Assar Westerlund <assar@sics.se>
* display_status.c (calling_error, routine_error): right shift the
code to make it possible to index into the arrays
1999-07-28 Assar Westerlund <assar@sics.se>
* gssapi.h (GSS_C_AF_INET6): add
* import_name.c (import_hostbased_name): set minor_status
1999-07-26 Assar Westerlund <assar@sics.se>
* Makefile.am: set version to 0:1:0
Wed Apr 7 14:05:15 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* display_status.c: set minor_status
* init_sec_context.c: set minor_status
* lib/gssapi/init.c: remove donep (check gssapi_krb5_context
directly)
|