1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566
|
/** @file */
/*------------------------------------------------------------------
* est/est_client.c - EST client specific code
*
* Assumptions: - Web server using this module utilizes
* OpenSSL for HTTPS services.
* - OpenSSL is linked along with this
* module.
*
* April, 2013
*
* Copyright (c) 2013, 2016, 2017, 2018, 2019 by cisco Systems, Inc.
* All rights reserved.
**------------------------------------------------------------------
*/
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#ifndef WIN32
#include <unistd.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#else
#include <Ws2tcpip.h>
#include <BaseTsd.h>
#include <WinDef.h>
#include <WinNT.h>
#include <wincrypt.h>
#endif
#include <sys/types.h>
#include <openssl/ssl.h>
#include <openssl/cms.h>
#include <openssl/rand.h>
#include <openssl/evp.h>
#include "est.h"
#include "est_locl.h"
#include "est_ossl_util.h"
#include "jsmn.h"
#include "safe_mem_lib.h"
#include "safe_str_lib.h"
#include <openssl/x509v3.h>
#include <openssl/asn1.h>
#ifdef HAVE_URIPARSER
#include "uriparser/Uri.h"
#endif
#ifdef WIN32
#define close(socket) closesocket(socket)
WSADATA wsaData;
#define SLEEP(x) Sleep(x*1000)
#else
#define SLEEP(x) sleep(x)
#endif
#define SSL_EXDATA_INDEX_INVALID -1
int e_ctx_ssl_exdata_index = SSL_EXDATA_INDEX_INVALID;
/*****************************************************************************
* EST Client operations
*****************************************************************************/
/*
* Utility function to set the certificate and private key to use
* for a SSL context.
*
* Returns 0 on success
*/
int est_client_set_cert_and_key (SSL_CTX *ctx, X509 *cert, EVP_PKEY *key)
{
if (SSL_CTX_use_certificate(ctx, cert) <= 0) {
EST_LOG_ERR("Error setting certificate");
ossl_dump_ssl_errors();
return 1;
}
if (SSL_CTX_use_PrivateKey(ctx, key) <= 0) {
EST_LOG_ERR("Unable to set private key");
ossl_dump_ssl_errors();
return 1;
}
/*
* Verify the key matches the cert
*/
if (!SSL_CTX_check_private_key(ctx)) {
EST_LOG_ERR("Private key does not match the certificate public key");
ossl_dump_ssl_errors();
return 1;
}
return 0;
}
/*
* populate_x509_request will build an x509 request buffer. It does this by
* calls into OpenSSL to insert the fields of the x509 header.
*
* Parameters:
* req: pointer to the buffer that is to hold the x509 request header
* pkey: public key to be placed into the x509 request
* cn: Common Name to be placed into the x509 request
* cp: challenge password to be placed into the x509 header
*
* Return value:
* EST_ERR_NONE if success
*/
static EST_ERROR populate_x509_request (EST_CTX *ctx, X509_REQ *req, EVP_PKEY *pkey,
char *cn, char *cp)
{
X509_NAME *subj;
/* setup version number */
if (!X509_REQ_set_version(req, 0L)) {
EST_LOG_ERR("Unable to set X509 version");
ossl_dump_ssl_errors();
return (EST_ERR_X509_VER);
}
/*
* Add Common Name entry
*/
subj = X509_REQ_get_subject_name(req);
if (!X509_NAME_add_entry_by_txt(subj, "CN", MBSTRING_ASC,
(unsigned char*)cn, -1, -1, 0)) {
EST_LOG_ERR("Unable to set X509 common name");
ossl_dump_ssl_errors();
return (EST_ERR_X509_CN);
}
/*
* Add challengePassword attribute if required
* No need to remove/add attributes here, only the PoP is
* part of the simple enroll flow.
*/
if (ctx->csr_pop_required || ctx->client_force_pop) {
EST_LOG_INFO("Client will include challengePassword in CSR");
if (!X509_REQ_add1_attr_by_NID(req, NID_pkcs9_challengePassword,
MBSTRING_ASC, (unsigned char*)cp, -1)) {
EST_LOG_ERR("Unable to set X509 challengePassword attribute");
ossl_dump_ssl_errors();
return (EST_ERR_X509_ATTR);
}
}
/*
* Set the public key on the request
*/
if (!pkey) {
EST_LOG_ERR("No pkey for X509 req");
return (EST_ERR_NO_KEY);
}
if (!X509_REQ_set_pubkey(req, pkey)) {
EST_LOG_ERR("Unable to set public key");
ossl_dump_ssl_errors();
return (EST_ERR_X509_PUBKEY);
}
return (EST_ERR_NONE);
}
/*
* This function will generate a PKCS10 request.
*
* Parameters:
* cn: Common Name to put into the certificate.
* cp: TLS unique ID for the SSL session, becomes the challenge password
* pkey: Private key to use for signing the request.
*
* Return value:
* EST_ERR_NONE if success
*/
static EST_ERROR est_generate_pkcs10 (EST_CTX *ctx, char *cn, char *cp,
EVP_PKEY *pkey, X509_REQ **pkcs10)
{
X509_REQ *req = NULL;
EST_ERROR rv;
int ossl_rv = 0;
if (!pkey) {
return EST_ERR_INVALID_PARAMETERS;
}
req = X509_REQ_new();
if (req == NULL) {
EST_LOG_ERR("Unable to allocate X509_REQ");
ossl_dump_ssl_errors();
return (EST_ERR_MALLOC);
}
rv = populate_x509_request(ctx, req, pkey, cn, cp);
if (rv != EST_ERR_NONE) {
X509_REQ_free(req);
return (rv);
}
/*
* Sign the request
*/
ossl_rv = est_X509_REQ_sign(req, pkey, ctx->signing_digest);
if (!ossl_rv) {
EST_LOG_ERR("Unable to sign X509 cert request");
X509_REQ_free(req);
ossl_dump_ssl_errors();
return (EST_ERR_X509_SIGN);
}
*pkcs10 = req;
return (EST_ERR_NONE);
}
/*
* This function is a callback used by OpenSSL's verify_cert function.
* It's called at the end of a cert verification to allow an opportunity to
* gather more information regarding a failing cert verification, and to
* possibly change the result of the verification.
*
* This callback is similar to the ossl routine, but does not alter
* the verification result.
*/
static int est_client_cacert_verify_cb (int ok, X509_STORE_CTX *ctx)
{
int cert_error = X509_STORE_CTX_get_error(ctx);
X509 *current_cert = X509_STORE_CTX_get_current_cert(ctx);
EST_LOG_INFO("enter function: ok=%d cert_error=%d", ok, cert_error);
if (!ok) {
if (current_cert) {
X509_NAME_print_ex_fp(stdout,
X509_get_subject_name(current_cert),
0, XN_FLAG_ONELINE);
printf("\n");
}
EST_LOG_INFO("%s error %d at %d depth lookup: %s\n",
X509_STORE_CTX_get0_parent_ctx(ctx) ? "[CRL path]" : "",
cert_error,
X509_STORE_CTX_get_error_depth(ctx),
X509_verify_cert_error_string(cert_error));
}
return (ok);
}
/*
* This function will remove CRLs from a received cacert response buffer.
*
* Parameters:
* ctx: EST Context representing this session
* cacerts: pointer to the buffer holding the resulting CA certs
* cacerts_len: length of the cacerts buffer
* p7: pointer to the pkcs7 buffer that was received
*
* Return value:
* EST_ERR_NONE if success
*/
static EST_ERROR est_client_remove_crls (EST_CTX *ctx, unsigned char *cacerts,
int *cacerts_len, PKCS7 *p7)
{
int nid = 0;
int crls_found = 0;
BIO *b64_enc = NULL;
BIO *p7bio_out = NULL;
int new_cacerts_len = 0;
char *new_cacerts_buf = NULL;
int count = 0;
nid=OBJ_obj2nid(p7->type);
switch (nid)
{
case NID_pkcs7_signed:
if (p7->d.sign->crl) {
sk_X509_CRL_pop_free(p7->d.sign->crl, X509_CRL_free);
p7->d.sign->crl = NULL;
crls_found = 1;
}
break;
case NID_pkcs7_signedAndEnveloped:
if (p7->d.signed_and_enveloped->crl) {
sk_X509_CRL_pop_free(p7->d.signed_and_enveloped->crl, X509_CRL_free);
p7->d.sign->crl = NULL;
crls_found = 1;
}
break;
default:
EST_LOG_ERR("Invalid NID value on PKCS7 structure");
return (EST_ERR_CACERT_VERIFICATION);
break;
}
/*
* If CRLs were removed, then the original PKCS7 buffer needs to be
* updated. This will always be base64 encoded.
* - Allocate the BIOs,
* - Write the PKCS7 struct back into PEM format,
* - Get the pointer and length to the new base64 PEM encoded buffer,
* - and then copy it into the original buffer that was passed in.
* Since the CRLs are being removed, the new buffer will always be shorter
* and will fit into the original buffer.
*/
if (crls_found) {
EST_LOG_INFO("CRL(s) attached with the CA Certificates. Removing CRL(s)");
b64_enc = BIO_new(BIO_f_base64());
if (b64_enc == NULL) {
EST_LOG_ERR("BIO_new failed");
ossl_dump_ssl_errors();
return(EST_ERR_MALLOC);
}
p7bio_out = BIO_new(BIO_s_mem());
if (p7bio_out == NULL) {
EST_LOG_ERR("Unable to access the CA cert buffer");
ossl_dump_ssl_errors();
return(EST_ERR_MALLOC);
}
p7bio_out = BIO_push(b64_enc, p7bio_out);
memzero_s(cacerts, *cacerts_len);
count = i2d_PKCS7_bio(p7bio_out, p7);
if (count == 0) {
EST_LOG_ERR("PEM_write_bio_PKCS7 failed");
ossl_dump_ssl_errors();
BIO_free_all(p7bio_out);
return (EST_ERR_CACERT_VERIFICATION);
}
(void)BIO_flush(p7bio_out);
/*
* BIO_get_mem_data just returns the pointer and length to the data
* contained in the mem BIO. Nothing is allocated and passed back
*/
new_cacerts_len = (int) BIO_get_mem_data(p7bio_out, (char**)&new_cacerts_buf);
if (new_cacerts_len <= 0) {
EST_LOG_ERR("Failed to copy PKCS7 data");
ossl_dump_ssl_errors();
BIO_free_all(p7bio_out);
return (EST_ERR_CACERT_VERIFICATION);
}
/*
* copy the new buffer back into the old buffer
*/
memcpy_s(cacerts, *cacerts_len, new_cacerts_buf, new_cacerts_len);
*cacerts_len = new_cacerts_len;
}
BIO_free_all(p7bio_out);
return EST_ERR_NONE;
}
/*
* This function will decode the passed base64 encoded buffer and return the
* decoded cacerts. If returning EST_ERR_NONE, caller is responsible for
* freeing the cacerts_decoded buffer
*/
static EST_ERROR b64_decode_cacerts (unsigned char *cacerts, int *cacerts_len,
unsigned char **cacerts_decoded,
int *cacerts_decoded_len)
{
BIO *in = NULL;
BIO *b64 = NULL;
unsigned char *decoded_buf;
int decoded_buf_len;
*cacerts_decoded = NULL;
*cacerts_decoded_len = 0;
b64 = BIO_new(BIO_f_base64());
if (b64 == NULL) {
EST_LOG_ERR("BIO_new failed");
ossl_dump_ssl_errors();
return (EST_ERR_MALLOC);
}
/*
* Decoding will always take up less than the original buffer.
*/
in = BIO_new_mem_buf(cacerts, *cacerts_len);
if (in == NULL) {
EST_LOG_ERR("Unable to access the CA cert buffer");
ossl_dump_ssl_errors();
BIO_free_all(b64);
return (EST_ERR_MALLOC);
}
in = BIO_push(b64, in);
decoded_buf = malloc(*cacerts_len);
if (decoded_buf == NULL) {
EST_LOG_ERR("Unable to allocate CA cert buffer for decode");
BIO_free_all(in);
return (EST_ERR_MALLOC);
}
decoded_buf_len = BIO_read(in, decoded_buf, *cacerts_len);
*cacerts_decoded = decoded_buf;
*cacerts_decoded_len = decoded_buf_len;
BIO_free_all(in);
return (EST_ERR_NONE);
}
/*
* If returning EST_ERR_NONE, caller is responsible for freeing the PKCS7 struct
*/
static EST_ERROR create_PKCS7 (unsigned char *cacerts_decoded, int cacerts_decoded_len,
PKCS7 **pkcs7out)
{
BIO *p7bio_in = NULL;
PKCS7 *pkcs7 = NULL;
/*
* Now get the PKCS7 formatted buffer of certificates read into a stack of
* X509 certs
*/
p7bio_in = BIO_new_mem_buf(cacerts_decoded, cacerts_decoded_len);
if (p7bio_in == NULL) {
EST_LOG_ERR("Unable to access the PKCS7 buffer");
ossl_dump_ssl_errors();
return (EST_ERR_MALLOC);
}
pkcs7 = d2i_PKCS7_bio(p7bio_in,NULL);
if (pkcs7 == NULL) {
EST_LOG_ERR("Unable to read in PKCS7 based certificate buffer");
ossl_dump_ssl_errors();
BIO_free_all(p7bio_in);
return (EST_ERR_LOAD_CACERTS);
}
BIO_free_all(p7bio_in);
*pkcs7out = pkcs7;
return EST_ERR_NONE;
}
static EST_ERROR PKCS7_to_stack (PKCS7 *pkcs7, STACK_OF(X509) **stack)
{
int nid = 0;
nid=OBJ_obj2nid(pkcs7->type);
switch (nid)
{
case NID_pkcs7_signed:
*stack = pkcs7->d.sign->cert;
break;
case NID_pkcs7_signedAndEnveloped:
*stack = pkcs7->d.signed_and_enveloped->cert;
break;
default:
EST_LOG_ERR("Invalid NID value on PKCS7 structure");
return (EST_ERR_CACERT_VERIFICATION);
break;
}
if (*stack == NULL) {
EST_LOG_ERR("X509 certs not found within PKCS7 buffer");
return (EST_ERR_CACERT_VERIFICATION);
}
return EST_ERR_NONE;
}
/*
* This function is invoked when the CACerts response has been received. The
* cert chain is built into a cert store and then each certificate is verified
* against this store essentially verifying the cert chain against itself to
* ensure that each intermediate can be verified back to one of the included
* root certs in the CACerts response. If CRLs are attached these will be
* removed and a new PKCS7 buffer is created.
*
* Parameters:
* ctx: EST Context representing this session
* cacerts: pointer to the buffer holding the received CA certs
* cacerts_len: length of the cacerts buffer
*
* Return value:
* EST_ERR_NONE if success
*/
static EST_ERROR verify_cacert_resp (EST_CTX *ctx, unsigned char *cacerts,
int *cacerts_len)
{
int rv = 0;
int failed = 0;
EST_ERROR est_rc = EST_ERR_NONE;
X509_STORE *trusted_cacerts_store = NULL;
STACK_OF(X509) *stack = NULL;
X509 *current_cert = NULL;
int i;
unsigned char *cacerts_decoded = NULL;
int cacerts_decoded_len = 0;
X509_STORE_CTX *store_ctx = NULL;
PKCS7 *pkcs7 = NULL;
if (ctx == NULL || cacerts == NULL || cacerts_len == 0) {
EST_LOG_ERR("Invalid parameter. ctx = %x cacerts = %x cacerts_len = %x",
ctx, cacerts, cacerts_len);
return (EST_ERR_INVALID_PARAMETERS);
}
/*
* - Base64 decode the incoming ca certs buffer,
* - convert to a PKCS7 structure,
* - extract out the stack of certs.
*/
rv = b64_decode_cacerts(cacerts, cacerts_len,
&cacerts_decoded, &cacerts_decoded_len);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Base64 decode of received CA certs failed");
return (rv);
}
rv = create_PKCS7(cacerts_decoded, cacerts_decoded_len, &pkcs7);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Failed to build PKCS7 structure from received buffer");
free(cacerts_decoded);
return (rv);
}
rv = PKCS7_to_stack(pkcs7, &stack);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Could not obtain stack of ca certs from PKCS7 structure");
free(cacerts_decoded);
PKCS7_free(pkcs7);
return (rv);
}
/*
* At this point we have the stack of X509 certs that make up
* the CA certs response sent from the EST server.
* - Build a store of "trusted" certs to use in the verify
* - walk through each cert and verify it
* - Build a store context from the store and the cert to be verified and
* call the verify function
*/
trusted_cacerts_store = X509_STORE_new();
if (trusted_cacerts_store == NULL) {
EST_LOG_ERR("Unable to allocate cert store");
ossl_dump_ssl_errors();
free(cacerts_decoded);
PKCS7_free(pkcs7);
return (EST_ERR_MALLOC);
}
X509_STORE_set_verify_cb(trusted_cacerts_store, est_client_cacert_verify_cb);
for (i=0; i<sk_X509_num(stack); i++) {
current_cert = sk_X509_value(stack, i);
/*
* Is it self signed? If so, add it in the trusted store, otherwise,
* add it to the untrusted store.
*/
rv = X509_check_issued(current_cert, current_cert);
if (rv == X509_V_OK) {
EST_LOG_INFO("Adding cert to trusted store (%s)", X509_get_subject_name(current_cert));
X509_STORE_add_cert(trusted_cacerts_store, current_cert);
}
}
/*
* set up a X509 Store Context
*/
store_ctx = X509_STORE_CTX_new();
if (store_ctx == NULL) {
EST_LOG_ERR("Unable to allocate a new store context");
ossl_dump_ssl_errors();
free(cacerts_decoded);
PKCS7_free(pkcs7);
X509_STORE_free(trusted_cacerts_store);
return(EST_ERR_MALLOC);
}
for (i=0; i<sk_X509_num(stack); i++) {
if (!X509_STORE_CTX_init(store_ctx, trusted_cacerts_store, NULL, stack)) {
EST_LOG_ERR("Unable to initialize the new store context");
ossl_dump_ssl_errors();
free(cacerts_decoded);
PKCS7_free(pkcs7);
X509_STORE_free(trusted_cacerts_store);
X509_STORE_CTX_free(store_ctx);
return ( EST_ERR_MALLOC);
}
current_cert = sk_X509_value(stack, i);
EST_LOG_INFO("Adding cert to store (%s)", X509_get_subject_name(current_cert));
X509_STORE_CTX_set_cert(store_ctx, current_cert);
rv = X509_verify_cert(store_ctx);
if (!rv) {
/*
* this cert failed verification. Log this and continue on
*/
EST_LOG_WARN("Certificate failed verification (%s)", X509_get_subject_name(current_cert));
failed = 1;
}
X509_STORE_CTX_cleanup(store_ctx);
}
/*
* Finally, remove any CRLs that might be attached.
*/
est_rc = est_client_remove_crls(ctx, cacerts, cacerts_len, pkcs7);
free(cacerts_decoded);
X509_STORE_free(trusted_cacerts_store);
X509_STORE_CTX_free(store_ctx);
PKCS7_free(pkcs7);
if (failed) {
return (EST_ERR_CACERT_VERIFICATION);
} else {
return est_rc;
}
}
/*
* This function is registered with SSL to be called during the verification
* of each certificate in the server's identity cert chain. The main purpose
* is to look for the case where the cert could not be verified. In this case,
* if the EST client app has registered a callback to receive these untrusted
* certs, it will be forwarded up to the EST client application.
*
* Parameters:
* ok: The status of this certificate from the SSL verify code.
* x_ctx: Ptr to the X509 certificate store structure
*
* Return value:
* int: The potentially modified status after processing this certificate. This cane
* be modified by the ET client application if they've provided a callback
* allowing it to be processed, or modified here in this callback.
*/
static int cert_verify_cb (int ok, X509_STORE_CTX *x_ctx)
{
SSL *ssl;
EST_CTX *e_ctx;
int approve;
int cert_error = 0;
X509 *current_cert = NULL;
approve = ok;
if (x_ctx == NULL) {
EST_LOG_ERR("Invalid X509 context pointer");
return (approve);
}
cert_error = X509_STORE_CTX_get_error(x_ctx);
current_cert = X509_STORE_CTX_get_current_cert(x_ctx);
EST_LOG_INFO("entering: Cert passed up from OpenSSL. error = %d (%s) \n",
cert_error, X509_verify_cert_error_string(cert_error));
/*
* Retrieve the pointer to the SSL structure for this connection and then
* the application specific data stored into the SSL object. This will be
* our EST ctx for this EST session.
*/
if (e_ctx_ssl_exdata_index == SSL_EXDATA_INDEX_INVALID) {
EST_LOG_ERR("Invalid SSL exdata index for EST context value");
return (approve);
}
ssl = X509_STORE_CTX_get_ex_data(x_ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
if (!ssl) {
EST_LOG_ERR("NULL pointer retrieved for SSL session pointer from X509 ctx ex_data");
return (approve);
}
e_ctx = SSL_get_ex_data(ssl, e_ctx_ssl_exdata_index);
if (!e_ctx) {
EST_LOG_ERR("NULL pointer retrieved for EST context from SSL ex_data");
return (approve);
}
if (!ok) {
switch (cert_error) {
/*
* Cases where we notify the client application:
*
* CERT_UNTRUSTED is what is expected, but not what we get in the
* case where we cannot verify our server's cert.
* SELF_SIGNED_CERT_IN_CHAIN is what currently results with our server
* when we cannot verify its cert.
* UNABLE_TO_GET_CRL is passed up to make sure the application knows
* that although
*/
case X509_V_ERR_CERT_UNTRUSTED:
case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
case X509_V_ERR_UNABLE_TO_GET_CRL:
/*
* If the application provided a callback then go ahead and pass
* this cert store up. If not, then log a warning and return what
* SSL gave us for a status.
*/
if (e_ctx->manual_cert_verify_cb) {
EST_LOG_INFO("EST client application server cert verify function is registered\n");
approve = e_ctx->manual_cert_verify_cb(current_cert, cert_error);
} else {
EST_LOG_INFO("NO EST client application server cert verify function registered\n");
if (cert_error == X509_V_ERR_UNABLE_TO_GET_CRL) {
/*
* We've enabled CRL checking in the TLS stack. If the
* application hasn't loaded a CRL, then this verify error
* can occur. The peer's cert is valid, but we can't
* confirm if it was revoked. The app has not provided
* a way for us to notify on this, so our only option is
* to log a warning and proceed on.
*/
EST_LOG_WARN("No CRL loaded, TLS peer will be allowed.");
approve = 1;
}
}
break;
/* The remainder of these will result in the ok state remaining unchanged
* and a EST log warning message being logged.
*/
case X509_V_ERR_NO_EXPLICIT_POLICY:
case X509_V_ERR_CERT_HAS_EXPIRED:
/* since we are just checking the certificates, it is
* ok if they are self signed. But we should still warn
* the user.
*/
case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
/* Continue after extension errors too */
case X509_V_ERR_INVALID_CA:
case X509_V_ERR_INVALID_NON_CA:
case X509_V_ERR_PATH_LENGTH_EXCEEDED:
case X509_V_ERR_INVALID_PURPOSE:
case X509_V_ERR_CRL_HAS_EXPIRED:
case X509_V_ERR_CRL_NOT_YET_VALID:
case X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION:
case X509_V_ERR_CERT_REVOKED:
default:
EST_LOG_WARN("Certificate verify failed (reason = %d) (%s)",
cert_error, X509_verify_cert_error_string(cert_error));
break;
}
}
return (approve);
}
/*
* This function is used to create and initialize an
* SSL_CTX that will be used for client and proxy EST operations.
* The SSL_CTX is stored on the EST_CTX.
*
* Parameters:
* ctx: EST Context
*
* Return value:
* EST_ERROR
* EST_ERR_NONE if success
*/
static EST_ERROR est_client_init_ssl_ctx (EST_CTX *ctx)
{
SSL_CTX *s_ctx;
X509_VERIFY_PARAM *vpm = NULL;
EST_ERROR rv = EST_ERR_NONE;
est_log_version();
if (ctx == NULL) {
EST_LOG_ERR("Invalid context pointer");
return EST_ERR_NO_CTX;
}
#ifdef HAVE_OLD_OPENSSL
if ((s_ctx = SSL_CTX_new(SSLv23_client_method())) == NULL) {
#else
if ((s_ctx = SSL_CTX_new(TLS_client_method())) == NULL) {
#endif
EST_LOG_ERR("Failed to obtain a new SSL Context\n");
ossl_dump_ssl_errors();
return EST_ERR_SSL_CTX_NEW;
}
#ifndef HAVE_OLD_OPENSSL
/*
* Temporarily limit EST to no higher than TLS 1.2
*/
SSL_CTX_set_max_proto_version(s_ctx, TLS1_2_VERSION);
#endif
/*
* Only TLS 1.1 or above can be used for EST
*/
SSL_CTX_set_options(s_ctx, SSL_OP_NO_SSLv2 |
SSL_OP_NO_SSLv3 |
SSL_OP_NO_TLSv1);
/*
* limit the cipher suites that are offered
*/
if (!SSL_CTX_set_cipher_list(s_ctx, EST_CIPHER_LIST)) {
EST_LOG_ERR("Failed to set SSL cipher suites\n");
ossl_dump_ssl_errors();
return EST_ERR_SSL_CIPHER_LIST;
}
/*
* Make sure we're verifying the server
*/
SSL_CTX_set_verify(s_ctx, SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
cert_verify_cb);
/*
* leverage the cert store we already created from the
* trusted CA chain provided by the application.
*
* In either case, the SSL stack will clean up the cert store during the
* SSL_CTX_free(), so let's remove our reference to it so we don't try to
* clean it up ourselves later
*/
SSL_CTX_set_cert_store(s_ctx, ctx->trusted_certs_store);
ctx->trusted_certs_store = NULL;
/*
* Set up X509 params and assign them to the SSL ctx
* - Enable CRL checks
* - Max # of untrusted CA certs that can exist in a chain
* - ensure that the cert is being used as intended, if
* it contains the X509 KeyUsage extension
*/
vpm = X509_VERIFY_PARAM_new();
if (vpm == NULL) {
EST_LOG_ERR("Unable to allocate a verify parameter structure");
ossl_dump_ssl_errors();
return (EST_ERR_MALLOC);
}
X509_VERIFY_PARAM_set_depth(vpm, EST_TLS_VERIFY_DEPTH);
X509_VERIFY_PARAM_set_purpose(vpm, X509_PURPOSE_SSL_SERVER);
SSL_CTX_set1_param(s_ctx, vpm);
X509_VERIFY_PARAM_free(vpm);
/*
* Save the reference to the SSL session
* This will be used later when matching the EST_CTX to the SSL context
* in est_ssl_info_cb().
*/
ctx->ssl_ctx = s_ctx;
if (e_ctx_ssl_exdata_index == SSL_EXDATA_INDEX_INVALID) {
e_ctx_ssl_exdata_index = SSL_get_ex_new_index(0, "EST Context", NULL, NULL, NULL);
}
/*
* This last config setting is not ctx based, but instead, global to the
* entire libcrypto library. Need to ensure that CSR string attributes
* are added in ASCII printable format.
*/
ASN1_STRING_set_default_mask(B_ASN1_PRINTABLE);
return rv;
}
/*
* This function calculates the digest value to be
* used in HTTP requests when the server has asked
* the client to use HTTP digest authentication.
* It uses the tokens that were parsed from the HTTP
* server response earlier to calculate the digest.
*/
static unsigned char *est_client_generate_auth_digest (EST_CTX *ctx, char *uri,
char *user, char *pwd)
{
EVP_MD_CTX *mdctx;
const EVP_MD *md = EVP_md5();
uint8_t ha1[EVP_MAX_MD_SIZE];
unsigned int ha1_len;
char ha1_str[EST_MAX_MD5_DIGEST_STR_LEN];
uint8_t ha2[EVP_MAX_MD_SIZE];
unsigned int ha2_len;
char ha2_str[EST_MAX_MD5_DIGEST_STR_LEN];
char nonce_cnt[9] = "00000001";
unsigned char digest[EVP_MAX_MD_SIZE];
unsigned int d_len;
unsigned char *rv;
/*
* Calculate HA1 using username, realm, password, and server nonce
*/
mdctx = EVP_MD_CTX_create();
if (!EVP_DigestInit_ex(mdctx, md, NULL)) {
EST_LOG_ERR("Unable to Initialize digest");
return NULL;
}
EVP_DigestUpdate(mdctx, user, strnlen_s(user, MAX_UIDPWD));
EVP_DigestUpdate(mdctx, ":", 1);
EVP_DigestUpdate(mdctx, ctx->realm, strnlen_s(ctx->realm, MAX_REALM));
EVP_DigestUpdate(mdctx, ":", 1);
EVP_DigestUpdate(mdctx, pwd, strnlen_s(pwd, MAX_UIDPWD));
EVP_DigestFinal(mdctx, ha1, &ha1_len);
EVP_MD_CTX_destroy(mdctx);
est_hex_to_str(ha1_str, ha1, ha1_len);
/*
* Calculate HA2 using method, URI,
*/
mdctx = EVP_MD_CTX_create();
if (!EVP_DigestInit_ex(mdctx, md, NULL)) {
EST_LOG_ERR("Unable to Initialize digest");
return NULL;
}
EVP_DigestUpdate(mdctx, "POST", 4);
EVP_DigestUpdate(mdctx, ":", 1);
EVP_DigestUpdate(mdctx, uri, strnlen_s(uri, MAX_REALM));
EVP_DigestFinal(mdctx, ha2, &ha2_len);
EVP_MD_CTX_destroy(mdctx);
est_hex_to_str(ha2_str, ha2, ha2_len);
/*
* Calculate auth digest using HA1, nonce, nonce count, client nonce, qop, HA2
*/
mdctx = EVP_MD_CTX_create();
if (!EVP_DigestInit_ex(mdctx, md, NULL)) {
EST_LOG_ERR("Unable to Initialize digest");
return NULL;
}
EVP_DigestUpdate(mdctx, ha1_str, ha1_len * 2);
EVP_DigestUpdate(mdctx, ":", 1);
EVP_DigestUpdate(mdctx, ctx->s_nonce, strnlen_s(ctx->s_nonce, MAX_NONCE));
EVP_DigestUpdate(mdctx, ":", 1);
EVP_DigestUpdate(mdctx, nonce_cnt, strnlen_s(nonce_cnt, MAX_NC));
EVP_DigestUpdate(mdctx, ":", 1);
EVP_DigestUpdate(mdctx, ctx->c_nonce, strnlen_s(ctx->c_nonce, MAX_NONCE));
EVP_DigestUpdate(mdctx, ":", 1);
EVP_DigestUpdate(mdctx, "auth", 4);
EVP_DigestUpdate(mdctx, ":", 1);
EVP_DigestUpdate(mdctx, ha2_str, ha2_len * 2);
EVP_DigestFinal(mdctx, digest, &d_len);
EVP_MD_CTX_destroy(mdctx);
rv = malloc(EST_MAX_MD5_DIGEST_STR_LEN);
if (rv == NULL) {
EST_LOG_ERR("Unable to allocate memory for digest");
return NULL;
}
est_hex_to_str((char *)rv, digest, d_len);
return (rv);
}
/*
* est_client_retrieve_credentials() is used to retrieve the credentials when
* the server has requested either BASIC or DIGEST mode. The values needed from
* the application layer in either mode are the same, username, password, but the
* API will indicate the mode to the callback in case anything changes.
*/
static void est_client_retrieve_credentials (EST_CTX *ctx, EST_HTTP_AUTH_MODE auth_mode,
char *user, char *pwd)
{
EST_HTTP_AUTH_HDR auth_credentials;
EST_HTTP_AUTH_CRED_RC rc;
/*
* See if we only have one part of them. If so, reset the part we
* have.
*/
if (ctx->userid[0] != '\0') {
memzero_s(ctx->userid, sizeof(ctx->userid));
}
if (ctx->password[0] != '\0') {
memzero_s(ctx->password, sizeof(ctx->password));
}
/*
* Need to ask the application layer for the credentials
*/
memzero_s(&auth_credentials, sizeof(auth_credentials));
if (ctx->auth_credentials_cb) {
auth_credentials.mode = auth_mode;
rc = ctx->auth_credentials_cb(&auth_credentials);
if (rc == EST_HTTP_AUTH_CRED_NOT_AVAILABLE) {
EST_LOG_ERR("Attempt to obtain token from application failed.");
}
}
/*
* Did we get the credentials we expected? If not, point to a NULL string
* to generate the header
*/
if (auth_credentials.user == NULL) {
user[0] = '\0';
} else if (MAX_UIDPWD < strnlen_s(auth_credentials.user, MAX_UIDPWD+1)) {
EST_LOG_ERR("Userid provided is larger than the max of %d", MAX_UIDPWD);
user[0] = '\0';
} else {
if (EOK != strcpy_s(user, MAX_UIDPWD, auth_credentials.user)) {
EST_LOG_ERR("Invalid User ID provided");
}
}
if (auth_credentials.pwd == NULL) {
pwd[0] = '\0';
} else if (MAX_UIDPWD < strnlen_s(auth_credentials.pwd, MAX_UIDPWD+1)) {
EST_LOG_ERR("Password provided is larger than the max of %d", MAX_UIDPWD);
pwd[0] = '\0';
} else {
if (EOK != strcpy_s(pwd, MAX_UIDPWD, auth_credentials.pwd)) {
EST_LOG_ERR("Invalid User password provided");
}
}
cleanse_auth_credentials(&auth_credentials);
}
/*
* This function adds the HTTP authentication header to
* an outgoing HTTP request, allowing the server to
* authenticate the EST client.
*
* Parameters:
* ctx: EST context
* hdr: pointer to the buffer to hold the header
* uri: pointer to a buffer that holds the uri to be used in the header
*/
static void est_client_add_auth_hdr (EST_CTX *ctx, char *hdr, char *uri)
{
int hdr_len;
unsigned char *digest;
unsigned char client_random[8];
char both[MAX_UIDPWD*2+2]; /* both UID and PWD + ":" + /0 */
char both_b64[2*2*MAX_UIDPWD];
int both_len = 0;
EST_HTTP_AUTH_HDR auth_credentials;
EST_HTTP_AUTH_CRED_RC rc;
char *token = NULL;
char token_b64[MAX_AUTH_TOKEN_LEN*2];
char user[MAX_UIDPWD+1];
char pwd[MAX_UIDPWD+1];
int enc_len = 0;
int token_len = 0;
memzero_s(both, MAX_UIDPWD*2+2);
memzero_s(both_b64, 2*2*MAX_UIDPWD);
hdr_len = (int) strnlen_s(hdr, EST_HTTP_REQ_TOTAL_LEN);
if (hdr_len == EST_HTTP_REQ_TOTAL_LEN) {
EST_LOG_WARN("Authentication header took up the maximum amount in buffer (%d)",
EST_HTTP_REQ_TOTAL_LEN);
}
switch (ctx->auth_mode) {
case AUTH_BASIC:
/*
* make sure we have both parts of the credentials to send. If we do,
* then we're operating in the original mode where the app layer
* provides them up front before they're needed. If not, then we can
* now go ask for them from the app layer.
*/
if (ctx->userid[0] == '\0' && ctx->password[0] == '\0') {
memzero_s(user, MAX_UIDPWD+1);
memzero_s(pwd, MAX_UIDPWD+1);
est_client_retrieve_credentials(ctx, ctx->auth_mode, user, pwd);
/*
* regardless of what comes back, build the string containing both
*/
snprintf(both, MAX_UIDPWD*2+2, "%s:%s", user, pwd);
} else {
/*
* Use what was given during configuration through est_client_set_auth
*/
snprintf(both, MAX_UIDPWD*2+2, "%s:%s", ctx->userid,
ctx->password);
}
/*
* base64 encode the combined string and build the HTTP auth header
*/
both_len = strnlen_s(both, MAX_UIDPWD*2+2);
enc_len = est_base64_encode((const char *) both, both_len, both_b64, (2 * 2 * MAX_UIDPWD), 0);
if (enc_len <= 0) {
EST_LOG_ERR("Unable to encode basic auth value");
}
snprintf(hdr + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len,
"Authorization: Basic %s\r\n", both_b64);
break;
case AUTH_DIGEST:
/* Generate a client nonce */
if (!RAND_bytes(client_random, 8)) {
EST_LOG_ERR("RNG failure while generating nonce");
/* Force hdr to a null string */
memzero_s(hdr, EST_HTTP_REQ_TOTAL_LEN);
break;
}
est_hex_to_str(ctx->c_nonce, client_random, 8);
/*
* Check to see if the application layer has provided username and password
* up front during configuration. If it has not, go retrieve them now, otherwise,
* copy them into the local buffers to get them ready
*/
if (ctx->userid[0] == '\0' && ctx->password[0] == '\0') {
memzero_s(user, MAX_UIDPWD+1);
memzero_s(pwd, MAX_UIDPWD+1);
est_client_retrieve_credentials(ctx, ctx->auth_mode, user, pwd);
} else {
if (EOK != strcpy_s(user, MAX_UIDPWD, ctx->userid)) {
EST_LOG_ERR("Invalid User ID provided");
}
if (EOK != strcpy_s(pwd, MAX_UIDPWD, ctx->password)) {
EST_LOG_ERR("Invalid User password provided");
}
}
digest = est_client_generate_auth_digest(ctx, uri, user, pwd);
if (digest == NULL) {
EST_LOG_ERR("Error while generating digest");
/* Force hdr to a null string */
memzero_s(hdr, EST_HTTP_REQ_TOTAL_LEN);
memzero_s(ctx->c_nonce, MAX_NONCE+1);
memzero_s(user, MAX_UIDPWD+1);
memzero_s(pwd, MAX_UIDPWD+1);
break;
}
snprintf(hdr + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len,
"Authorization: Digest username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", cnonce=\"%s\", nc=00000001, qop=\"auth\", response=\"%s\"\r\n",
user,
ctx->realm,
ctx->s_nonce,
uri,
ctx->c_nonce,
digest);
memzero_s(digest, EST_MAX_MD5_DIGEST_STR_LEN);
memzero_s(ctx->c_nonce, MAX_NONCE+1);
memzero_s(user, MAX_UIDPWD+1);
memzero_s(pwd, MAX_UIDPWD+1);
free(digest);
break;
case AUTH_TOKEN:
EST_LOG_INFO("Server requested Token based authentication");
memzero_s(&auth_credentials, sizeof(auth_credentials));
if (ctx->auth_credentials_cb) {
auth_credentials.mode = AUTH_TOKEN;
rc = ctx->auth_credentials_cb(&auth_credentials);
if (rc == EST_HTTP_AUTH_CRED_NOT_AVAILABLE) {
EST_LOG_ERR("Attempt to obtain token from application failed.");
}
}
/*
* Did we get the credentials we expected? If not, point to a NULL string
* to generate the header
*/
if (auth_credentials.auth_token == NULL) {
EST_LOG_ERR("Requested token credentials, but application did not provide any.");
token = "";
} else {
/*
* Make sure the token we were given is not too long.
* If it is, force it to NULL to cause the auth failure at
* the server just as if no credentials were provided
*/
if (MAX_AUTH_TOKEN_LEN < strnlen_s(auth_credentials.auth_token, MAX_AUTH_TOKEN_LEN+1)) {
EST_LOG_ERR("Token provided is larger than the max of %d",
MAX_AUTH_TOKEN_LEN);
token = "";
} else {
token = auth_credentials.auth_token;
}
}
/*
* base64 encode the combined string and build the HTTP auth header
*/
memzero_s(token_b64, MAX_AUTH_TOKEN_LEN*2);
token_len = strnlen_s(token, MAX_AUTH_TOKEN_LEN);
enc_len = est_base64_encode((const char *) token, token_len, token_b64, MAX_AUTH_TOKEN_LEN * 2, 0);
if (enc_len <= 0) {
EST_LOG_ERR("Unable to encode bearer token auth value");
}
snprintf(hdr + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len,
"Authorization: Bearer %s\r\n", token_b64);
cleanse_auth_credentials(&auth_credentials);
break;
default:
EST_LOG_INFO("No HTTP auth mode set, sending anonymous request");
break;
}
}
/*
* This function is used to build the HTTP header for
* the CAcerts request flow.
*
* Parameters:
* ctx: EST context
* hdr: pointer to the buffer to hold the header
*/
static int est_client_build_cacerts_header (EST_CTX *ctx, char *hdr)
{
int hdr_len;
snprintf(hdr, EST_HTTP_REQ_TOTAL_LEN, "GET %s%s%s/%s HTTP/1.0\r\n"
"User-Agent: %s\r\n"
"Connection: close\r\n"
"Host: %s:%d\r\n"
"Accept: */*\r\n",
EST_PATH_PREFIX,
(ctx->uri_path_segment?"/":""),
(ctx->uri_path_segment?ctx->uri_path_segment:""),
EST_GET_CACERTS,
EST_HTTP_HDR_EST_CLIENT,
ctx->est_server, ctx->est_port_num);
hdr_len = (int) strnlen_s(hdr, EST_HTTP_REQ_TOTAL_LEN);
if (hdr_len == EST_HTTP_REQ_TOTAL_LEN) {
EST_LOG_WARN("CA Certs header took up the maximum amount in buffer (%d)",
EST_HTTP_REQ_TOTAL_LEN);
}
if(hdr_len > EST_HTTP_HDR_MAX) {
EST_LOG_ERR("CA Certs header is too big (%d) > (%d)", hdr_len, EST_HTTP_HDR_MAX);
return 0;
}
return (hdr_len);
}
/*
* This function is used to build the HTTP header for
* the CSR attributes request flow.
*
* Parameters:
* ctx: EST context
* hdr: pointer to the buffer to hold the header
*/
static int est_client_build_csr_header (EST_CTX *ctx, char *hdr)
{
int hdr_len;
snprintf(hdr, EST_HTTP_REQ_TOTAL_LEN,"GET %s%s%s/%s HTTP/1.0\r\n"
"User-Agent: %s\r\n"
"Connection: close\r\n"
"Host: %s:%d\r\n"
"Accept: */*\r\n",
EST_PATH_PREFIX,
(ctx->uri_path_segment?"/":""),
(ctx->uri_path_segment?ctx->uri_path_segment:""),
EST_GET_CSRATTRS,
EST_HTTP_HDR_EST_CLIENT,
ctx->est_server, ctx->est_port_num);
est_client_add_auth_hdr(ctx, hdr, EST_CSR_ATTRS_URI);
hdr_len = (int) strnlen_s(hdr, EST_HTTP_REQ_TOTAL_LEN);
if (hdr_len == EST_HTTP_REQ_TOTAL_LEN) {
EST_LOG_WARN("CSR attributes request header took up the maximum amount in buffer (%d)",
EST_HTTP_REQ_TOTAL_LEN);
}
if(hdr_len > EST_HTTP_HDR_MAX) {
EST_LOG_ERR("CSR attributes header is too big (%d) > (%d)", hdr_len, EST_HTTP_HDR_MAX);
return 0;
}
return (hdr_len);
}
/*
* This function does the work for the CSR attributes request flow.
*
* Parameters:
* ctx: EST context
* ssl: SSL context
*/
static int est_client_send_csrattrs_request (EST_CTX *ctx, SSL *ssl,
unsigned char **csrattrs,
int *csrattrs_len)
{
char *http_data;
int hdr_len;
int read_size, write_size;
unsigned char *csr_attrs_buf = NULL;
int rv;
/* assume defeat */
*csrattrs = NULL;
*csrattrs_len = 0;
/*
* Build the HTTP request
* - allocate buffer: header, no data, terminating characters
* - build the header
* - no data
* - terminate it
*/
http_data = malloc(EST_HTTP_REQ_TOTAL_LEN);
if (http_data == NULL) {
EST_LOG_ERR("Unable to allocate memory for http_data");
return EST_ERR_MALLOC;
}
hdr_len = est_client_build_csr_header(ctx, http_data);
if (hdr_len == 0) {
EST_LOG_ERR("CSR attributes HTTP header could not be built correctly");
free(http_data);
return (EST_ERR_HTTP_CANNOT_BUILD_HEADER);
}
/*
* terminate the HTTP header
*/
snprintf(http_data + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len, "\r\n");
hdr_len += 2;
/*
* no data is being sent so go ahead and terminate the HTTP request
*/
snprintf(http_data + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len, "\r\n");
hdr_len += 2;
/*
* Send the request to the server and wait for a response
*/
ctx->last_http_status = 0;
write_size = SSL_write(ssl, http_data, hdr_len);
if (write_size < 0) {
EST_LOG_ERR("TLS write error");
ossl_dump_ssl_errors();
rv = EST_ERR_SSL_WRITE;
} else {
EST_LOG_INFO("TLS wrote %d bytes, attempted %d bytes\n",
write_size, hdr_len);
/*
* Try to get the response from the server
*/
rv = est_io_get_response(ctx, ssl, EST_OP_CSRATTRS,
&csr_attrs_buf, &read_size);
switch (rv) {
case EST_ERR_NONE:
if (csr_attrs_buf != NULL) {
*csrattrs = csr_attrs_buf;
*csrattrs_len = read_size;
}
break;
case EST_ERR_AUTH_FAIL:
default:
EST_LOG_ERR("EST request failed: %d (%s)", rv, EST_ERR_NUM_TO_STR(rv));
if (csr_attrs_buf) {
free(csr_attrs_buf);
}
break;
}
}
free(http_data);
return (rv);
}
/*
* This function is used to build the HTTP header for
* the Simple Enroll flow.
*
* Parameters:
* ctx: EST context
* hdr: pointer to the buffer to hold the header
* pkcs10_len: length of the buffer pointed to by hdr
*/
static int est_client_build_enroll_header (EST_CTX *ctx, char *hdr, int pkcs10_len)
{
int hdr_len;
snprintf(hdr, EST_HTTP_REQ_TOTAL_LEN, "POST %s%s%s/%s HTTP/1.0\r\n"
"User-Agent: %s\r\n"
"Connection: close\r\n"
"Host: %s:%d\r\n"
"Accept: */*\r\n"
"Content-Type: application/pkcs10\r\n"
"Content-Transfer-Encoding: base64\r\n"
"Content-Length: %d\r\n",
EST_PATH_PREFIX,
(ctx->uri_path_segment?"/":""),
(ctx->uri_path_segment?ctx->uri_path_segment:""),
EST_SIMPLE_ENROLL,
EST_HTTP_HDR_EST_CLIENT,
ctx->est_server, ctx->est_port_num, pkcs10_len);
est_client_add_auth_hdr(ctx, hdr, EST_SIMPLE_ENROLL_URI);
hdr_len = (int) strnlen_s(hdr, EST_HTTP_REQ_TOTAL_LEN+1);
if (hdr_len == EST_HTTP_REQ_TOTAL_LEN) {
EST_LOG_WARN("Client enroll request header took up the maximum amount in buffer (%d)",
EST_HTTP_REQ_TOTAL_LEN);
}
if (hdr_len > EST_HTTP_REQ_TOTAL_LEN) {
EST_LOG_ERR("Client enroll request header is too big (%d) > (%d)", hdr_len, EST_HTTP_REQ_TOTAL_LEN);
return 0;
}
return (hdr_len);
}
/*
* This function is used to build the HTTP header for
* the Simple ReEnroll flow.
*
* Parameters:
* ctx: EST context
* hdr: pointer to the buffer to hold the header
* pkcs10_len: length of the buffer pointed to by hdr
*/
static int est_client_build_reenroll_header (EST_CTX *ctx, char *hdr, int pkcs10_len)
{
int hdr_len;
snprintf(hdr, EST_HTTP_REQ_TOTAL_LEN, "POST %s%s%s/%s HTTP/1.0\r\n"
"User-Agent: %s\r\n"
"Connection: close\r\n"
"Host: %s:%d\r\n"
"Accept: */*\r\n"
"Content-Type: application/pkcs10\r\n"
"Content-Transfer-Encoding: base64\r\n"
"Content-Length: %d\r\n",
EST_PATH_PREFIX,
(ctx->uri_path_segment?"/":""),
(ctx->uri_path_segment?ctx->uri_path_segment:""),
EST_SIMPLE_REENROLL,
EST_HTTP_HDR_EST_CLIENT,
ctx->est_server, ctx->est_port_num, pkcs10_len);
est_client_add_auth_hdr(ctx, hdr, EST_RE_ENROLL_URI);
hdr_len = (int) strnlen_s(hdr, EST_HTTP_REQ_TOTAL_LEN);
if (hdr_len == EST_HTTP_REQ_TOTAL_LEN) {
EST_LOG_WARN("Client reenroll request header took up the maximum amount in buffer (%d)",
EST_HTTP_REQ_TOTAL_LEN);
}
if(hdr_len > EST_HTTP_HDR_MAX) {
EST_LOG_ERR("Client reenroll request header is too big (%d) > (%d)", hdr_len, EST_HTTP_HDR_MAX);
return 0;
}
return (hdr_len);
}
/*
* This function is used to build the HTTP header for
* the Server-side key gen Enroll flow.
*
* Parameters:
* ctx: EST context
* hdr: pointer to the buffer to hold the header
* pkcs10_len: length of the buffer pointed to by hdr
*/
static int est_client_build_server_keygen_header (EST_CTX *ctx, char *hdr, int pkcs10_len)
{
int hdr_len;
snprintf(hdr, EST_HTTP_REQ_TOTAL_LEN, "POST %s%s%s/%s HTTP/1.0\r\n"
"User-Agent: %s\r\n"
"Connection: close\r\n"
"Host: %s:%d\r\n"
"Accept: */*\r\n"
"Content-Type: application/pkcs10\r\n"
"Content-Transfer-Encoding: base64\r\n"
"Content-Length: %d\r\n",
EST_PATH_PREFIX,
(ctx->uri_path_segment?"/":""),
(ctx->uri_path_segment?ctx->uri_path_segment:""),
EST_SERVER_KEYGEN,
EST_HTTP_HDR_EST_CLIENT,
ctx->est_server, ctx->est_port_num, pkcs10_len);
est_client_add_auth_hdr(ctx, hdr, EST_KEYGEN_URI);
hdr_len = (int) strnlen_s(hdr, EST_HTTP_REQ_TOTAL_LEN);
if (hdr_len == EST_HTTP_REQ_TOTAL_LEN) {
EST_LOG_WARN("Client server-side key gen request header took up the maximum amount in buffer (%d)",
EST_HTTP_REQ_TOTAL_LEN);
}
return (hdr_len);
}
/*
* This function sends the HTTP request for a Simple Enroll
* The CSR (pkcs10) is already built at this point. This
* function simply creates the HTTP header and body and puts
* it on the wire. It then waits for a response from the
* server and copies the response to a buffer provided by
* the caller
*
* Parameters:
* ctx: EST context
* ssl: SSL context
* bptr: pointer containing PKCS10 CSR
* pkcs7: pointer that will receive the pkcs7 response
* pkcs7_len: length of pkcs7 response
* reenroll: Set to 1 to do a reenroll instead of an enroll
*
*/
int est_client_send_enroll_request_internal (EST_CTX *ctx, SSL *ssl, BUF_MEM *bptr, unsigned char *new_key, int *key_len,
unsigned char *pkcs7, int *pkcs7_len, int est_op)
{
char *http_data;
int hdr_len = 0;
int write_size;
unsigned char *cert_buf = NULL, *key_buf = NULL;
int cert_buf_len = 0, key_buf_len = 0;
int rv;
if ((new_key == NULL || key_len == NULL) && est_op == EST_OP_SERVER_KEYGEN) {
EST_LOG_ERR("Mode and arguments mismatch");
return EST_ERR_BAD_MODE;
}
/*
* Assume the enroll will fail, set return length to zero
* to be defensive.
*/
*pkcs7_len = 0;
if (key_len) {
*key_len = 0;
}
/*
* Build the HTTP request
* - allocate buffer: header, data, terminating characters
* - build the header
* - no data
* - terminate it
*/
http_data = malloc(EST_HTTP_REQ_TOTAL_LEN);
if (http_data == NULL) {
EST_LOG_ERR("Unable to allocate memory for http_data");
return EST_ERR_MALLOC;
}
switch(est_op) {
case EST_OP_SIMPLE_ENROLL:
/* Perform a /simpleenroll */
hdr_len = est_client_build_enroll_header(ctx, http_data, (int) bptr->length);
est_op = EST_OP_SIMPLE_ENROLL;
break;
case EST_OP_SIMPLE_REENROLL:
/* Perform a /simplereenroll */
hdr_len = est_client_build_reenroll_header(ctx, http_data, (int) bptr->length);
est_op = EST_OP_SIMPLE_REENROLL;
break;
case EST_OP_SERVER_KEYGEN:
/* Perform a /serverkeygen */
hdr_len = est_client_build_server_keygen_header(ctx, http_data, (int) bptr->length);
est_op = EST_OP_SERVER_KEYGEN;
break;
case EST_OP_CACERTS:
case EST_OP_CSRATTRS:
case EST_OP_MAX:
default:
break;
}
if (hdr_len == 0) {
EST_LOG_ERR("Enroll HTTP header could not be built correctly");
free(http_data);
return (EST_ERR_HTTP_CANNOT_BUILD_HEADER);
}
/*
* terminate the HTTP header
*/
snprintf(http_data + hdr_len,EST_HTTP_REQ_TOTAL_LEN-hdr_len, "\r\n");
hdr_len += 2;
/*
* Build the HTTP body containing the pkcs10 request
*/
memcpy_s(http_data + hdr_len, EST_HTTP_REQ_DATA_MAX,
bptr->data, (rsize_t)bptr->length);
hdr_len += bptr->length;
/*
* terminate the HTTP request
*/
snprintf(http_data + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len,"\r\n");
hdr_len += 2;
/*
* Send the request to the server and wait for a response
*/
ctx->last_http_status = 0;
write_size = SSL_write(ssl, http_data, hdr_len);
if (write_size < 0) {
EST_LOG_ERR("TLS write error");
ossl_dump_ssl_errors();
rv = EST_ERR_SSL_WRITE;
} else {
EST_LOG_INFO("TLS wrote %d bytes, attempted %d bytes\n",
write_size, hdr_len);
/*
* Try to get the response from the server
*/
if (est_op == EST_OP_SERVER_KEYGEN) {
rv = est_io_get_multipart_response(ctx, ssl, est_op, &key_buf, &key_buf_len,
&cert_buf, &cert_buf_len);
} else {
rv = est_io_get_response(ctx, ssl, est_op, &cert_buf, &cert_buf_len);
}
switch (rv) {
case EST_ERR_NONE:
if (cert_buf_len == 0) {
EST_LOG_ERR("Enroll buf is zero bytes in length : cert");
rv = EST_ERR_ZERO_LENGTH_BUF;
break;
}
if (cert_buf_len > EST_MAX_CLIENT_CERT_LEN) {
EST_LOG_ERR("Certificate size limit exceeded");
rv = EST_ERR_BUF_EXCEEDS_MAX_LEN;
break;
}
memcpy_s(pkcs7, EST_MAX_CLIENT_CERT_LEN, cert_buf, cert_buf_len);
*pkcs7_len = cert_buf_len;
if (est_op == EST_OP_SERVER_KEYGEN) {
if (key_buf_len == 0) {
EST_LOG_ERR("Enroll buf is zero bytes in length : key");
rv = EST_ERR_ZERO_LENGTH_BUF;
break;
}
if (key_buf_len > EST_MAX_CLIENT_PKEY_LEN) {
EST_LOG_ERR("Private key size limit exceeded");
rv = EST_ERR_BUF_EXCEEDS_MAX_LEN;
break;
}
memcpy_s(new_key, EST_MAX_CLIENT_PKEY_LEN, key_buf, key_buf_len);
*key_len = key_buf_len;
}
break;
case EST_ERR_AUTH_FAIL:
EST_LOG_WARN("HTTP auth failure");
break;
default:
EST_LOG_ERR("EST request failed: %d (%s)", rv, EST_ERR_NUM_TO_STR(rv));
break;
}
if (cert_buf) {
free(cert_buf);
}
if (key_buf) {
free(key_buf);
}
}
OPENSSL_cleanse(http_data, strnlen_s(http_data, EST_HTTP_REQ_TOTAL_LEN));
if (http_data) {
free(http_data);
http_data = NULL;
}
return (rv);
}
/*
* This function sends the HTTP request for a Simple Enroll
* The CSR (pkcs10) is already built at this point. This
* function simply creates the HTTP header and body and puts
* it on the wire. It then waits for a response from the
* server and copies the response to a buffer provided by
* the caller
*
* Parameters:
* ctx: EST context
* ssl: SSL context
* bptr: pointer containing PKCS10 CSR
* pkcs7: pointer that will receive the pkcs7 response
* pkcs7_len: length of pkcs7 response
* reenroll: Set to 1 to do a reenroll instead of an enroll
*
*/
int est_client_send_enroll_request (EST_CTX *ctx, SSL *ssl, BUF_MEM *bptr,
unsigned char *pkcs7, int *pkcs7_len,
int reenroll)
{
EST_OPERATION op = reenroll ? EST_OP_SIMPLE_REENROLL : EST_OP_SIMPLE_ENROLL;
return est_client_send_enroll_request_internal (ctx, ssl, bptr, NULL, NULL,
pkcs7, pkcs7_len, op);
}
/*
* This function sends the HTTP request for a Simple Enroll
* The CSR (pkcs10) is already built at this point. This
* function simply creates the HTTP header and body and puts
* it on the wire. It then waits for a response from the
* server and copies the response to a buffer provided by
* the caller
*
* Parameters:
* ctx: EST context
* ssl: SSL context
* bptr: pointer containing PKCS10 CSR
* new_key pointer to contain the new key
* key_len length of new_key buffer
* pkcs7: pointer that will receive the pkcs7 response
* pkcs7_len: length of pkcs7 response
*
*/
EST_ERROR est_client_send_keygen_request(EST_CTX *ctx, SSL *ssl, BUF_MEM *bptr,
unsigned char *new_key, int *key_len,
unsigned char *pkcs7, int *pkcs7_len)
{
return est_client_send_enroll_request_internal (ctx, ssl, bptr, new_key, key_len,
pkcs7, pkcs7_len, EST_OP_SERVER_KEYGEN);
}
/*
* This function does a sanity check on the X509
* prior to attempting to convert the X509 to
* a CSR for a reenroll operation.
*
* Returns an EST_ERROR code
*/
static EST_ERROR est_client_check_x509 (X509 *cert)
{
/*
* Make sure the cert is signed
*/
#ifdef HAVE_OLD_OPENSSL
/* I don't think this check can be done anymore, or is even worth doing.
* If the signature is defined in the X.509, I'm assuming that it's correct and it
* does not have a length that's negative or zero
*/
/*
* Make sure the signature length is not invalid
*/
if (cert->signature->length <= 0) {
EST_LOG_ERR("The certificate provided contains an invalid signature length.");
return (EST_ERR_BAD_X509);
}
#else
const ASN1_BIT_STRING *sig = NULL;
X509_get0_signature(&sig, NULL, cert);
if(sig == NULL) {
EST_LOG_ERR("The certificate provided does not contain a signature.");
return (EST_ERR_BAD_X509);
}
#endif
return (EST_ERR_NONE);
}
/*
* This function is used to clear any ChallengePassword
* attributes in an X509 CSR. This is used because when
* HTTP authentication is used during the enrollment
* process, the PoP value will change when the client
* sends the second HTTP request that contains the HTTP
* authorization values. Since the CSR is reused between
* both the initial and secondary requests, we need to
* clear the PoP value from the CSR before submitting
* the secondary request.
*/
static void est_client_clear_csr_pop (X509_REQ *csr)
{
int pos = 0;
X509_ATTRIBUTE *attr;
/*
* The challenge password (PoP) may be in the CSR
* more than once. This should never happen, but
* we're being defensive.
*/
while (pos >= 0) {
/*
* Look for the PoP value in the CSR
*/
pos = X509_REQ_get_attr_by_NID(csr, NID_pkcs9_challengePassword, -1);
if (pos >= 0) {
/*
* If found, delete it
*/
attr = X509_REQ_delete_attr(csr, pos);
if (attr) {
/*
* There are no docs in OpenSSL that show how
* to use X509_REQ_delete_attr. Going to assume
* we need to free the attribute ourselves. There
* do not appear to be any good examples on how
* to use this API.
*/
X509_ATTRIBUTE_free(attr);
}
}
}
}
/*
* This function takes a certificate character buffer and
* populates a PKCS7 struct
*/
static EST_ERROR est_client_get_pkcs7_from_buf (PKCS7 **pkcs7, unsigned char *cert_buffer, int cert_len) {
unsigned char *decoded_cert = malloc(cert_len);
int decoded_cert_len = est_base64_decode((const char *)(cert_buffer), (char *)decoded_cert, cert_len);
if (decoded_cert_len <= 0) {
EST_LOG_ERR("Failed to decode cert buffer");
return EST_ERR_BAD_BASE64;
}
*pkcs7 = d2i_PKCS7(NULL, (const unsigned char **)&decoded_cert, decoded_cert_len);
if (*pkcs7 == NULL) {
EST_LOG_ERR("Error while converting cert buffer to pkcs7");
return EST_ERR_BAD_X509;
}
return EST_ERR_NONE;
}
/*
* This function takes an RSA private key buffer and populates
* an EVP_PKEY struct
*/
static EST_ERROR est_client_get_pkey_from_buf (EVP_PKEY **evp_pkey, unsigned char *key_buffer, int key_len) {
unsigned char *decoded_key;
decoded_key = malloc(key_len);
if (!decoded_key){
return EST_ERR_MALLOC;
}
int decoded_key_len = est_base64_decode((const char *)key_buffer, (char *)decoded_key, key_len);
if (decoded_key_len <= 0) {
EST_LOG_ERR("Failed to decode key buffer");
free(decoded_key);
return EST_ERR_BAD_BASE64;
}
*evp_pkey = d2i_PrivateKey(EVP_PKEY_RSA, NULL, (const unsigned char **)&decoded_key, decoded_key_len);
if (*evp_pkey == NULL) {
EST_LOG_ERR("Error while converting key buffer to key struct");
free(decoded_key);
return EST_ERR_BAD_KEY;
}
return EST_ERR_NONE;
}
/*
* This function validates that a key and a certificate match.
* It does this by setting up a dummy SSL CTX and then calling
* OpenSSL's SSL_CTX_check_private_key API
*/
static EST_ERROR est_client_verify_key_and_cert(EST_CTX *ctx, unsigned char **new_key,
int new_key_len,
unsigned char **new_cert,
int new_cert_len) {
EST_ERROR rv = EST_ERR_NONE;
STACK_OF(X509) *x509_stack = NULL;
EVP_PKEY *der_key = NULL;
int i;
X509 *x509_cert = NULL;
SSL_CTX *test_ctx = NULL;
PKCS7 *pkcs7_cert;
if (est_client_get_pkcs7_from_buf(&pkcs7_cert, *new_cert, new_cert_len) != EST_ERR_NONE) {
EST_LOG_ERR("Failed to get cert from buffer");
rv = EST_ERR_VALIDATION;
goto end;
}
i = OBJ_obj2nid(pkcs7_cert->type);
if(i == NID_pkcs7_signed) {
x509_stack = pkcs7_cert->d.sign->cert;
} else if(i == NID_pkcs7_signedAndEnveloped) {
x509_stack = pkcs7_cert->d.signed_and_enveloped->cert;
}
if (!x509_stack) {
EST_LOG_ERR("Error while converting pkcs7 to x509");
rv = EST_ERR_VALIDATION;
goto end;
}
x509_cert = sk_X509_value(x509_stack, 0);
if (!x509_cert) {
EST_LOG_ERR("Error while converting pkcs7 to x509");
rv = EST_ERR_VALIDATION;
goto end;
}
if (est_client_get_pkey_from_buf(&der_key, *new_key, new_key_len) != EST_ERR_NONE) {
EST_LOG_ERR("Failed to get key from buffer");
rv = EST_ERR_VALIDATION;
goto end;
}
#ifdef HAVE_OLD_OPENSSL
test_ctx = SSL_CTX_new(SSLv23_client_method());
#else
test_ctx = SSL_CTX_new(TLS_client_method());
#endif
if (!test_ctx) {
rv = EST_ERR_VALIDATION;
goto end;
}
if (!SSL_CTX_use_certificate(test_ctx, x509_cert)) {
EST_LOG_ERR("Error while adding cert to test ssl ctx");
rv = EST_ERR_VALIDATION;
goto end;
}
if (!SSL_CTX_use_PrivateKey(test_ctx, der_key)) {
EST_LOG_ERR("Error while adding key to test ssl ctx");
rv = EST_ERR_VALIDATION;
goto end;
}
if (!SSL_CTX_check_private_key(test_ctx)) {
EST_LOG_ERR("Failed to verify that key and cert correspond");
rv = EST_ERR_VALIDATION;
goto end;
}
end:
ossl_dump_ssl_errors();
if (test_ctx) {
SSL_CTX_free(test_ctx);
}
if (x509_stack) {
sk_X509_free(x509_stack);
}
if (der_key) {
EVP_PKEY_free(der_key);
}
return rv;
}
/*
* This function does the work of converting the X509_REQ* to
* the base64 encoded DER format as specified in the EST RFC.
* Once converted to the proper format, this routine will
* forward the request to the server, check the response,
* and save the cert on the local context where it can be
* retrieved later by the application layer.
*/
static EST_ERROR est_client_enroll_req(EST_CTX *ctx, SSL *ssl, X509_REQ *req, int *pkcs7_len, int *pkcs8_len, int est_op)
{
EST_ERROR rv = EST_ERR_NONE;
BIO *p10out = NULL, *b64 = NULL;
BUF_MEM *bptr = NULL;
unsigned char *recv_buf = NULL, *new_cert_buf, *new_key_buf = NULL;
int new_cert_buf_len, new_key_buf_len;
/*
* Grab the PKCS10 PEM encoded data
*/
b64 = BIO_new(BIO_f_base64());
if (!b64) {
EST_LOG_ERR("BIO_new failed");
ossl_dump_ssl_errors();
return EST_ERR_MALLOC;
}
p10out = BIO_new(BIO_s_mem());
if (!p10out) {
EST_LOG_ERR("BIO_new failed");
ossl_dump_ssl_errors();
return EST_ERR_MALLOC;
}
p10out = BIO_push(b64, p10out);
/*
* Encode using DER (ASN.1)
*
* We have to set the modified flag on the X509_REQ because
* OpenSSL keeps a cached copy of the DER encoded data in some
* cases. Setting this flag tells OpenSSL to run the ASN
* encoding again rather than using the cached copy.
* */
#ifdef HAVE_OLD_OPENSSL
req->req_info->enc.modified = 1;
#endif
i2d_X509_REQ_bio(p10out, req);
(void)BIO_flush(p10out);
BIO_get_mem_ptr(p10out, &bptr);
/*
* Get the buffer in which to place the entire response from the server
*/
if (est_op == EST_OP_SERVER_KEYGEN) {
new_cert_buf = malloc(EST_MAX_CLIENT_CERT_LEN);
if (new_cert_buf == NULL) {
EST_LOG_ERR("Failed to allocate buffer for server response");
return EST_ERR_MALLOC;
}
new_cert_buf_len = 0;
new_key_buf = malloc(EST_MAX_CLIENT_PKEY_LEN);
if (new_key_buf == NULL) {
EST_LOG_ERR("Failed to allocate buffer for server response");
free(new_cert_buf);
return EST_ERR_MALLOC;
}
new_key_buf_len = 0;
} else {
recv_buf = malloc(EST_CA_MAX);
if (recv_buf == NULL) {
EST_LOG_ERR("Failed to allocate buffer for server response");
return EST_ERR_MALLOC;
}
new_cert_buf = recv_buf;
new_cert_buf_len = 0;
}
/*
* Send the PKCS10 as an HTTP request to the EST server
*/
if (est_op == EST_OP_SERVER_KEYGEN) {
rv = est_client_send_keygen_request(ctx, ssl, bptr, new_key_buf, &new_key_buf_len, new_cert_buf,
&new_cert_buf_len);
} else {
rv = est_client_send_enroll_request(ctx, ssl, bptr,
new_cert_buf, &new_cert_buf_len,
est_op);
}
switch (rv) {
case EST_ERR_NONE:
/*
* Resize the buffer holding the retrieved client certificate and link
* it into the ctx. Get rid of the http hdr and any extra space on
* the back.
*/
if (ctx->enrolled_client_cert != NULL){
free(ctx->enrolled_client_cert);
}
ctx->enrolled_client_cert = malloc(new_cert_buf_len+1);
if (ctx->enrolled_client_cert == NULL) {
EST_LOG_ERR("Unable to allocate newly enrolled client certificate buffer");
rv = EST_ERR_MALLOC;
break;
}
ctx->enrolled_client_cert[new_cert_buf_len] = '\0';
memcpy_s(ctx->enrolled_client_cert, new_cert_buf_len+1, new_cert_buf,
new_cert_buf_len);
ctx->enrolled_client_cert_len = new_cert_buf_len;
/*
* pass back the length of this newly enrolled cert
*/
*pkcs7_len = new_cert_buf_len;
EST_LOG_INFO("Newly Enrolled Client certificate:\n%s", ctx->enrolled_client_cert);
/*
* Go through the same process for the server generated key if necessary
*/
if (est_op == EST_OP_SERVER_KEYGEN) {
if (new_key_buf_len == 0) {
EST_LOG_ERR("Buffer containing new unique client private key is zero bytes in length");
rv = EST_ERR_ZERO_LENGTH_BUF;
break;
}
if (ctx->server_gen_client_priv_key != NULL){
free(ctx->server_gen_client_priv_key);
}
ctx->server_gen_client_priv_key = malloc(new_key_buf_len+1);
if (ctx->server_gen_client_priv_key == NULL) {
EST_LOG_ERR("Unable to allocate buffer for new unique key generated by server");
rv = EST_ERR_MALLOC;
break;
}
ctx->server_gen_client_priv_key[new_key_buf_len] = '\0';
memcpy_s(ctx->server_gen_client_priv_key, new_key_buf_len+1, new_key_buf,
new_key_buf_len);
ctx->server_gen_key_len = new_key_buf_len;
*pkcs8_len = new_key_buf_len;
EST_LOG_INFO("New private key received");
if (est_client_verify_key_and_cert(ctx, &(ctx->server_gen_client_priv_key), *pkcs8_len,
&(ctx->enrolled_client_cert), *pkcs7_len) != EST_ERR_NONE) {
*pkcs7_len = 0;
*pkcs8_len = 0;
free(new_cert_buf);
free(new_key_buf);
BIO_free_all(p10out);
EST_LOG_ERR("Certificate/Private Key validation failed");
return EST_ERR_VALIDATION;
}
}
break;
case EST_ERR_AUTH_FAIL:
EST_LOG_INFO("HTTP Authorization failed. Requested auth mode = %d", ctx->auth_mode);
break;
default:
EST_LOG_ERR("EST enrollment failed, error code is %d (%s)", rv,
EST_ERR_NUM_TO_STR(rv));
break;
}
if (new_cert_buf) {
free(new_cert_buf);
}
if (new_key_buf) {
free(new_key_buf);
}
BIO_free_all(p10out);
return (rv);
}
/* est_client_enroll_pkcs10() This function implements the Simple Enroll
* flow. It signs the CSR that was provided and then sends the CSR
* to the EST server and retrieves the pkcs7 response.
*
* Parameters:
* ctx EST context
* ssl SSL context being used for this EST session
* csr Pointer to X509_REQ object containing the PKCS10 CSR
* pkcs7_len pointer to an integer in which the length of the received
* pkcs7 response is placed.
* priv_key Pointer to the private key used to sign the CSR.
* reenroll Set to 1 to do a reenroll instead of an enroll
*
* Returns EST_ERROR
*/
static EST_ERROR est_client_enroll_pkcs10(EST_CTX *ctx, SSL *ssl, X509_REQ *csr, int *pkcs7_len, int *pkcs8_len, int est_op,
EVP_PKEY *priv_key)
{
EST_ERROR rv = EST_ERR_NONE;
char *tls_uid;
int ossl_rv;
int uid_len = 0;
/*
* Make sure the PoP is removed from the CSR before we proceed
*/
est_client_clear_csr_pop(csr);
/*
* Get the PoP value from the TLS session and embed this into
* the CSR if required.
*/
if (ctx->csr_pop_required || ctx->client_force_pop) {
EST_LOG_INFO("Client will include challengePassword in CSR");
tls_uid = est_get_tls_uid(ssl, &uid_len, 1);
if (tls_uid) {
ossl_rv = X509_REQ_add1_attr_by_NID(csr, NID_pkcs9_challengePassword,
MBSTRING_ASC, (unsigned char*)tls_uid, -1);
free(tls_uid);
if (!ossl_rv) {
EST_LOG_ERR("Unable to set X509 challengePassword attribute");
ossl_dump_ssl_errors();
return (EST_ERR_X509_ATTR);
}
} else {
EST_LOG_ERR("Unable to obtain the TLS UID");
return (EST_ERR_AUTH_FAIL_TLSUID);
}
}
/*
* Sign the CSR
*/
ossl_rv = est_X509_REQ_sign(csr, priv_key, ctx->signing_digest);
if (!ossl_rv) {
EST_LOG_ERR("Unable to sign X509 cert request");
ossl_dump_ssl_errors();
return (EST_ERR_X509_SIGN);
}
rv = est_client_enroll_req(ctx, ssl, csr, pkcs7_len, pkcs8_len, est_op);
return (rv);
}
/* est_client_enroll_cn() This function implements the Simple Enroll
flow. It uses the private key to generate a CSR (pkcs10) request. It
then sends the request to the EST server and retrieves the pkcs7
response. The user of this function simply provides the CommonName
value to be placed in the PKCS10 CSR. This is a simplified interface,
none of the other CSR attributes can be specified.
@param ctx EST context
@param ssl SSL context being used for this EST session
@param cn pointer to the common name that is to be placed in the x509
request
@param pkcs7_len pointer to an integer in which the length of the recieved
pkcs7 response is placed.
@param pkey The new client public key that is to be enrolled
@return EST_ERROR
*/
static EST_ERROR
est_client_enroll_cn(EST_CTX *ctx, SSL *ssl, char *cn, int *pkcs7_len, int *pkcs8_len, int est_op, EVP_PKEY *pkey)
{
X509_REQ *pkcs10 = NULL;
EST_ERROR rv = EST_ERR_NONE;
char *tls_uid;
int uid_len = 0;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
/*
* Attempt to create the PKCS10 certificate request.
* Get the TLS uid in case we need it during populate.
*/
tls_uid = est_get_tls_uid(ssl, &uid_len, 1);
if (tls_uid) {
rv = est_generate_pkcs10(ctx, cn, tls_uid, pkey, &pkcs10);
free(tls_uid);
} else {
EST_LOG_ERR("Unable to obtain the TLS UID");
rv = EST_ERR_AUTH_FAIL_TLSUID;
}
if (rv == EST_ERR_NONE) {
rv = est_client_enroll_req(ctx, ssl, pkcs10, pkcs7_len, pkcs8_len, est_op);
}
if (pkcs10) {
X509_REQ_free(pkcs10);
}
return (rv);
}
/*
* The following function was taken from cURL
*
* The content that was incorporated were portions of
* - lib/hostcheck.c
* - lib/rawstr.c
*
* Portable, consistent toupper (remember EBCDIC). Do not use toupper() because
* its behavior is altered by the current locale.
*/
static char est_client_Curl_raw_toupper(char in)
{
switch (in) {
case 'a':
return 'A';
case 'b':
return 'B';
case 'c':
return 'C';
case 'd':
return 'D';
case 'e':
return 'E';
case 'f':
return 'F';
case 'g':
return 'G';
case 'h':
return 'H';
case 'i':
return 'I';
case 'j':
return 'J';
case 'k':
return 'K';
case 'l':
return 'L';
case 'm':
return 'M';
case 'n':
return 'N';
case 'o':
return 'O';
case 'p':
return 'P';
case 'q':
return 'Q';
case 'r':
return 'R';
case 's':
return 'S';
case 't':
return 'T';
case 'u':
return 'U';
case 'v':
return 'V';
case 'w':
return 'W';
case 'x':
return 'X';
case 'y':
return 'Y';
case 'z':
return 'Z';
}
return in;
}
/*
* The following function was taken from cURL
*
* Curl_raw_equal() is for doing "raw" case insensitive strings. This is meant
* to be locale independent and only compare strings we know are safe for
* this. See http://daniel.haxx.se/blog/2008/10/15/strcasecmp-in-turkish/ for
* some further explanation to why this function is necessary.
*
* The function is capable of comparing a-z case insensitively even for
* non-ascii.
*/
static int est_client_Curl_raw_equal(const char *first, const char *second)
{
while(*first && *second) {
if(est_client_Curl_raw_toupper(*first) != est_client_Curl_raw_toupper(*second)) {
/* get out of the loop as soon as they don't match */
break;
}
first++;
second++;
}
/* we do the comparison here (possibly again), just to make sure that if the
loop above is skipped because one of the strings reached zero, we must not
return this as a successful match */
return (est_client_Curl_raw_toupper(*first) == est_client_Curl_raw_toupper(*second));
}
static int est_client_Curl_raw_nequal(const char *first, const char *second, size_t max)
{
while(*first && *second && max) {
if(est_client_Curl_raw_toupper(*first) != est_client_Curl_raw_toupper(*second)) {
break;
}
max--;
first++;
second++;
}
if(0 == max) {
return 1; /* they are equal this far */
}
return (est_client_Curl_raw_toupper(*first) == est_client_Curl_raw_toupper(*second));
}
/*
* The following function was taken from cURL
*
* Match a hostname against a wildcard pattern.
* E.g.
* "foo.host.com" matches "*.host.com".
*
* We use the matching rule described in RFC6125, section 6.4.3.
* http://tools.ietf.org/html/rfc6125#section-6.4.3
*/
#define HOST_NOMATCH 0
#define HOST_MATCH 1
static int est_client_hostmatch(const char *hostname, const char *pattern)
{
const char *pattern_label_end, *pattern_wildcard, *hostname_label_end;
int wildcard_enabled;
size_t prefixlen, suffixlen;
struct in_addr ignored;
struct sockaddr_in6 si6;
pattern_wildcard = strchr(pattern, '*');
if(pattern_wildcard == NULL) {
return est_client_Curl_raw_equal(pattern, hostname) ? HOST_MATCH : HOST_NOMATCH;
}
/* detect IP address as hostname and fail the match if so */
if(inet_pton(AF_INET, hostname, &ignored) > 0)
return HOST_NOMATCH;
else if(inet_pton(AF_INET6, hostname, &si6.sin6_addr) > 0)
return HOST_NOMATCH;
/* We require at least 2 dots in pattern to avoid too wide wildcard
match. */
wildcard_enabled = 1;
pattern_label_end = strchr(pattern, '.');
if(pattern_label_end == NULL || strchr(pattern_label_end+1, '.') == NULL ||
pattern_wildcard > pattern_label_end ||
est_client_Curl_raw_nequal(pattern, "xn--", 4)) {
wildcard_enabled = 0;
}
if(!wildcard_enabled) {
return est_client_Curl_raw_equal(pattern, hostname) ? HOST_MATCH : HOST_NOMATCH;
}
hostname_label_end = strchr(hostname, '.');
if(hostname_label_end == NULL || !est_client_Curl_raw_equal(pattern_label_end, hostname_label_end)) {
return HOST_NOMATCH;
}
/* The wildcard must match at least one character, so the left-most
label of the hostname is at least as large as the left-most label
of the pattern. */
if(hostname_label_end - hostname < pattern_label_end - pattern) {
return HOST_NOMATCH;
}
prefixlen = pattern_wildcard - pattern;
suffixlen = pattern_label_end - (pattern_wildcard+1);
return (est_client_Curl_raw_nequal(pattern, hostname, prefixlen) &&
est_client_Curl_raw_nequal(pattern_wildcard+1, hostname_label_end - suffixlen,
suffixlen) ? HOST_MATCH : HOST_NOMATCH);
}
/*
* The following function was taken from cURL for the
* FQDN check on the server cert
*/
static int est_client_cert_hostcheck(const char *match_pattern, const char *hostname)
{
/*
* Sanity check input
*/
if(!match_pattern || !*match_pattern || !hostname || !*hostname) {
return 0;
}
/*
* trival case
*/
if(est_client_Curl_raw_equal(hostname, match_pattern)) {
return 1;
}
if(est_client_hostmatch(hostname,match_pattern) == HOST_MATCH) {
return 1;
}
return 0;
}
/*
* This function was taken from cURL and adapted to EST.
*
* cURL file name is ./lib/ssluse.c, function: verifyhost()
*
* Quote from RFC2818 section 3.1 "Server Identity"
If a subjectAltName extension of type dNSName is present, that MUST
be used as the identity. Otherwise, the (most specific) Common Name
field in the Subject field of the certificate MUST be used. Although
the use of the Common Name is existing practice, it is deprecated and
Certification Authorities are encouraged to use the dNSName instead.
Matching is performed using the matching rules specified by
[RFC2459]. If more than one identity of a given type is present in
the certificate (e.g., more than one dNSName name, a match in any one
of the set is considered acceptable.) Names may contain the wildcard
character * which is considered to match any single domain name
component or component fragment. E.g., *.a.com matches foo.a.com but
not bar.foo.a.com. f*.com matches foo.com but not bar.com.
In some cases, the URI is specified as an IP address rather than a
hostname. In this case, the iPAddress subjectAltName must be present
in the certificate and must exactly match the IP in the URI.
*/
static EST_ERROR est_client_verifyhost (char *hostname, X509 *server_cert)
{
int matched = -1; /* -1 is no alternative match yet, 1 means match and 0
means mismatch */
size_t addrlen = 0;
STACK_OF(GENERAL_NAME) * altnames;
struct in6_addr addr_v6;
struct in_addr addr_v4;
int addr_is_v4 = 0;
int addr_is_v6 = 0;
EST_ERROR res = EST_ERR_NONE;
int rv;
errno_t safec_rc;
int numalts;
int i, j;
int diff;
const GENERAL_NAME *check;
const char *altptr;
size_t altlen;
unsigned char *nulstr;
unsigned char *peer_CN;
X509_NAME *name;
ASN1_STRING *tmp;
/*
* Attempt to resolve host name to v4 address
*/
rv = inet_pton(AF_INET, hostname, &addr_v4);
if (rv) {
addr_is_v4 = 1;
addrlen = sizeof(struct in_addr);
} else {
/*
* Try to see if hostname resolves to v6 address
*/
rv = inet_pton(AF_INET6, hostname, &addr_v6);
if (rv) {
addr_is_v6 = 1;
addrlen = sizeof(struct in6_addr);
}
}
/* get a "list" of alternative names */
altnames = X509_get_ext_d2i(server_cert, NID_subject_alt_name, NULL, NULL);
if (altnames) {
/* get amount of alternatives, RFC2459 claims there MUST be at least
one, but we don't depend on it... */
numalts = sk_GENERAL_NAME_num(altnames);
EST_LOG_INFO("Found %d SubjectAlternateNames", numalts);
/* loop through all alternatives while none has matched */
for (i = 0; (i < numalts) && (matched != 1); i++) {
/* get a handle to alternative name number i */
check = sk_GENERAL_NAME_value(altnames, i);
/* get data and length */
#ifdef HAVE_OLD_OPENSSL
altptr = (char *)ASN1_STRING_data(check->d.ia5);
#else
altptr = (char *)ASN1_STRING_get0_data(check->d.ia5);
#endif
altlen = (size_t)ASN1_STRING_length(check->d.ia5);
switch (check->type) {
case GEN_DNS: /* name/pattern comparison */
EST_LOG_INFO("Checking FQDN against SAN %s", altptr);
/* The OpenSSL man page explicitly says: "In general it cannot be
assumed that the data returned by ASN1_STRING_data() is null
terminated or does not contain embedded nulls." But also that
"The actual format of the data will depend on the actual string
type itself: for example for and IA5String the data will be ASCII"
Gisle researched the OpenSSL sources:
"I checked the 0.9.6 and 0.9.8 sources before my patch and
it always 0-terminates an IA5String."
*/
if ((altlen == strnlen_s(altptr, EST_MAX_SERVERNAME_LEN)) &&
/* if this isn't true, there was an embedded zero in the name
string and we cannot match it. */
est_client_cert_hostcheck(altptr, hostname)) {
matched = 1;
} else{
matched = 0;
}
break;
case GEN_IPADD: /* IP address comparison */
/* compare alternative IP address if the data chunk is the same size
our server IP address is */
/*
* For PSB compliance, use SafeC library memcmp_s
*/
if (addr_is_v4) {
safec_rc = memcmp_s(altptr, altlen, &addr_v4, altlen, &diff);
if (safec_rc != EOK) {
EST_LOG_INFO("memcmp_s error 0x%xO with IPv4 address\n", safec_rc);
}
} else if (addr_is_v6) {
safec_rc = memcmp_s(altptr, altlen, &addr_v6, altlen, &diff);
if (safec_rc != EOK) {
EST_LOG_INFO("memcmp_s error 0x%xO with IPv6 address\n", safec_rc);
}
} else {
/*
* Should never get here...so force matched to be 0
*/
diff = -1;
}
if ((addr_is_v4) && (altlen == addrlen) && !diff) {
matched = 1;
} else if ((addr_is_v6) && (altlen == addrlen) && !diff) {
matched = 1;
} else{
matched = 0;
}
break;
}
}
GENERAL_NAMES_free(altnames);
}
if (matched == 1) {
/* an alternative name matched the server hostname */
EST_LOG_INFO("subjectAltName: %s matched\n", hostname);
} else if (matched == 0) {
/* an alternative name field existed, but didn't match and then
we MUST fail */
EST_LOG_INFO("subjectAltName does not match %s\n", hostname);
res = EST_ERR_FQDN_MISMATCH;
}else {
/* we have to look to the last occurrence of a commonName in the
distinguished one to get the most significant one. */
i = -1;
/* The following is done because of a bug in 0.9.6b */
nulstr = (unsigned char*)"";
peer_CN = nulstr;
name = X509_get_subject_name(server_cert);
if (name) {
while ((j = X509_NAME_get_index_by_NID(name, NID_commonName, i)) >= 0) {
i = j;
}
}
/* we have the name entry and we will now convert this to a string
that we can use for comparison. Doing this we support BMPstring,
UTF8 etc. */
if (i >= 0) {
tmp = X509_NAME_ENTRY_get_data(X509_NAME_get_entry(name, i));
/* In OpenSSL 0.9.7d and earlier, ASN1_STRING_to_UTF8 fails if the input
is already UTF-8 encoded. We check for this case and copy the raw
string manually to avoid the problem. This code can be made
conditional in the future when OpenSSL has been fixed. Work-around
brought by Alexis S. L. Carvalho. */
if (tmp) {
if (ASN1_STRING_type(tmp) == V_ASN1_UTF8STRING) {
j = ASN1_STRING_length(tmp);
if (j >= 0) {
peer_CN = malloc(j + 1);
if (peer_CN) {
#ifdef HAVE_OLD_OPENSSL
safec_rc = memcpy_s(peer_CN, j, ASN1_STRING_data(tmp), j);
#else
safec_rc = memcpy_s(peer_CN, j, (char *)ASN1_STRING_get0_data(tmp), j);
#endif
if (safec_rc != EOK) {
EST_LOG_INFO("memcpy_s error 0x%xO with ASN1 string\n", safec_rc);
}
peer_CN[j] = '\0';
}
}
}else { /* not a UTF8 name */
j = ASN1_STRING_to_UTF8(&peer_CN, tmp);
}
if (peer_CN && (strnlen_s((char*)peer_CN, EST_MAX_SERVERNAME_LEN) != j)) {
/* there was a terminating zero before the end of string, this
cannot match and we return failure! */
EST_LOG_WARN("SSL: illegal cert name field");
res = EST_ERR_FQDN_MISMATCH;
}
}
}
if (peer_CN == nulstr) {
peer_CN = NULL;
} else{
/* convert peer_CN from UTF8 */
#if 0
// UTF8 currently not supported in the first release of libest
CURLcode rc = Curl_convert_from_utf8(data, peer_CN, strlen(peer_CN));
/* Curl_convert_from_utf8 calls failf if unsuccessful */
if (rc) {
free(peer_CN);
return EST_ERR_FQDN_MISMATCH;
}
#endif
}
if (res != EST_ERR_NONE) {
/* error already detected, pass through */
;
} else if (!peer_CN) {
EST_LOG_WARN("SSL: unable to obtain common name from peer certificate");
res = EST_ERR_FQDN_MISMATCH;
}else if (!est_client_cert_hostcheck((const char*)peer_CN, hostname)) {
EST_LOG_WARN("SSL: FQDN hostname mismatch in server certificate, '%s' does not match "
"target host name '%s'", peer_CN, hostname);
res = EST_ERR_FQDN_MISMATCH;
}else {
EST_LOG_INFO("common name: %s (matched)", peer_CN);
}
if (peer_CN) {
free(peer_CN);
}
}
return res;
}
/*
* This routine checks the FQDN in the server certificate
* against the configure server name used to establish
* the TCP connection with the EST server.
* This is required per section 3.6 in the EST spec.
* Note, we only do the FQDN check as defined in RFC 6125.
* We do not look for the id-kp-cmcRA extended key usage
* extension in the server cert. While this is more
* restrictive by not allowing FQDN mismatches when the
* id-kp-cmcRA is present, we currently have no way to
* determine when we're using the explicit trust anchor to
* allow this additional flexibility.
*/
static EST_ERROR est_client_check_fqdn (EST_CTX *ctx, SSL *ssl)
{
X509 *cert;
EST_ERROR er;
cert = SSL_get_peer_certificate(ssl);
if (cert) {
er = est_client_verifyhost(ctx->est_server, cert);
X509_free(cert);
return (er);
} else if (!cert && ctx->enable_srp) {
EST_LOG_INFO("No peer certificate, skipping FQDN check since SRP is enabled.");
return EST_ERR_NONE;
} else {
EST_LOG_WARN("Unable to perform FQDN check, no peer certificate.");
return EST_ERR_FQDN_MISMATCH;
}
}
/*
* This function will open a TCP socket and establish a TLS session
* with the EST server. This should be called after est_client_init().
*
* Parameters:
* ctx: Pointer to EST context for client session
* ssl: pointer to an SSL context structure to return the
* SSL context created,
* Reurns:
* EST_ERR_NONE if success
*/
EST_ERROR est_client_connect (EST_CTX *ctx, SSL **ssl)
{
BIO *tcp;
SSL_CTX *s_ctx;
EST_ERROR rv = EST_ERR_NONE;
#ifndef WIN32
int sock;
#else
SOCKET sock = INVALID_SOCKET;
#endif
int rc;
int oval = 1;
int ssl_connect_ret = -1;
tcw_err_t tcw_err;
tcw_opts_t tcw_opts = { 0 };
if (!ctx) {
return EST_ERR_NO_CTX;
}
s_ctx = ctx->ssl_ctx;
/*
* Establish the connection through a proxy (if applicable)
*/
if (ctx->use_proxy) {
tcw_opts.proxy_proto = ctx->proxy_proto;
tcw_opts.proxy_host = ctx->proxy_server;
tcw_opts.proxy_port = ctx->proxy_port;
if (ctx->proxy_username[0] && ctx->proxy_password[0] &&
ctx->proxy_auth != EST_CLIENT_PROXY_AUTH_NONE) {
tcw_opts.proxy_username = ctx->proxy_username;
tcw_opts.proxy_password = ctx->proxy_password;
tcw_opts.proxy_auth = 0; /* initialize */
if (ctx->proxy_auth & EST_CLIENT_PROXY_AUTH_BASIC) {
tcw_opts.proxy_auth |= EST_CLIENT_PROXY_AUTH_BASIC;
}
if (ctx->proxy_auth & EST_CLIENT_PROXY_AUTH_NTLM) {
tcw_opts.proxy_auth |= EST_CLIENT_PROXY_AUTH_NTLM;
}
}
} else {
tcw_opts.proxy_proto = EST_CLIENT_PROXY_NONE;
}
tcw_err = tcw_connect(&ctx->tcw_sock, &tcw_opts,
ctx->est_server, ctx->est_port_num, &sock);
if (tcw_err == TCW_ERR_RESOLV) {
EST_LOG_ERR("Unable to lookup hostname %s.", ctx->est_server);
return (EST_ERR_IP_GETADDR);
}
if (tcw_err != TCW_OK) {
EST_LOG_ERR("Unable to connect to EST server at %s", ctx->est_server);
return (EST_ERR_IP_CONNECT);
}
/*
* PDB TODO: Figure out why the following is needed and remove
* if not necessary
*/
/*
* Enable TCP keep-alive
*/
rc = setsockopt(sock, SOL_SOCKET,SO_KEEPALIVE, (char *)&oval, sizeof(oval));
if (rc < 0) {
tcw_close(&ctx->tcw_sock);
sock = SOCK_INVALID;
EST_LOG_ERR("Unable to connect to EST server at address %s", ctx->est_server);
return (EST_ERR_IP_CONNECT);
}
/*
* Pass the socket to the BIO interface, which OpenSSL uses
* to create the TLS session.
*/
tcp = BIO_new_socket(sock, BIO_NOCLOSE);
if (tcp == NULL) {
EST_LOG_ERR("Error creating IP socket");
tcw_close(&ctx->tcw_sock);
sock = SOCK_INVALID;
ossl_dump_ssl_errors();
return (EST_ERR_IP_CONNECT);
}
if (!(*ssl = SSL_new(s_ctx))) {
EST_LOG_ERR("Error creating TLS context");
ossl_dump_ssl_errors();
BIO_free_all(tcp);
tcw_close(&ctx->tcw_sock);
sock = SOCK_INVALID;
return (EST_ERR_SSL_NEW);
}
/*
* Need to set the EST ctx into the exdata of the SSL session context so
* that it can be retrieved on a per session basis.
*/
SSL_set_ex_data(*ssl, e_ctx_ssl_exdata_index, ctx);
/*
* Set the EST server name in the SSL context so that it'll be sent in the
* in the server name extension in the client hello.
*/
SSL_set_tlsext_host_name(*ssl, ctx->est_server);
SSL_set_bio(*ssl, tcp, tcp);
if (ctx->sess) {
SSL_set_session(*ssl, ctx->sess);
}
if ((ssl_connect_ret = SSL_connect(*ssl)) <= 0) {
EST_LOG_ERR("Error connecting TLS context. %d", SSL_get_error(*ssl, ssl_connect_ret));
ossl_dump_ssl_errors();
tcw_close(&ctx->tcw_sock);
sock = SOCK_INVALID;
rv = EST_ERR_SSL_CONNECT;
} else {
ctx->tcw_sock_connected = 1;
}
/*
* Now that we've established a TLS session with the EST server,
* we need to verify that the FQDN in the server cert matches
* the server name we used to establish the connection.
* This is from section 3.6 in the EST spec.
*/
if ((EST_ERR_NONE == rv) && est_client_check_fqdn(ctx, *ssl)) {
/*
* The host name did not match, shut down the tunnel and bail
*/
est_client_disconnect(ctx, ssl);
EST_LOG_WARN("EST server name did not match FQDN in server certificate.");
rv = EST_ERR_FQDN_MISMATCH;
}
return rv;
}
/*
* This function will close the TLS session and the underlying socket.
*
* Parameters:
* ssl: Pointer to SSL context that has been set up for this connection
* to the EST server.
*/
void est_client_disconnect (EST_CTX *ctx, SSL **ssl)
{
SSL_SESSION *new_sess;
if (!*ssl) {
return;
}
/*
* if first disconnect, get the session id to cache it away to use for
* session resumption.
*/
if (!ctx->sess) {
ctx->sess = SSL_get1_session(*ssl);
} else {
/*
* if not the first time to disconnect, see if the session id changed.
* If it did, officially re-obtain it with a get1 call and cache it away
*/
new_sess = SSL_get0_session(*ssl);
if (new_sess != ctx->sess) {
ctx->sess = SSL_get1_session(*ssl);
}
}
SSL_shutdown(*ssl);
SSL_free(*ssl);
*ssl = NULL;
if (ctx->tcw_sock_connected) {
tcw_close(&ctx->tcw_sock);
ctx->tcw_sock_connected = 0;
}
}
/*
* This function does the work for the CACerts request flow.
*
* Parameters:
* ctx: EST context
* ssl: SSL context
* ca_certs_len: pointer to the unsigned int that will hold the length of the
* returned CA certs.
*/
static int est_client_send_cacerts_request (EST_CTX *ctx, SSL *ssl,
int *ca_certs_len)
{
char *http_data;
int hdr_len;
int write_size;
int rv;
unsigned char *ca_certs_buf = NULL;
int ca_certs_buf_len = 0;
/*
* Build the HTTP request
* - allocate buffer: header, no data, terminating characters
* - build the header
* - no data
* - terminate it
*/
http_data = malloc(EST_HTTP_REQ_TOTAL_LEN);
if (http_data == NULL) {
EST_LOG_ERR("Unable to allocate memory for http_data");
return EST_ERR_MALLOC;
}
hdr_len = est_client_build_cacerts_header(ctx, http_data);
if(hdr_len == 0) {
EST_LOG_ERR("Unable to build CA Cert header");
free(http_data);
return (EST_ERR_HTTP_CANNOT_BUILD_HEADER);
}
/*
* terminate the HTTP header
*/
snprintf(http_data + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len,"\r\n");
hdr_len += 2;
/*
* no data is being sent so go ahead and terminate the HTTP request
*/
snprintf(http_data + hdr_len,EST_HTTP_REQ_TOTAL_LEN-hdr_len, "\r\n");
hdr_len += 2;
/*
* Send the request to the server and wait for a response
*/
ctx->last_http_status = 0;
write_size = SSL_write(ssl, http_data, hdr_len);
if (write_size < 0) {
EST_LOG_ERR("TLS write error");
ossl_dump_ssl_errors();
rv = EST_ERR_SSL_WRITE;
} else {
EST_LOG_INFO("TLS wrote %d bytes, attempted %d bytes\n",
write_size, hdr_len);
/*
* Try to get the response from the server
*/
rv = est_io_get_response(ctx, ssl, EST_OP_CACERTS,
&ca_certs_buf, &ca_certs_buf_len);
switch (rv) {
case EST_ERR_NONE:
/*
* Make sure that even though we got a success return code, that we
* actually received something
*/
if (ca_certs_buf_len == 0) {
EST_LOG_ERR("Retrieved CA Cert buf is zero bytes in length");
rv = EST_ERR_ZERO_LENGTH_BUF;
break;
}
if (ca_certs_buf_len+1 > EST_CA_MAX) {
EST_LOG_ERR("Retrieved CA Cert buf is larger than maximum allowed");
rv = EST_ERR_BUF_EXCEEDS_MAX_LEN;
break;
}
/*
* Resize the buffer holding the retrieved CA cert and link it
* into the ctx. Get rid of the http hdr and any extra space on
* the back.
*/
if (ctx->retrieved_ca_certs != NULL){
free(ctx->retrieved_ca_certs);
}
ctx->retrieved_ca_certs = malloc(ca_certs_buf_len+1);
if (ctx->retrieved_ca_certs == NULL) {
EST_LOG_ERR("Unable to allocate CA certs buffer");
rv = EST_ERR_MALLOC;
break;
}
ctx->retrieved_ca_certs[ca_certs_buf_len] = '\0';
memcpy_s(ctx->retrieved_ca_certs, ca_certs_buf_len+1, ca_certs_buf,
ca_certs_buf_len);
ctx->retrieved_ca_certs_len = ca_certs_buf_len;
/*
* Verify the returned CA cert chain
*/
rv = verify_cacert_resp(ctx, ctx->retrieved_ca_certs,
&ctx->retrieved_ca_certs_len);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Returned CACerts chain was invalid");
free(ctx->retrieved_ca_certs);
ctx->retrieved_ca_certs = NULL;
ctx->retrieved_ca_certs_len = 0;
*ca_certs_len = ctx->retrieved_ca_certs_len;
break;
}
/*
* pass back the length of the retrieved CA cert buffer
*/
*ca_certs_len = ctx->retrieved_ca_certs_len;
EST_LOG_INFO("CACerts buf: %s", ctx->retrieved_ca_certs);
EST_LOG_INFO("CACerts length: %d", ctx->retrieved_ca_certs_len);
break;
case EST_ERR_AUTH_FAIL:
EST_LOG_ERR("HTTP auth failure");
break;
case EST_ERR_CA_ENROLL_RETRY:
EST_LOG_INFO("HTTP request failed with a RETRY AFTER resp");
break;
default:
EST_LOG_ERR("EST request failed: %d (%s)", rv, EST_ERR_NUM_TO_STR(rv));
break;
}
}
if (http_data) {
free(http_data);
}
if (ca_certs_buf) {
free(ca_certs_buf);
}
return (rv);
}
EST_ERROR est_client_set_uid_pw (EST_CTX *ctx, const char *uid, const char *pwd)
{
/*
* If there's a userid, there must be a password, and vice versa.
* The userid can still be an empty string ( "" ), but it cannot
* be NULL if there's a password. (3.2.3).
*/
if (uid != NULL && pwd == NULL) {
EST_LOG_ERR("User ID provided with no password");
return EST_ERR_INVALID_PARAMETERS;
}
if (uid == NULL && pwd != NULL) {
EST_LOG_ERR("Password provided with no user ID");
return EST_ERR_INVALID_PARAMETERS;
}
/*
* if uid/pwd set, then we're doing basic/digest authentication
*/
if (uid != NULL) {
if ( MAX_UIDPWD < strnlen_s(uid, MAX_UIDPWD+1)) {
EST_LOG_ERR("Invalid User ID provided, too long.");
return EST_ERR_INVALID_PARAMETERS;
}
if (EOK != strcpy_s(ctx->userid, MAX_UIDPWD, uid)) {
EST_LOG_ERR("Invalid User ID provided");
return EST_ERR_INVALID_PARAMETERS;
}
if ( MAX_UIDPWD < strnlen_s(pwd, MAX_UIDPWD+1)) {
EST_LOG_ERR("Invalid Password provided, too long.");
return EST_ERR_INVALID_PARAMETERS;
}
if (EOK != strcpy_s(ctx->password, MAX_UIDPWD, pwd)) {
EST_LOG_ERR("Invalid Password provided");
return EST_ERR_INVALID_PARAMETERS;
}
}
return (EST_ERR_NONE);
}
/*
* Application API
*/
EST_ERROR est_client_enroll_internal (EST_CTX *ctx, char *cn, int *pkcs7_len, int *pkcs8_len,
EVP_PKEY *new_public_key, EST_OPERATION est_op)
{
EST_ERROR rv;
SSL *ssl = NULL;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (!new_public_key) {
return EST_ERR_NO_KEY;
}
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
goto err;
}
rv = est_client_enroll_cn(ctx, ssl, cn, pkcs7_len, pkcs8_len, est_op, new_public_key);
est_client_disconnect(ctx, &ssl);
if (rv == EST_ERR_AUTH_FAIL &&
(ctx->auth_mode == AUTH_DIGEST ||
ctx->auth_mode == AUTH_BASIC ||
ctx->auth_mode == AUTH_TOKEN)) {
/*
* HTTPS digest mode requires the use of MD5. Make sure we're not
* in FIPS mode and can use MD5
*/
if (ctx->auth_mode == AUTH_DIGEST && (EVP_default_properties_is_fips_enabled(NULL))){
EST_LOG_ERR("HTTP digest auth not allowed while in FIPS mode");
rv = EST_ERR_BAD_MODE;
goto err;
}
/* Try one more time if we're doing HTTP auth */
EST_LOG_INFO("HTTP Auth failed, trying again with HTTP Auth credentials");
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Connection failed on second attempt with HTTP Auth credentials");
goto err;
}
rv = est_client_enroll_cn(ctx, ssl, cn, pkcs7_len, pkcs8_len, est_op, new_public_key);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Enroll failed on second attempt with HTTP Auth credentials");
/*
* If we're attempting token mode for the second time, and
* the server responded with error attributes, log them now
*/
if (ctx->token_error[0] != '\0' || ctx->token_error_desc[0] != '\0') {
EST_LOG_ERR("Token Auth mode failed, server provided error information: \n"
" Error = %s\n Error description: %s",
ctx->token_error, ctx->token_error_desc);
ctx->token_error[0] = '\0';
ctx->token_error_desc[0] = '\0';
}
}
est_client_disconnect(ctx, &ssl);
}
ctx->auth_mode = AUTH_NONE;
err:
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
/*! @brief est_client_server_keygen_enroll() performs the simple enroll request with the EST
server
@param ctx Pointer to an EST context
@param cn Pointer to the Common Name value to be used in the enrollment
request.
@param pkcs7_len Pointer to an integer to hold the length of the PKCS7
buffer.
@param pkcs8_len Pointer to an integer to hold the length of the PKCS8
buffer.
@param new_public_key Pointer an EVP_PKEY structure that holds the
client's key pair to be used in the simple enroll request . The public
key is included in the Certificate Signing Request (CSR) sent to the CA
Server, and the private key is used to sign the request.
@return EST_ERROR
est_client_server_keygen_enroll() connects to the EST server, builds a simple
enroll request using the Common Name passed in cn. (It is built with the
provided key, but the keygen logic on the server will properly populate a
CSR with the newly server-generated key.) Then establishes an SSL/TLS
connection to the EST server that was configured with the previous call to
est_client_set_server(), and sends the request. The response is stored in
the EST context and the cert and key lengths are passed back to the
application through the pkcs7_len and pkcs8_len parameters of this function.
The application can then allocate a correctly sized buffer and call
est_client_copy_enrolled_cert() to retrieve the new client certificate
from the context, or est_client_copy_server_generated_key() to retrieve
the new key from the context.
*/
EST_ERROR est_client_server_keygen_enroll(EST_CTX *ctx, char *cn, int *pkcs7_len, int *pkcs8_len,
EVP_PKEY *new_public_key) {
return est_client_enroll_internal (ctx, cn, pkcs7_len, pkcs8_len, new_public_key, EST_OP_SERVER_KEYGEN);
}
/*! @brief est_client_enroll() performs the simple enroll request with the EST
server
@param ctx Pointer to an EST context
@param cn Pointer to the Common Name value to be used in the enrollment
request.
@param pkcs7_len Pointer to an integer to hold the length of the PKCS7
buffer.
@param new_public_key Pointer an EVP_PKEY structure that holds the
client's key pair to be used in the simple enroll request . The public
key is included in the Certificate Signing Request (CSR) sent to the CA
Server, and the private key is used to sign the request.
@return EST_ERROR
est_client_enroll() connects to the EST server, builds a simple enroll
request using the Common Name passed in cn, establishes a SSL/TLS
connection to the EST server that was configured with the previous call to
est_client_set_server(), and sends the simple enroll request. The
response is stored in the EST context and the length is passed back to the
application through the pkcs7_len parameter of this function. The
application can then allocate a correctly sized buffer and call
est_client_copy_enrolled_cert() to retrieve the new client certificate
from the context.
*/
EST_ERROR est_client_enroll (EST_CTX *ctx, char *cn, int *pkcs7_len,
EVP_PKEY *new_public_key) {
return est_client_enroll_internal (ctx, cn, pkcs7_len, NULL, new_public_key, EST_OP_SIMPLE_ENROLL);
}
/*! @brief est_client_provision_cert() performs the full sequence of
EST operations to enroll a new certificate using a trusted message flow.
@param ctx Pointer to an EST context
@param cn Pointer to the Common Name value to be used in the enrollment
request.
@param pkcs7_len Pointer to an integer to hold the length of the PKCS7
certificate returned from the RA or CA.
@param ca_cert_len Pointer to an integer to hold the length of the buffer
that will hold the new trusted CA certificates.
@param new_public_key Pointer an EVP_PKEY structure that holds the
client's key pair to be used in the simple enroll request . The public
key is included in the Certificate Signing Request (CSR) sent to the CA
Server, and the private key is used to sign the request.
@return EST_ERROR
est_client_provision_cert() connects to the EST server, retrieves the
latest trusted CA certificates from the server, retrieves the CSR attributes
from the server, and sends the simple enroll request to the server to
provision a new certificate from the RA or CA. This is a convenience
function that is equivalent to invoking the following three functions
in order:
est_client_get_cacerts()
est_client_get_csrattrs()
est_client_enroll()
This function takes a Common Name (CN) as the only entity identifier
that will be used in the CSR. If additional X509 attributes
or extensions are required because the EST server is enforcing the
presence of all the CSR attributes, then this function should not be used
to provision a certificate. The est_client_enroll_csr() function should
be used when additional X509 attributes are to be included in the
enroll request.
The provisioning response is stored in the EST context and the length is passed
back to the application through the pkcs7_len parameter of this function. The
application can then allocate a correctly sized buffer and call
est_client_copy_enrolled_cert() to retrieve the new client certificate
from the context.
The provisioning response also includes the latest copy of the trusted
CA certificates from the EST server. These should be persisted locally
by the application for future use. The ca_cert_len argument will contain the
length of the certificates, which can then be retrieved by invoking
est_client_copy_cacerts().
*/
EST_ERROR est_client_provision_cert (EST_CTX *ctx, char *cn,
int *pkcs7_len,
int *ca_cert_len,
EVP_PKEY *new_public_key)
{
EST_ERROR rv;
unsigned char *new_ta_p7;
unsigned char *new_ta_pem;
unsigned char *attr_data = NULL;
int attr_len;
int new_ta_len;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
/*
* Make sure we have non-NULL pointers for the lengths
*/
if (!pkcs7_len || !ca_cert_len) {
return (EST_ERR_INVALID_PARAMETERS);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (!new_public_key) {
return (EST_ERR_NO_KEY);
}
/*
* First, get the latest trust anchor certs from the server.
*/
rv = est_client_get_cacerts(ctx, ca_cert_len);
if (rv != EST_ERR_NONE) {
return rv;
}
new_ta_p7 = malloc(*ca_cert_len);
if (new_ta_p7 == NULL) {
EST_LOG_ERR("Unable to allocate CA certs buffer");
rv = EST_ERR_MALLOC;
return rv;
}
rv = est_client_copy_cacerts(ctx, new_ta_p7);
if (rv != EST_ERR_NONE) {
free(new_ta_p7);
return (rv);
}
/*
* The certs are base64 DER encoded. We need to convert
* them to PEM.
*/
new_ta_len = est_convert_p7b64_to_pem (new_ta_p7, *ca_cert_len, &new_ta_pem);
free(new_ta_p7);
if (new_ta_len <= 0) {
return (EST_ERR_PEM_READ);
}
/*
* We now have the new trust anchor and it's PEM encoded.
* Let's load it into the current EST context. All
* future EST operations will then be using this new
* trust anchor.
*/
if (ctx->trusted_certs_store != NULL) {
X509_STORE_free(ctx->trusted_certs_store);
}
rv = est_load_trusted_certs(ctx, new_ta_pem, new_ta_len);
free(new_ta_pem);
if (rv != EST_ERR_NONE) {
return rv;
}
/*
* Since we've reset the trust store, mark the client
* context as initialized.
*/
ctx->est_client_initialized = 1;
/*
* Next we need to get the CSR attributes, which allows libEST
* to know if the challengePassword needs to be included in the
* CSR.
*/
rv = est_client_get_csrattrs(ctx, &attr_data, &attr_len);
if (rv != EST_ERR_NONE && rv != EST_ERR_HTTP_NO_CONTENT) {
EST_LOG_ERR("Unable to get CSR attributes while provisioning a new "
"certificate");
return (rv);
}
/*
* Finally, we can attempt to enroll a new certificate using the
* Common Name provided by the application.
*/
rv = est_client_enroll(ctx, cn, pkcs7_len, new_public_key);
return (rv);
}
/*! @brief est_client_reenroll() performs a re-enroll request with the EST
server using an existing X509 certificate.
@param ctx Pointer to an EST context
@param cert Pointer to the X509 certificate, which is defined as an OpenSSL
X509.
@param pkcs7_len Pointer to an integer to hold the length of the PKCS7
buffer.
@param priv_key Pointer to the private key that will be used to sign the CSR.
@return EST_ERROR
est_client_reenroll() connects to the EST server, establishes a SSL/TLS
connection to the EST server that was configured with the previous call to
est_client_set_server(), and sends the re-enroll request. The application
layer must provide the X509 certificate that will be enrolled. This certificate
should have previously been enrolled with the CA. The application also
needs to provide the private key associated with the public key in the
X509 certificate. This private key is required to sign the CSR that is
generated from the X509 certificate.
The enroll response is stored in the EST context and the length
is passed back to the application through the pkcs7_len parameter of this
function. The application can then allocate a correctly sized buffer and
call est_client_copy_enrolled_cert() to retrieve the new client certificate
from the context.
The application must provide a pointer to the private key used to sign the CSR.
This is required by the EST library in the event that the EST server has
requested the proof-of-possession value be included in the CSR. The EST library
will automatically include the proof-of-posession value and sign the CSR
again.
Be aware that only the public key and subject name from the X509 certificate
are included in the re-enroll request sent to the EST server. The CA is
responsible for re-applying any X509 extensions that are to be issued with
the renewed certificate.
*/
EST_ERROR est_client_reenroll (EST_CTX *ctx, X509 *cert, int *pkcs7_len, EVP_PKEY *priv_key)
{
X509_REQ *req;
EST_ERROR rv;
SSL *ssl = NULL;
#ifdef HAVE_OLD_OPENSSL
int ossl_rv;
#endif
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!cert) {
return (EST_ERR_NO_CERT);
}
if (!priv_key) {
return (EST_ERR_NO_KEY);
}
if (!ctx->est_client_initialized) {
return (EST_ERR_CLIENT_NOT_INITIALIZED);
}
/*
* Check the X509 given to us
*/
rv = est_client_check_x509(cert);
if (rv != EST_ERR_NONE) {
return (rv);
}
/*
* Check that the private key matches the public key
* in the cert.
*/
if (X509_check_private_key(cert, priv_key) <= 0) {
return (EST_ERR_CLIENT_INVALID_KEY);
}
/*
* Convert the existing certificate to a CSR
* This will copy the subject name from the cert into
* a new CSR. We pass in NULL for the private key parameter
* below because we will sign this CSR ourselves later.
*/
req = X509_to_X509_REQ(cert, NULL, ctx->signing_digest);
if (!req) {
EST_LOG_ERR("X509 to CSR conversion failed.");
ossl_dump_ssl_errors();
return (EST_ERR_NO_CSR);
}
/*
* Copy the X509 extensions from the old certificate
* to the CSR. The CA may or may not retain these, as
* this behavior depends on policy. When using the
* OpenSSL test CA, set the copy_extensions setting
* in the config file to copyall to retain the
* extensions in the CSR when issuing a new cert.
*/
#ifdef HAVE_OLD_OPENSSL
if (cert->cert_info && cert->cert_info->extensions) {
ossl_rv = X509_REQ_add_extensions(req, cert->cert_info->extensions);
if (!ossl_rv) {
EST_LOG_WARN("Failed to copy X509 extensions to the CSR. Your new certificate may not contain the extensions present in the old certificate.");
}
}
#else
{
STACK_OF(X509_EXTENSION) *sk_of_extensions;
/*
* extract the extensions from the cert
*/
sk_of_extensions = (STACK_OF(X509_EXTENSION) *)X509_get0_extensions((const X509 *)cert);
/*
* If there were any, add them to the REQ
*/
if (X509v3_get_ext_count((const STACK_OF(X509_EXTENSION) *) sk_of_extensions)) {
if (0 == X509_REQ_add_extensions(req, sk_of_extensions)) {
goto err;
}
}
}
#endif
/*
* Establish TLS session with the EST server
*/
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
goto err;
}
/*
* Send the re-enroll request
*/
rv = est_client_enroll_pkcs10(ctx, ssl, req, pkcs7_len, NULL, EST_OP_SIMPLE_REENROLL, priv_key);
est_client_disconnect(ctx, &ssl);
if (rv == EST_ERR_AUTH_FAIL &&
(ctx->auth_mode == AUTH_DIGEST ||
ctx->auth_mode == AUTH_BASIC ||
ctx->auth_mode == AUTH_TOKEN)) {
/*
* HTTPS digest mode requires the use of MD5. Make sure we're not
* in FIPS mode and can use MD5
*/
if (ctx->auth_mode == AUTH_DIGEST && (EVP_default_properties_is_fips_enabled(NULL))){
EST_LOG_ERR("HTTP digest auth not allowed while in FIPS mode");
rv = EST_ERR_BAD_MODE;
goto err;
}
/* Try one more time if we're doing Digest auth */
EST_LOG_INFO("HTTP Auth failed, trying again with HTTP Auth credentials");
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Connection failed on second attempt with HTTP Auth credentials");
goto err;
}
rv = est_client_enroll_pkcs10(ctx, ssl, req, pkcs7_len, NULL, EST_OP_SIMPLE_REENROLL, priv_key);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Reenroll failed on second attempt with HTTP Auth credentials");
/*
* If we're attempting token mode for the second time, and
* the server responded with error attributes, log them now
*/
if (ctx->token_error[0] != '\0' || ctx->token_error_desc[0] != '\0') {
EST_LOG_ERR("Token Auth mode failed, server provided error information: \n"
" Error = %s\n Error description: %s",
ctx->token_error, ctx->token_error_desc);
ctx->token_error[0] = '\0';
ctx->token_error_desc[0] = '\0';
}
}
est_client_disconnect(ctx, &ssl);
}
err:
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
X509_REQ_free(req);
return (rv);
}
static EST_ERROR est_client_enroll_csr_internal (EST_CTX *ctx, X509_REQ *csr, int *pkcs7_len, int *pkcs8_len,
EVP_PKEY *priv_key, EST_OPERATION est_op)
{
EST_ERROR rv;
SSL *ssl = NULL;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!csr) {
return (EST_ERR_NO_CSR);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
/*
* Establish TLS session with the EST server
*/
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
goto err;
}
if (priv_key) {
rv = est_client_enroll_pkcs10(ctx, ssl, csr, pkcs7_len, pkcs8_len, est_op, priv_key);
} else {
rv = est_client_enroll_req(ctx, ssl, csr, pkcs7_len, pkcs8_len, est_op);
}
est_client_disconnect(ctx, &ssl);
if (rv == EST_ERR_AUTH_FAIL &&
(ctx->auth_mode == AUTH_DIGEST ||
ctx->auth_mode == AUTH_BASIC ||
ctx->auth_mode == AUTH_TOKEN)) {
/*
* HTTPS digest mode requires the use of MD5. Make sure we're not
* in FIPS mode and can use MD5
*/
if (ctx->auth_mode == AUTH_DIGEST && (EVP_default_properties_is_fips_enabled(NULL))){
EST_LOG_ERR("HTTP digest auth not allowed while in FIPS mode");
rv = EST_ERR_BAD_MODE;
goto err;
}
/* Try one more time if we're doing Digest auth */
EST_LOG_INFO("HTTP Auth failed, trying again with HTTP Auth credentials");
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Connection failed on second attempt with HTTP Auth credentials");
goto err;
}
if (priv_key) {
rv = est_client_enroll_pkcs10(ctx, ssl, csr, pkcs7_len, pkcs8_len, est_op, priv_key);
} else {
rv = est_client_enroll_req(ctx, ssl, csr, pkcs7_len, pkcs8_len, est_op);
}
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Enroll failed on second attempt with HTTP Auth credentials");
}
est_client_disconnect(ctx, &ssl);
}
err:
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
/*! @brief est_client_enroll_csr() performs the simple enroll request with the EST
server using a PKCS10 CSR provided by the application layer.
@param ctx Pointer to an EST context
@param csr Pointer to the PKCS10 CSR data, which is defined as an OpenSSL
X509_REQ.
@param pkcs7_len Pointer to an integer to hold the length of the PKCS7
buffer.
@param priv_key Pointer to the private key that will be used to sign the CSR,
or NULL
@return EST_ERROR
est_client_enroll_csr() connects to the EST server, establishes a SSL/TLS
connection to the EST server that was configured with the previous call to
est_client_set_server(), and sends the simple enroll request. The application
layer must provide the PKCS10 CSR that will be enrolled.
If the priv_key argument given is not NULL, then the CSR should not
need to be signed by the private key. However, the CSR must contain everything
else that is required, including the public key. If the private key is provided
with an already signed CSR, then the EST library will re-sign the CSR.
The enroll response is stored in the EST context and the length
is passed back to the application through the pkcs7_len parameter of this
function. The application can then allocate a correctly sized buffer and
call est_client_copy_enrolled_cert() to retrieve the new client certificate
from the context.
Unless the CSR is not already signed, which is indicated by a NULL priv_key,
the application must provide a pointer to the private key used to sign the CSR.
This is required by the EST library in the event that the EST server has
requested the proof-of-possession value be included in the CSR. The EST library
will automatically include the proof-of-posession value and sign the CSR
again.
Be aware that the X509_REQ data passed to this function must be valid. Passing
corrupted CSR data may result in a system crash. libEST utilizes the OpenSSL
ASN decoding logic to read the X509_REQ data. OpenSSL does not perform
safety checks on the X509_REQ data when parsing. If your application is
reading externally generated PEM or DER encoded CSR data, then please use
the est_read_x509_request() helper function to convert the PEM/DER CSR into a
valid X509_REQ pointer.
*/
EST_ERROR est_client_enroll_csr (EST_CTX *ctx, X509_REQ *csr, int *pkcs7_len, EVP_PKEY *priv_key)
{
return est_client_enroll_csr_internal (ctx, csr, pkcs7_len, NULL, priv_key, EST_OP_SIMPLE_ENROLL);
}
/*! @brief est_client_server_keygen() performs the simple enroll with server side key generation request with the EST
server
@param ctx Pointer to an EST context
@param csr Pointer to the PKCS10 CSR data, which is defined as an OpenSSL
X509_REQ.
@param pkcs7_len Pointer to an integer to hold the length of the PKCS7
buffer.
@param pkcs8_len Pointer to an integer to hold the length of the PKCS8
buffer.
@param priv_key Pointer to the private key that will be used to sign the CSR,
or NULL
@return EST_ERROR
est_client_server_keygen_enroll() connects to the EST server, builds an
enroll request using the CSR passed in csr. (It is built with the
provided key, but the keygen logic on the server will properly populate a
CSR with the newly server-generated key.) Then establishes an SSL/TLS
connection to the EST server that was configured with the previous call to
est_client_set_server(), and sends the request. The response is stored in
the EST context and the cert and key lengths are passed back to the
application through the pkcs7_len and pkcs8_len parameters of this function.
The application can then allocate a correctly sized buffer and call
est_client_copy_enrolled_cert() to retrieve the new client certificate
from the context, or est_client_copy_server_generated_key() to retrieve
the new key from the context.
*/
EST_ERROR est_client_server_keygen_enroll_csr (EST_CTX *ctx, X509_REQ *csr, int *pkcs7_len,
int *pkcs8_len, EVP_PKEY *priv_key) {
if (!priv_key) {
return EST_ERR_NO_KEY;
}
return est_client_enroll_csr_internal(ctx, csr, pkcs7_len, pkcs8_len, priv_key, EST_OP_SERVER_KEYGEN);
}
/*! @brief est_client_copy_enrolled_cert() passes back the client certificate
that was previously obtained from the EST server by the call to
est_client_enroll().
@param ctx Pointer to an EST context
@param pkcs7 Pointer to a pointer that will point to the buffer that
contains the newly enrolled client certificate.
@return EST_ERROR
est_client_copy_enrolled_cert() copies the previously obtained client
certificate from the EST context to the application's buffer. Once this
client certificate is copied out of the context it is removed from the
context.
*/
EST_ERROR est_client_copy_enrolled_cert (EST_CTX *ctx, unsigned char *pkcs7)
{
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (pkcs7 == NULL){
EST_LOG_ERR("EST Client: Simple Enroll, invalid parameter");
return EST_ERR_INVALID_PARAMETERS;
}
if (ctx->enrolled_client_cert == NULL){
EST_LOG_ERR("No client certificate to copy");
return(EST_ERR_NO_CERTIFICATE);
}
memzero_s(pkcs7, ctx->enrolled_client_cert_len);
memcpy_s(pkcs7, ctx->enrolled_client_cert_len, ctx->enrolled_client_cert,
ctx->enrolled_client_cert_len);
/*
* Now that the copy in the context has been handed over,
* free it up
*/
free(ctx->enrolled_client_cert);
ctx->enrolled_client_cert = NULL;
ctx->enrolled_client_cert_len = 0;
return (EST_ERR_NONE);
}
/*! @brief est_client_copy_server_generated_key() passes back the server generated
private key that was previously obtained from the EST server by the call to
est_client_enroll().
@param ctx Pointer to an EST context
@param pkcs8 Pointer to a pointer that will point to the buffer that
contains the server generated private key.
@return EST_ERROR
est_client_copy_server_generated_key() copies the previously obtained
server-generated key from the EST context to the application's buffer.
Once this key is copied out of the context it is removed from the
context.
*/
EST_ERROR est_client_copy_server_generated_key (EST_CTX *ctx, unsigned char *pkcs8)
{
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (!pkcs8){
EST_LOG_ERR("EST Client: Server-side Key Generation Enroll, invalid parameter");
return EST_ERR_INVALID_PARAMETERS;
}
if (ctx->server_gen_client_priv_key == NULL){
EST_LOG_ERR("No client private key to copy");
return(EST_ERR_NO_KEY);
}
/*
* Parse buffer for private key
*/
memzero_s(pkcs8, ctx->server_gen_key_len);
memcpy_s(pkcs8, ctx->server_gen_key_len, ctx->server_gen_client_priv_key,
ctx->server_gen_key_len);
/*
* Now that the copy in the context has been handed over,
* free it up
*/
memzero_s(ctx->server_gen_client_priv_key, ctx->server_gen_key_len);
free(ctx->server_gen_client_priv_key);
ctx->server_gen_client_priv_key = NULL;
ctx->server_gen_key_len = 0;
return (EST_ERR_NONE);
}
/*! @brief est_client_get_cacerts() performs a CAcerts GET request to the EST server
@param ctx Pointer to an EST context
@param ca_certs_len Pointer to an integer to hold the length of the CA certs
buffer
@return EST_ERROR
est_client_get_cacerts() connects to the EST server, builds a CA certs
request, and sends the GET CA certs request. The response is placed in a
buffer allocated and maintained by the EST client library and a pointer to
this buffer is returned to the calling application. The returned CA certs
are in base64 encoded DER format and is stored in a NULL terminated string
buffer.
Once the CA certificates are retrieved from the EST server, the ET Client
library must be reset. The retrieved CA certificates should now be passed
into the EST client initialization function as the explicit TA database.
*/
EST_ERROR est_client_get_cacerts (EST_CTX *ctx, int *ca_certs_len)
{
EST_ERROR rv = EST_ERR_NONE;
SSL *ssl = NULL;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (ca_certs_len == NULL) {
EST_LOG_ERR("EST Client: Get CACerts, invalid parameter");
return EST_ERR_INVALID_PARAMETERS;
}
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
rv = est_client_send_cacerts_request(ctx, ssl, ca_certs_len);
est_client_disconnect(ctx, &ssl);
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
/*! @brief est_client_copy_cacerts() copies the previously retrieved CA
certificates to the application's buffer.
@param ctx Pointer to the current EST context.
@param ca_certs Pointer to the buffer into which the retrieved CA certificates
are to be copied.
@return EST_ERROR
est_client_copy_cacerts() copies the most recently retrieved CA
certificates from the EST server. Once these CA certificates are copied
to the application's buffer pointed to by ca_certs they are removed from
the EST client context.
Once the CA certificates are retrieved by the application, the EST client
library must be reset. When this reset is performed, the CA certificates
retrieved in this est_client_copy_cacerts call should be passed into the
EST client initialization function as the explicit TA database.
*/
EST_ERROR est_client_copy_cacerts (EST_CTX *ctx, unsigned char *ca_certs)
{
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (ca_certs == NULL) {
EST_LOG_ERR("EST Client: Get CACerts, invalid parameter");
return EST_ERR_INVALID_PARAMETERS;
}
if (ctx->retrieved_ca_certs == NULL) {
EST_LOG_ERR("No CA certificates to copy");
return(EST_ERR_NO_CERTIFICATE);
}
memzero_s(ca_certs, ctx->retrieved_ca_certs_len);
memcpy_s(ca_certs, ctx->retrieved_ca_certs_len, ctx->retrieved_ca_certs,
ctx->retrieved_ca_certs_len);
/*
* if the CA certs were obtained, then the client lib needs to be reset.
*/
ctx->est_client_initialized = 0;
return (EST_ERR_NONE);
}
/*! @brief est_client_get_csrattrs() performs the CSR attributes request to
the EST server.
@param ctx Pointer to EST context for a client session
@param csr_data Pointer to a buffer that is to hold the returned CSR
attributes
@param csr_len Pointer to an integer that is to hold the length of the CSR
attributes buffer
@return EST_ERROR
est_client_get_csrattrs() connects to the EST server, sends the CSR
attributes request to the server, saves aways the returned CSR attribute
data, and then disconnects from the EST server.
API Change Note: In order to allow more descriptive errors to be supplied to
the client, the returned EST_ERROR codes that are returned from this
function have changed. In the past when no CSR attributes were found on the
server and a HTTP 204 (No Content) or a HTTP 404 (Not Found) code were
received, this function would return an EST_ERR_NONE indicating no error as
the client should be able to continue to operating without the csr
attributes. Releases of libEST after 3.1.0 will now return the error code
EST_ERR_HTTP_NO_CONTENT, and EST_ERR_HTTP_NOT_FOUND when the client recieves
a 204 and a 404 response code respectively. Client code that utilizes this
function may need to be updated to handle these error code as a success
cases. For examples take a look at the updated example code in estclient.c.
*/
EST_ERROR est_client_get_csrattrs (EST_CTX *ctx, unsigned char **csr_data, int *csr_len)
{
int rv, new_csr_len, pop_required = 0;
SSL *ssl = NULL;
unsigned char *new_csr_data;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!csr_data) {
return (EST_ERR_INVALID_PARAMETERS);
}
if (!csr_len) {
return (EST_ERR_INVALID_PARAMETERS);
}
/* assume defeat */
*csr_data = NULL;
*csr_len = 0;
/*
* Connect to the EST server
*/
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
/*
* free the current attributes if cached
*/
if (ctx->retrieved_csrattrs) {
free(ctx->retrieved_csrattrs);
ctx->retrieved_csrattrs = NULL;
ctx->retrieved_csrattrs_len = 0;
}
ctx->retrieved_csrattrs_len = 0;
ctx->retrieved_csrattrs = NULL;
/*
* Send the HTTP request to the EST server
*/
rv = est_client_send_csrattrs_request(ctx, ssl, &new_csr_data, &new_csr_len);
est_client_disconnect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("CSR request failed, error code is %d (%s)", rv, EST_ERR_NUM_TO_STR(rv));
if (new_csr_data) {
free(new_csr_data);
}
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
if (new_csr_data == NULL) {
EST_LOG_INFO("CSR attributes are: NULL");
return (EST_ERR_NONE);
}
/*
* have to allocate the new memory prior to
* parsing to be sure it is null terminated.
*/
ctx->retrieved_csrattrs = malloc(new_csr_len + 1);
if (!ctx->retrieved_csrattrs) {
free(new_csr_data);
return (EST_ERR_MALLOC);
}
ctx->retrieved_csrattrs_len = new_csr_len;
memcpy_s(ctx->retrieved_csrattrs, new_csr_len+1, new_csr_data, new_csr_len);
ctx->retrieved_csrattrs[new_csr_len] = 0;
EST_LOG_INFO("CSR attributes are(%d): %s", ctx->retrieved_csrattrs_len,
ctx->retrieved_csrattrs);
free(new_csr_data);
/* Now make sure the data is valid */
rv = est_asn1_parse_attributes((char *)ctx->retrieved_csrattrs, ctx->retrieved_csrattrs_len,
&pop_required);
if (rv != EST_ERR_NONE) {
free(ctx->retrieved_csrattrs);
ctx->retrieved_csrattrs = NULL;
ctx->retrieved_csrattrs_len = 0;
} else {
*csr_data = ctx->retrieved_csrattrs;
*csr_len = ctx->retrieved_csrattrs_len;
}
ctx->csr_pop_required = pop_required;
return (rv);
}
/*! @brief est_client_enable_srp() is used by an application to enable
TLS-SRP as the transport, which is used in place of traditional
TLS. TLS-SRP allows for secure transport when an X.509 certificate
is not available or when a trust anchor is not available.
@param ctx EST context obtained from the est_client_init() call.
@param strength Specifies the SRP strength to use.
@param uid char buffer containing the user id to be used as the
SRP user name.
@param pwd char buffer containing the password to be used as the
SRP password.
This function allows an application to enable TLS-SRP cipher suites,
which is another form for TLS. This could be used when the EST client
does not have an X.509 certificate to identify itself to the EST
server. It can also be used by the EST client when a trust anchor
is not available to authenticate the EST server identity.
The EST server must support TLS-SRP when using this API.
This function must be invoked after est_client_init() and prior to
issuing any EST commands..
All string parameters are NULL terminated strings.
@return EST_ERROR.
*/
EST_ERROR est_client_enable_srp (EST_CTX *ctx, int strength, char *uid, char *pwd)
{
X509_STORE *store;
int store_cert_cnt = 0;
int rv;
if (ctx == NULL) {
EST_LOG_ERR("Null context passed");
return (EST_ERR_NO_CTX);
}
if (ctx->ssl_ctx == NULL) {
EST_LOG_ERR("SSL context has not been initialized");
return (EST_ERR_NO_SSL_CTX);
}
if (strength < EST_SRP_STRENGTH_MIN) {
EST_LOG_ERR("SRP strength must be greater than %d", EST_SRP_STRENGTH_MIN);
return (EST_ERR_SRP_STRENGTH_LOW);
}
if (uid == NULL) {
EST_LOG_ERR("SRP user ID must be provided");
return (EST_ERR_INVALID_PARAMETERS);
}
if (pwd == NULL) {
EST_LOG_ERR("SRP password must be provided");
return (EST_ERR_INVALID_PARAMETERS);
}
ctx->enable_srp = 1;
/*
* Enable just the SRP cipher suites. When SRP is enabled,
* it's used exclusively.
*
* Check if we have a trust anchor configured. We will
* enable the DSS and RSA auth cipher suites if we do.
*/
store = SSL_CTX_get_cert_store(ctx->ssl_ctx);
#ifdef HAVE_OLD_OPENSSL
if (store && store->objs) {
store_cert_cnt = sk_X509_OBJECT_num(store->objs);
}
#else
store_cert_cnt = sk_X509_OBJECT_num(X509_STORE_get0_objects(store));
#endif
if (store_cert_cnt) {
EST_LOG_INFO("Enable SSL SRP cipher suites with RSA/DSS\n");
rv = SSL_CTX_set_cipher_list(ctx->ssl_ctx, EST_CIPHER_LIST_SRP_AUTH);
} else {
EST_LOG_INFO("Enable SSL SRP cipher suites w/o RSA/DSS\n");
rv = SSL_CTX_set_cipher_list(ctx->ssl_ctx, EST_CIPHER_LIST_SRP_ONLY);
}
if (!rv) {
EST_LOG_ERR("Failed to set SSL SRP cipher suites\n");
ossl_dump_ssl_errors();
return EST_ERR_SSL_CIPHER_LIST;
}
/*
* Set the SRP user name and password.
*/
if (!SSL_CTX_set_srp_username(ctx->ssl_ctx, uid)) {
EST_LOG_ERR("Unable to set SRP username\n");
ossl_dump_ssl_errors();
return EST_ERR_UNKNOWN;
}
if (!SSL_CTX_set_srp_password(ctx->ssl_ctx, pwd)) {
EST_LOG_ERR("Unable to set SRP password\n");
ossl_dump_ssl_errors();
return EST_ERR_UNKNOWN;
}
SSL_CTX_set_srp_strength(ctx->ssl_ctx, strength);
EST_LOG_INFO("TLS-SRP enabled");
return (EST_ERR_NONE);
}
/*! @brief est_client_set_auth() is used by an application to set up the
authentication parameters to be used.
@param ctx EST context obtained from the est_client_init() call.
@param uid char buffer containing the user id to be used for basic
and digest based authentication
@param pwd char buffer containing the password to be used for basic
and digest based authentication
@param client_cert char buffer containing the client application
certificate.
@param private_key Private key that can be used with the client cert
This function allows an application to provide the information required
for authenticating the EST client with the EST server. Until this call is
made, the only accepted request is the GET CA Certs. If the user id is
provided, a password must also be provided.
The application may pass the private key (pkey_raw/pkey_len) to be used
for signing requests to the server, otherwise, only basic or digest based
authentication will be performed on the TLS session for these requests.
If the private key is passed, it must contain the private key that matches
the public key contained in the client_cert parameter.
All string parameters are NULL terminated strings.
@return EST_ERROR. If error, NULL.
*/
EST_ERROR est_client_set_auth (EST_CTX *ctx, const char *uid, const char *pwd,
X509 *client_cert, EVP_PKEY *private_key)
{
EST_ERROR rv = EST_ERR_NONE;
if (ctx == NULL) {
EST_LOG_ERR("Null context passed");
return (EST_ERR_NO_CTX);
}
rv = est_client_set_uid_pw(ctx, uid, pwd);
if (rv != EST_ERR_NONE) {
return (rv);
}
ctx->auth_mode = AUTH_NONE;
/*
* cache away the client cert and the associated private key, then
* get them loaded into the SSL context so that they'll be used.
*/
ctx->client_key = private_key;
ctx->client_cert = client_cert;
/*
* Load the client cert if it's available
*/
if (ctx->client_cert && ctx->client_key) {
if (est_client_set_cert_and_key(ctx->ssl_ctx, ctx->client_cert, ctx->client_key)) {
EST_LOG_ERR("Unable to load local certificate and private key");
return EST_ERR_CLIENT_INVALID_KEY;
}
} else {
EST_LOG_WARN("Not using client certificate for TLS session, HTTP basic or digest auth will be used.");
}
return EST_ERR_NONE;
}
/*! @brief est_client_set_auth_cred_cb() is used by an application to register
its callback function.
@param ctx EST context obtained from the est_client_init() call.
@param auth_credentials_cb Function pointer to the application layer callback
The registered callback function is used by the EST client library to obtain
authentication credentials. The application can provide authentication
credentials during initialization if they are available, such as the userid
and password used with HTTP basic authentication. During the processing of
a request, the EST client library will call this application callback in the
event that it does not have the authentication credentials that are being
requested by the EST server.
The callback function definition must match the following function
prototype,
int (*auth_credentials_cb)(EST_HTTP_AUTH_HDR *auth_credentials);
auth_credentials - A pointer to a EST_HTTP_AUTH_HDR structure. The
structure is provided by the EST library and the callback
function fills in the specific credentials being
requested. These credential values must be passed in the
format in which they will be sent to the server, that is,
the EST client library will perform no reformatting of
these credentials. Ownership of the memory holding these
credential values is transferred from the application
layer to the EST library when the application layer
returns these values to the EST library. This allows the
EST library to free up this memory as soon as it is done
using these values.
The return value from the callback must be one of the following values:
EST_HTTP_AUTH_CRED_SUCCESS - If the callback was able to provide the
requested credentials.
EST_HTTP_AUTH_CRED_NOT_AVAILABLE - If the callback could not provide the
requested credentials.
The auth_credentials_cb parameter can be set to NULL to reset the callback
function.
All string parameters are NULL terminated strings.
@return EST_ERROR.
EST_ERR_NONE - Success.
EST_ERR_NO_CTX
*/
EST_ERROR est_client_set_auth_cred_cb (EST_CTX *ctx, auth_credentials_cb callback)
{
if (ctx == NULL) {
EST_LOG_ERR("Null context passed");
return (EST_ERR_NO_CTX);
}
ctx->auth_credentials_cb = callback;
return EST_ERR_NONE;
}
/*! @brief est_client_enable_basic_auth_hint() is used by an application to
reduce overhead at the TCP and TLS layers when the client knows that
the EST server is using HTTP Basic Authentication.
@param ctx Pointer to EST context for a client session
Normally libEST will send an anonymous HTTP request when doing the
initial request from the EST server. This function allows an application
to improve performance by sending the HTTP Basic Auth header in the initial
request sent to the EST server. This eliminates the need for the server to send
the HTTP authentication challenge response, which eliminates a round-trip
between the EST client and server. This function should be called immediately
after invoking est_client_set_auth().
Precautions should be taken by your application to ensure this hint is
only enabled when it is known that the EST server is configured for HTTP
Basic Authentication. If the EST server is configured for HTTP Digest
Authentication, then enabling this hint will cause the EST transaction
to fail.
@return EST_ERROR
EST_ERR_NONE - Success.
*/
EST_ERROR est_client_enable_basic_auth_hint (EST_CTX *ctx)
{
if (ctx == NULL) {
EST_LOG_ERR("Null context passed");
return (EST_ERR_NO_CTX);
}
ctx->auth_mode = AUTH_BASIC;
return (EST_ERR_NONE);
}
/*! @brief est_client_init() is used by an application to create
a context in the EST library. This context is used when invoking
other functions in the client API.
@param ca_chain Required char buffer containing CA certificates as raw byte
data, to be used for authenticating the EST server
@param ca_chain_len length of ca_chain char buffer.
@param cert_format defines the format of the certificates that will be
passed down during this instantiation of the EST client library. Currently,
the only value accepted is EST_CERT_FORMAT_PEM
@param cert_verify_cb A pointer to a function in the EST client application
that is called when a received server identity certificate has failed
verification from the SSL code. This function takes as input two
parameters, a pointer to the X509 structure containing the server's
certificate, and a integer value set to the OpenSSL defined error
for this certificate. This callback function returns a 0 if the server's
identity certificate has been rejected, and any other value if it
has been approved.
This function allows an application to initialize an EST client context.
The application must provide the local CA certificates
(ca_chain/ca_chain_len) to use for client operation. The certificates
provided must be in the format specified by the cert_format parameter.
Currently, only PEM encoded certificates are supported. The length
parameters for the certificates (ca_chain_len) are to be used when DER
formatted certificates are passed. The CA certificates may contain CRL
entries that will be used when authenticating the certificates received
from the server.
@return EST_CTX. If error, NULL.
*/
EST_CTX *est_client_init (unsigned char *ca_chain, int ca_chain_len,
EST_CERT_FORMAT cert_format,
int (*cert_verify_cb)(X509 *, int))
{
EST_CTX *ctx;
volatile int len;
int rv;
#ifdef WIN32
int iResult;
/*
*Initialize Winsock
*/
iResult = WSAStartup(MAKEWORD(2, 2), &wsaData);
if (iResult != 0) {
EST_LOG_ERR("WSAStartup Failed: %d\n", iResult);
return 0;
}
#endif
if (cert_format != EST_CERT_FORMAT_PEM) {
EST_LOG_ERR("Only PEM encoding of certificates is supported.");
return NULL;
}
/*
* If a CA chain was passed in, then check the length value passed in. It
* should match the calculated length of the buffer. This will verify
* both that the length value is correct, and that the buffer is properly
* null terminated.
*/
if (ca_chain) {
len = (int) strnlen_s((char *)ca_chain, EST_CA_MAX);
if (len != ca_chain_len) {
EST_LOG_ERR("Length of ca_chain doesn't match passed ca_chain_len");
return NULL;
}
}
ctx = malloc(sizeof(EST_CTX));
if (!ctx) {
EST_LOG_ERR("Unable to allocate memory for EST Context");
return NULL;
}
memzero_s(ctx, sizeof(EST_CTX));
ctx->est_mode = EST_CLIENT;
/*
* Load the local CA certificates into memory and retain
* for future use. This will be used for /CACerts requests.
*/
if (est_load_trusted_certs(ctx, ca_chain, ca_chain_len)) {
EST_LOG_ERR("Failed to load trusted certificate store");
est_destroy(ctx);
return NULL;
}
rv = est_client_init_ssl_ctx(ctx);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Failed to initialize SSL context with certificate and private key passed");
est_destroy(ctx);
return NULL;
}
/*
* save away the client's callback function that allows for manual verification of
* the server's identity certificate
*/
ctx->manual_cert_verify_cb = cert_verify_cb;
/*
* Set the default value for the socket read timeout.
*/
ctx->read_timeout = EST_SSL_READ_TIMEOUT_DEF;
/*
* We use SHA-256 as the default hash algorithm
* for signing the CSR. This can be changed by the
* application by using the est_client_set_sign_digest()
* function.
*/
ctx->signing_digest = EVP_sha256();
ctx->retry_after_delay = 0;
ctx->retry_after_date = 0;
ctx->est_client_initialized = 1;
return (ctx);
}
/*! @brief est_client_set_server() is called by the application layer to
specify the address/port of the EST server. It must be called after
est_client_init() and prior to issuing any EST commands.
@param ctx Pointer to EST context for a client session
@param server Name of the EST server to connect to. The ASCII string
representing the name of the server is limited to 254 characters
@param port TCP port on the EST server to connect
@param path_segment A string containing the optional path segment
to be added to the URI. If not used, set to NULL.
@return EST_ERROR
EST_ERR_NONE - Success.
EST_ERR_NO_CTX - NULL value passed for EST context
EST_ERR_INVALID_SERVER_NAME - NULL value passed for EST server name, or
server name string too long
EST_ERR_CLIENT_NOT_INITIALIZED - Called before est_client_init()
EST_ERR_INVALID_PORT_NUM - Invalid port number input, less than zero or
greater than 65535
est_client_set_server error checks its input parameters and then stores
both the hostname and port number into the EST context.
*/
EST_ERROR est_client_set_server (EST_CTX *ctx, const char *server, int port,
char *path_segment)
{
if (!ctx) {
return EST_ERR_NO_CTX;
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (server == NULL) {
return EST_ERR_INVALID_SERVER_NAME;
}
if (port <= 0 || port > 65535) {
return EST_ERR_INVALID_PORT_NUM;
}
if (EST_MAX_SERVERNAME_LEN < strnlen_s(server, EST_MAX_SERVERNAME_LEN+1)) {
EST_LOG_ERR("Invalid server name provided, too long.");
return EST_ERR_INVALID_SERVER_NAME;
}
if (EOK != strcpy_s(ctx->est_server, EST_MAX_SERVERNAME_LEN, server)) {
return EST_ERR_INVALID_SERVER_NAME;
}
ctx->est_port_num = port;
#ifdef HAVE_URIPARSER
{
int path_segment_len;
EST_ERROR rc;
if (path_segment != NULL) {
if (*path_segment == '\0') {
return EST_ERR_HTTP_INVALID_PATH_SEGMENT;
}
/*
* Make sure it's not too long
*/
path_segment_len = strnlen_s(path_segment, EST_MAX_PATH_SEGMENT_LEN+1);
if (path_segment_len > EST_MAX_PATH_SEGMENT_LEN) {
return EST_ERR_HTTP_INVALID_PATH_SEGMENT;
}
/*
* Validate the incoming path segment string
*/
rc = est_parse_path_seg(path_segment);
if (rc != EST_ERR_NONE) {
EST_LOG_ERR("path segment failed validation.");
return (rc);
}
/*
* valid. store it away in the context
*/
rc = est_store_path_segment(ctx, path_segment, path_segment_len);
if (rc != EST_ERR_NONE) {
EST_LOG_ERR("Failed to store URI path segment.");
return (rc);
}
}
}
#else
{
/*
* If no uriparser support, then we cannot support
* a path segment being passed in
*/
if (path_segment) {
EST_LOG_ERR("Use of path segments not supported in this build of libEST.");
return EST_ERR_HTTP_PATH_SEGMENT_NOT_SUPPORTED;
}
}
#endif
return EST_ERR_NONE;
}
/*! @brief est_client_set_proxy() is called by the application layer to
specify the proxy to the EST server. It must be called after
est_client_init() and prior to issuing any EST commands.
@param ctx Pointer to EST context for a client session
@param proxy_proto Proxy protocol
@param proxy_server Name of the proxy server to connect to. The ASCII string
representing the name of the server is limited to 254 characters (EST_MAX_SERVERNAME_LEN)
@param port TCP port on the proxy server to connect
@param proxy_auth Proxy authentication method
@param username Username to use to authenticate with the proxy
@param password Password to use to authenticate with the proxy
@return EST_ERROR
EST_ERR_NONE - Success.
EST_ERR_NO_CTX - NULL value passed for EST context
EST_ERR_INVALID_SERVER_NAME - NULL value passed for EST server name, or
server name string too long
EST_ERR_INVALID_PORT_NUM - port num to proxy server is invalid
EST_ERR_CLIENT_NOT_INITIALIZED - Called before est_client_init()
EST_ERR_INVALID_PARAMETERS - NULL value passed for either username or password
OR username or password is too long
EST_ERR_CLIENT_PROXY_MODE_NOT_SUPPORTED - client proxy mode is only supported when
built with libcurl support
EST_ERR_INVALID_CLIENT_PROXY_PROTOCOL - An invalid proxy protocol has been specified
est_client_set_proxy error checks its input parameters and then stores
the proxy information into the EST context.
NOTE: HTTP proxy tunnelling is not supported by libEST in server mode.
If configuring libEST in client mode to communicate with libEST in
server mode, then EST_CLIENT_PROXY_HTTP_NOTUNNEL must be specified
for the proxy protocol.
*/
EST_ERROR est_client_set_proxy (EST_CTX *ctx, EST_CLIENT_PROXY_PROTO proxy_proto,
const char *proxy_server, unsigned short int proxy_port,
unsigned int proxy_auth, const char *username,
const char *password)
{
#ifdef HAVE_LIBCURL
if (!ctx) {
return EST_ERR_NO_CTX;
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (proxy_server == NULL || proxy_server[0] == '\0') {
return EST_ERR_INVALID_SERVER_NAME;
}
if (EST_MAX_SERVERNAME_LEN < strnlen_s(proxy_server, EST_MAX_SERVERNAME_LEN+2)) {
return EST_ERR_INVALID_SERVER_NAME;
}
ctx->proxy_server[0] = '\0';
if (EOK != strcpy_s(ctx->proxy_server, sizeof(ctx->proxy_server), proxy_server)) {
return EST_ERR_INVALID_SERVER_NAME;
}
if (proxy_port <= 0 || proxy_port > 65535) {
return EST_ERR_INVALID_PORT_NUM;
}
ctx->proxy_port = proxy_port;
if (proxy_proto < EST_CLIENT_PROXY_HTTP_NOTUNNEL ||
proxy_proto > EST_CLIENT_PROXY_SOCKS5_HOSTNAME) {
return EST_ERR_INVALID_CLIENT_PROXY_PROTOCOL;
}
ctx->proxy_proto = proxy_proto;
if (proxy_auth != EST_CLIENT_PROXY_AUTH_NONE &&
(0 != (proxy_auth & ~(EST_CLIENT_PROXY_AUTH_BASIC|EST_CLIENT_PROXY_AUTH_NTLM)))) {
return EST_ERR_INVALID_CLIENT_PROXY_AUTH;
}
ctx->proxy_auth = proxy_auth;
if (username && password && proxy_auth != EST_CLIENT_PROXY_AUTH_NONE) {
if (MAX_UIDPWD < strnlen_s(username, MAX_UIDPWD+2)) {
return EST_ERR_INVALID_PARAMETERS;
}
if (username[0] == '\0') {
return EST_ERR_INVALID_PARAMETERS;
}
ctx->proxy_username[0] = '\0';
if (EOK != strcpy_s(ctx->proxy_username, sizeof(ctx->proxy_username), username)) {
return EST_ERR_INVALID_PARAMETERS;
}
if (MAX_UIDPWD < strnlen_s(password, MAX_UIDPWD+2)) {
return EST_ERR_INVALID_PARAMETERS;
}
if (password[0] == '\0') {
return EST_ERR_INVALID_PARAMETERS;
}
ctx->proxy_password[0] = '\0';
if (EOK != strcpy_s(ctx->proxy_password, sizeof(ctx->proxy_password), password)) {
return EST_ERR_INVALID_PARAMETERS;
}
ctx->proxy_auth = proxy_auth;
}
ctx->use_proxy = 1;
return EST_ERR_NONE;
#else
/*
* If the EST library was not built with support for libcurl then client
* proxy mode is not supported.
*/
EST_LOG_ERR("Client proxy mode requires libest to be built with libcurl.");
return EST_ERR_CLIENT_PROXY_MODE_NOT_SUPPORTED;
#endif
}
/*! @brief est_client_set_sign_digest() is called by the application layer to
specify the hash algorithm used to sign the PKCS10 CSR during the
enroll operation. It must be called after
est_client_init() and prior to issuing any EST commands.
@param ctx Pointer to EST context for a client session
@param nid This is the NID value defined in the OpenSSL header file obj_mac.h
for the desired digest to use for signing.
@return EST_ERROR
EST_ERR_NONE - Success.
EST_ERR_NO_CTX - NULL value passed for EST context
EST_ERR_INVALID_DIGEST - An unsupported NID was provided.
libEST supports SHA1, SHA224, SHA256, SHA384, and SHA512 digests.
SHA256 is the default digest to use for signing. There's no need
to invoke this function unless another digest is desired. The
supported NID values are:
NID_sha1
NID_sha224
NID_sha256
NID_sha384
NID_sha512
*/
EST_ERROR est_client_set_sign_digest (EST_CTX *ctx, int nid)
{
if (!ctx) {
return EST_ERR_NO_CTX;
}
switch (nid) {
case NID_sha512:
ctx->signing_digest = EVP_sha512();
break;
case NID_sha384:
ctx->signing_digest = EVP_sha384();
break;
case NID_sha256:
ctx->signing_digest = EVP_sha256();
break;
case NID_sha224:
ctx->signing_digest = EVP_sha224();
break;
case NID_sha1:
ctx->signing_digest = EVP_sha1();
break;
default:
return (EST_ERR_INVALID_DIGEST);
break;
}
return (EST_ERR_NONE);
}
/*! @brief est_client_copy_retry_after() copies the retry after value stored
in this client context.
@param ctx Pointer to the current EST context.
@param retry_delay Pointer to the integer where the retry-after delay secs
value is copied. If the server sent a retry-after in delay seconds format
then it will be passed here. If it did not, then this value will be zero.
@param retry_time Pointer to the time_t where the retry-after time date
value is copied. If the server sent a retry-after in time and date string
format then this string is converted into a time_t value and passed up
in this parameter. This value will only be set if the server sent a time
and date string response, otherwise, this value is set to zero.
@return EST_ERROR
When a response is received from the EST server the headers are checked to
see if the server has included a Retry-After header, indicating that this
request currently cannot be processed. If a Retry-After HTTP header is
included in the received response from the server the delay value is saved
in the context and an EST error code is given to the application on this
request indicating that the client must retry the request at a later time.
The value specified by the server can be in one of two basic formats, a
string version of a integer value that represents the number of seconds
the client must wait before retrying the request, and a string containing
a date and time when the client can retry the request. The date and time
string can be in any format specified in RFC 2616. If the second delay
value is sent it is converted into an integer and saved in the EST context
and if the date time string value is sent it is converted into a time_t
value and saved into the EST context. The application must then call
est_client_copy_retry_after() to obtain the amount of time to wait before
retrying the request. est_client_copy_retry_after() copies the current
retry-after value from the client context and returns it to the
application. Only one of the two return values will be set with a
non-zero value.
NOTE: The processing of a Retry-After value in time/date format is currently
not supported. The EST Client will always return only a retry delay
value in seconds.
*/
EST_ERROR est_client_copy_retry_after (EST_CTX *ctx, int *retry_delay,
time_t *retry_time)
{
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
*retry_delay = ctx->retry_after_delay;
ctx->retry_after_delay = 0;
*retry_time = ctx->retry_after_date;
ctx->retry_after_date = 0;
return (EST_ERR_NONE);
}
/*! @brief est_client_force_pop() is used by an application to enable
the proof-of-possession generation at the EST client. This proves
that the EST client that sent the CSR to the server/proxy is in possession
of the private key that was used to sign the CSR. This binds the TLS
session ID to the CSR.
Note, if the CSR attributes configured on the server require PoP
checking, then there is no need to call this function to enable
PoP. The PoP will be enabled automatically under this scenario
when the CSR attributes are requested from the server/proxy.
@param ctx Pointer to the EST context
This function may be called at any time.
@return EST_ERROR.
*/
EST_ERROR est_client_force_pop (EST_CTX *ctx)
{
if (!ctx) {
EST_LOG_ERR("Null context");
return (EST_ERR_NO_CTX);
}
ctx->client_force_pop = 1;
return (EST_ERR_NONE);
}
/*! @brief est_client_unforce_pop() is used by an application to disable
the proof-of-possession generation at the EST client. Please see
the documentation for est_client_force_pop() for more information
on the proof-of-possession check.
@param ctx Pointer to the EST context
This function may be called at any time.
@return EST_ERROR.
*/
EST_ERROR est_client_unforce_pop (EST_CTX *ctx)
{
if (!ctx) {
EST_LOG_ERR("Null context");
return (EST_ERR_NO_CTX);
}
ctx->client_force_pop = 0;
return (EST_ERR_NONE);
}
/*! @brief est_client_set_read_timeout() is used by an application to set
timeout value of read operations. After the EST client sends a request to
the EST server it will attempt to read the response from the server. This
timeout value limits the amount of time the client will wait for the
response.
@param ctx Pointer to the EST context
@param timeout Integer value representing the read timeout in seconds.
The minimum value is EST_SSL_READ_TIMEOUT_MIN and the maximum value is
EST_SSL_READ_TIMEOUT_MAX.
@return EST_ERROR.
*/
EST_ERROR est_client_set_read_timeout (EST_CTX *ctx, int timeout)
{
if (!ctx) {
EST_LOG_ERR("Null context");
return (EST_ERR_NO_CTX);
}
if (timeout < EST_SSL_READ_TIMEOUT_MIN ||
timeout > EST_SSL_READ_TIMEOUT_MAX) {
EST_LOG_ERR("Invalid read timeout value passed: %d ", timeout);
return (EST_ERR_INVALID_PARAMETERS);
}
ctx->read_timeout = timeout;
return (EST_ERR_NONE);
}
/*! @brief est_client_get_last_http_status() is used by an application to get
the HTTP status code returned by the EST server for the most recent
operation.
@param ctx Pointer to the EST context
This can be called after an EST operation, such as an enroll operation.
This function will return the most recent HTTP status code received
from the EST server. Normally, a status of 200 would be returned
by the EST server to indicate a successful operation. However, if the
operation failed for some reason, the HTTP status code may be useful
to understand the reason for failure. For instance, the EST server
would return a HTTP status of 401 if the EST client was not authorized.
Please see RFC 2616 for a description of the various HTTP status codes.
@return int value representing the HTTP status code, or NULL if the
a NULL EST context was provided.
*/
int est_client_get_last_http_status (EST_CTX *ctx)
{
if (ctx) {
return ctx->last_http_status;
} else {
return 0;
}
}
#if ENABLE_BRSKI
/*! @brief est_client_set_brski_mode() is called by the application layer to
configure and enable BRSKI mode. It must be called after est_client_init()
and prior to issuing any of the other BRSKI specific calls.
@param ctx Pointer to EST context for a client session
@return EST_ERROR_NONE on success, or EST based error
est_client_set_brski_mode error checks its input parameters and sets the
BRSKI mode flag in the EST context.
*/
EST_ERROR est_client_set_brski_mode (EST_CTX *ctx)
{
/*
* error check inputs
*/
if (!ctx) {
return EST_ERR_NO_CTX;
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (ctx->brski_mode == BRSKI_ENABLED) {
EST_LOG_ERR("BRSKI mode already enabled");
return EST_ERR_INVALID_PARAMETERS;
}
/*
* Enable BRSKI mode
*/
ctx->brski_mode = BRSKI_ENABLED;
/*
* Make sure we're NOT verifying the server. Server cert is verified on
* the back end of the voucher request once we get the CA Cert (root cert)
* for this PKI domain in the voucher from the MASA.
*/
SSL_CTX_set_verify(ctx->ssl_ctx,
~SSL_VERIFY_PEER|~SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
NULL);
return EST_ERR_NONE;
}
/*
* This function is used to build the HTTP header for
* the BRSKI voucher request flow.
*
* Parameters:
* ctx: EST context
* hdr: pointer to the buffer to hold the header
* sign_voucher: Flag indicating whether or not the voucher request
* is signed
* req_buf_len length of the voucher req buffer that is ready for
* transmission
*/
static int est_client_brski_build_voucherreq_header (EST_CTX *ctx, char *hdr,
int sign_voucher, int req_buf_len)
{
int hdr_len;
snprintf(hdr, EST_HTTP_REQ_TOTAL_LEN, "POST %s%s%s/%s HTTP/1.0\r\n"
"User-Agent: %s\r\n"
"Connection: close\r\n"
"Host: %s:%d\r\n"
"Accept: */*\r\n"
"Content-Type: %s\r\n"
"Content-Length: %d\r\n",
EST_PATH_PREFIX,
(ctx->uri_path_segment?"/":""),
(ctx->uri_path_segment?ctx->uri_path_segment:""),
EST_BRSKI_GET_VOUCHER,
EST_HTTP_HDR_EST_CLIENT,
ctx->est_server, ctx->est_port_num,
sign_voucher?EST_BRSKI_CT_VREQ_SIGNED:EST_BRSKI_CT_VREQ,
req_buf_len);
est_client_add_auth_hdr(ctx, hdr, EST_BRSKI_GET_VOUCHER_URI);
hdr_len = (int) strnlen_s(hdr, EST_HTTP_REQ_TOTAL_LEN);
if (hdr_len == EST_HTTP_REQ_TOTAL_LEN) {
EST_LOG_WARN("BRSKI voucher request header took up the maximum amount in buffer (%d)",
EST_HTTP_REQ_TOTAL_LEN);
}
return (hdr_len);
}
/*
* This function performs the work for the BRSKI get voucher request flow.
* It builds the necessary headers, includes the voucher request as payload,
* writes the message on the TLS connection, retrieves the response from the
* server, and stores the voucher in the context.
*
*
* Parameters:
* ctx: EST context
* ssl: SSL context
* sign_voucher: indicate whether voucher has been signed. This controls
* the HTTP media type.
* req_buf: pointer to buffer containing the JSON based voucher request
* req_len: voucher request buffer len
*/
static int est_client_brski_send_voucher_request (EST_CTX *ctx, SSL *ssl,
int sign_voucher,
char *req_buf, int req_buf_len)
{
char *http_data;
int hdr_len;
int write_size;
int rv;
unsigned char *voucher_buf = NULL;
int voucher_buf_len = 0;
errno_t safec_rc;
/*
* Build the HTTP request
* - allocate buffer: header, voucher req, terminating characters
* - build the header
* - data - voucher request
* - terminate it
*/
http_data = malloc(EST_HTTP_REQ_TOTAL_LEN);
if (http_data == NULL) {
EST_LOG_ERR("Unable to allocate memory for http_data");
return EST_ERR_MALLOC;
}
/*
* build the HTTP headers
*/
hdr_len = est_client_brski_build_voucherreq_header(ctx, http_data,
sign_voucher,
req_buf_len);
/*
* terminate the HTTP header
*/
snprintf(http_data + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len,"\r\n");
hdr_len += 2;
/*
* Build the HTTP body containing the voucher request
*/
safec_rc = memcpy_s(http_data + hdr_len, EST_HTTP_REQ_DATA_MAX,
req_buf, req_buf_len);
if (safec_rc != EOK) {
EST_LOG_ERR("memcpy_s failed with 0x%xO", safec_rc);
free(http_data);
return (EST_ERR_SYSCALL);
}
hdr_len += req_buf_len;
/*
* terminate the HTTP request
*/
snprintf(http_data + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len,"\r\n");
hdr_len += 2;
/*
* Send the request to the server and wait for a response
*/
ctx->last_http_status = 0;
write_size = SSL_write(ssl, http_data, hdr_len);
if (write_size < 0) {
EST_LOG_ERR("TLS write error");
free(http_data);
http_data = NULL;
ossl_dump_ssl_errors();
rv = EST_ERR_SSL_WRITE;
} else {
EST_LOG_INFO("TLS wrote %d bytes, attempted %d bytes\n",
write_size, hdr_len);
/*
* Try to get the response from the server
*/
rv = est_io_get_response(ctx, ssl, EST_OP_BRSKI_REQ_VOUCHER,
&voucher_buf, &voucher_buf_len);
switch (rv) {
case EST_ERR_NONE:
/*
* Make sure that even though we got a success return code, that we
* actually received something
*/
if (voucher_buf_len == 0) {
EST_LOG_ERR("Retrieved voucher buf is zero bytes in length");
rv = EST_ERR_ZERO_LENGTH_BUF;
break;
}
if (voucher_buf_len+1 > EST_CA_MAX) {
EST_LOG_ERR("Retrieved voucher buf is larger than maximum allowed");
rv = EST_ERR_BUF_EXCEEDS_MAX_LEN;
break;
}
/*
* Resize the buffer holding the retrieved voucher and link it
* into the ctx. Get rid of the http hdr and any extra space on
* the back. If for some reason there is one already linked
* to the context, get rid of it to make room for this new one.
*/
if (ctx->brski_retrieved_voucher != NULL){
free(ctx->brski_retrieved_voucher);
}
ctx->brski_retrieved_voucher = malloc(voucher_buf_len+1);
if (ctx->brski_retrieved_voucher == NULL) {
EST_LOG_ERR("Unable to allocate voucher buffer");
rv = EST_ERR_MALLOC;
break;
}
ctx->brski_retrieved_voucher[voucher_buf_len] = '\0';
memcpy_s(ctx->brski_retrieved_voucher, voucher_buf_len+1, voucher_buf,
voucher_buf_len);
ctx->brski_retrieved_voucher_len = voucher_buf_len;
EST_LOG_INFO("BRSKI Voucher buf: %s", ctx->brski_retrieved_voucher);
EST_LOG_INFO("BRSKI Voucher length: %d", ctx->brski_retrieved_voucher_len);
break;
case EST_ERR_AUTH_FAIL:
EST_LOG_ERR("HTTP auth failure");
break;
case EST_ERR_CA_ENROLL_RETRY:
EST_LOG_INFO("HTTP request failed with a RETRY AFTER resp");
break;
default:
EST_LOG_ERR("EST request failed: %d (%s)", rv, EST_ERR_NUM_TO_STR(rv));
break;
}
}
if (http_data) {
free(http_data);
}
if (voucher_buf) {
free(voucher_buf);
}
return (rv);
}
/*
* This function verifies the voucher received from a voucher request. The
* voucher is received as PKCS7 signed structure in DER format. The voucher
* is obtained from the EST context where it has already been linked.
*
* Parameters:
* ctx: EST context
*/
static
EST_ERROR verify_voucher (EST_CTX *ctx)
{
#ifdef BASE64_ENCODE_VOUCHERS
unsigned char *voucher_der = NULL;
int voucher_der_len;
#endif
PKCS7 *pkcs7;
X509_STORE *current_trust_store = NULL;
int cssl_rc;
EST_ERROR rv;
#ifdef BASE64_ENCODE_VOUCHERS
voucher_der = calloc(ctx->brski_retrieved_voucher_len, sizeof(char));
if (!voucher_der) {
return (EST_ERR_MALLOC);
}
voucher_der_len = est_base64_decode((const char *)ctx->brski_retrieved_voucher,
(char *)voucher_der,
ctx->brski_retrieved_voucher_len);
if (voucher_der_len <= 0) {
EST_LOG_ERR("Invalid base64 encoded data");
free(voucher_der);
return (EST_ERR_BAD_BASE64);
}
rv = create_PKCS7(voucher_der, voucher_der_len, &pkcs7);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Failed to build PKCS7 structure from received buffer");
free(voucher_der);
return (rv);
}
free(voucher_der);
#else
rv = create_PKCS7(ctx->brski_retrieved_voucher,
ctx->brski_retrieved_voucher_len, &pkcs7);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Failed to build PKCS7 structure from received buffer");
return (rv);
}
#endif
/*
* Retrieve the trust store from the context
*/
current_trust_store = SSL_CTX_get_cert_store(ctx->ssl_ctx);
if (current_trust_store == NULL) {
EST_LOG_ERR("Failed to obtain trust store from context");
return (EST_ERR_LOAD_TRUST_CERTS);
}
cssl_rc = PKCS7_verify(pkcs7, NULL, current_trust_store, NULL, NULL, 0);
if (cssl_rc == 0) {
EST_LOG_ERR("Failed to verify received voucher");
return (EST_ERR_CLIENT_BRSKI_VOUCHER_VERIFY_FAILED);
}
ctx->brski_retrieved_voucher = pkcs7->d.sign->contents->d.data->data;
ctx->brski_retrieved_voucher_len = pkcs7->d.sign->contents->d.data->length;
EST_LOG_INFO("Voucher verify passed. Voucher =\n %s",
pkcs7->d.sign->contents->d.data->data);
return (EST_ERR_NONE);
}
/*
* Utility function to determine if a JSON token equals a specific value.
*/
static int jsoneq(const char *json, jsmntok_t *tok, const char *s) {
if (tok->type == JSMN_STRING && (int) strlen(s) == tok->end - tok->start &&
strncmp(json + tok->start, s, tok->end - tok->start) == 0) {
return 0;
}
return -1;
}
static int retrieve_token_from_voucher (unsigned char *voucher,
unsigned char *token_value,
int max_token_value_size,
int parser_resp,
jsmntok_t *tok,
char *token)
{
int i;
int token_found = 0;
for (i = 1; i < parser_resp; i++) {
if (jsoneq((const char *)voucher, &tok[i], token) == 0) {
token_found = 1;
if (tok[i+1].type == JSMN_UNDEFINED) {
EST_LOG_ERR("token \"%s\" is last in JSON with no assigned value\n", token);
*token_value = '\0';
break;
}
snprintf((char *)token_value, max_token_value_size, "%.*s",
tok[i+1].end-tok[i+1].start, voucher+tok[i+1].start);
EST_LOG_INFO("Found token %s = %s\n", token, token_value);
break;
}
}
return (token_found);
}
/*
* parse up the voucher, check the nonce to make sure it matches,
* extract and return the cacert
*/
static EST_ERROR brski_parse_voucher (EST_CTX *ctx, char *sent_nonce,
unsigned char *returned_cacert,
int *cacert_len)
{
jsmn_parser p;
jsmntok_t *tok;
size_t tokcount = 100; /* PDB: Need to determine a final value for this */
int parser_resp;
int cacert_found = 0;
int nonce_found = 0;
int ser_num_found = 0;
unsigned char returned_nonce[EST_BRSKI_VOUCHER_REQ_NONCE_SIZE+2];
unsigned char returned_ser_num[EST_BRSKI_MAX_SER_NUM_LEN+2];
int returned_nonce_len;
int returned_ser_num_len;
int diff;
errno_t safec_rc;
EST_ERROR rv;
*cacert_len = 0;
/*
* BRSKI states that the voucher is to be in a CMS signed-data
* content type. Verify the signature of this before parsing begins.
*/
rv = verify_voucher(ctx);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Failed to verify signature of received voucher");
return (rv);
}
/*
* Parse the returned voucher.
*/
jsmn_init(&p);
tok = calloc(tokcount, sizeof(*tok));
if (tok == NULL) {
EST_LOG_ERR("calloc(): errno=%d\n", errno);
return (EST_ERR_MALLOC);
}
parser_resp = jsmn_parse(&p, (char *)ctx->brski_retrieved_voucher,
(size_t)ctx->brski_retrieved_voucher_len,
tok, tokcount);
if (parser_resp < 0) {
EST_LOG_ERR("Voucher parse failed. Parse error = %d ", parser_resp);
free(tok);
return (EST_ERR_MALLOC);
} else {
EST_LOG_INFO("Voucher parsed\n");
}
/*
* Verify the nonce if it exists
*/
nonce_found = retrieve_token_from_voucher(ctx->brski_retrieved_voucher,
returned_nonce,
EST_BRSKI_VOUCHER_REQ_NONCE_SIZE+2,
parser_resp, tok, "nonce");
if (!nonce_found) {
EST_LOG_WARN("Nonce missing from voucher\n");
} else {
/*
* Make sure returned nonce is not larger than maximum supported size
*/
returned_nonce_len = strnlen_s((char *)returned_nonce,
EST_BRSKI_VOUCHER_REQ_NONCE_SIZE+1);
if (returned_nonce_len > EST_BRSKI_VOUCHER_REQ_NONCE_SIZE) {
EST_LOG_ERR("Nonce in voucher larger than maximum length");
free(tok);
return (EST_ERR_CLIENT_BRSKI_NONCE_TOO_LARGE);
}
/*
* Check that the returned nonce matches what we sent. If it does
* then proceed with the parsing, else return an error.
*/
safec_rc = memcmp_s(sent_nonce, EST_BRSKI_VOUCHER_REQ_NONCE_SIZE,
returned_nonce ,EST_BRSKI_VOUCHER_REQ_NONCE_SIZE,
&diff);
if (safec_rc != EOK) {
EST_LOG_ERR("memcmp_s error 0x%xO\n", safec_rc);
free(tok);
return (EST_ERR_SYSCALL);
}
if (diff) {
EST_LOG_ERR("Nonce in voucher did not match nonce in request");
free(tok);
return (EST_ERR_CLIENT_BRSKI_NONCE_MISMATCH);
}
}
/*
* In case the nonce is missing, check the serial number to prove that this
* voucher is really for us
*/
ser_num_found = retrieve_token_from_voucher(ctx->brski_retrieved_voucher,
returned_ser_num,
EST_BRSKI_MAX_SER_NUM_LEN+2,
parser_resp, tok, "serial-number");
if (!ser_num_found) {
EST_LOG_ERR("Serial Number missing from voucher\n");
free(tok);
return (EST_ERR_CLIENT_BRSKI_SERIAL_NUM_MISSING);
} else {
/*
* Make sure returned serial number is not larger than maximum supported size
*/
returned_ser_num_len = strnlen_s((char *)returned_ser_num,
EST_BRSKI_MAX_SER_NUM_LEN+1);
if (returned_ser_num_len > EST_BRSKI_MAX_SER_NUM_LEN) {
EST_LOG_ERR("Serial Number in voucher larger than maximum supported size");
free(tok);
return (EST_ERR_CLIENT_BRSKI_SERIAL_NUM_TOO_LARGE);
}
/*
* Check that the returned serial number matches what we sent. If it does
* then save away the CA certs
*/
safec_rc = memcmp_s(ctx->client_cert_ser_num, returned_ser_num_len+1,
returned_ser_num, returned_ser_num_len+1,
&diff);
if (safec_rc != EOK) {
EST_LOG_ERR("memcmp_s error 0x%xO\n", safec_rc);
free(tok);
return (EST_ERR_SYSCALL);
}
if (diff) {
EST_LOG_ERR("Serial Number in voucher does not match serial number in client certificate");
free(tok);
return (EST_ERR_CLIENT_BRSKI_SERIAL_NUM_MISMATCH);
}
}
/*
* Attempt to get the ca_cert from the voucher, store it in the ctx
*/
cacert_found = retrieve_token_from_voucher(ctx->brski_retrieved_voucher,
returned_cacert,
EST_BRSKI_MAX_CACERT_LEN+1,
parser_resp, tok, "pinned-domain-cert");
if (!cacert_found) {
EST_LOG_ERR("CA certs missing from voucher");
free(tok);
return (EST_ERR_NO_CERT);
}
if (ctx->brski_retrieved_cacert != NULL){
free(ctx->brski_retrieved_cacert);
}
ctx->brski_retrieved_cacert_len = strnlen_s((const char *)returned_cacert,
EST_BRSKI_MAX_CACERT_LEN);
ctx->brski_retrieved_cacert = malloc(ctx->brski_retrieved_cacert_len+1);
if (ctx->brski_retrieved_cacert == NULL) {
EST_LOG_ERR("Unable to allocate cacert buffer");
free(tok);
return (EST_ERR_MALLOC);
}
ctx->brski_retrieved_cacert[ctx->brski_retrieved_cacert_len] = '\0';
safec_rc = memcpy_s(ctx->brski_retrieved_cacert, ctx->brski_retrieved_cacert_len+1,
returned_cacert, ctx->brski_retrieved_cacert_len);
if (safec_rc != EOK) {
EST_LOG_ERR("memcpy_s failed with 0x%xO", safec_rc);
free(ctx->brski_retrieved_cacert);
ctx->brski_retrieved_cacert = NULL;
ctx->brski_retrieved_cacert_len = 0;
free(tok);
return (EST_ERR_SYSCALL);
}
/*
* Verify the returned CA cert that was in the voucher
*/
rv = verify_cacert_resp(ctx, ctx->brski_retrieved_cacert,
&ctx->brski_retrieved_cacert_len);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Returned CA Cert in voucher was invalid. rv = %s",
EST_ERR_NUM_TO_STR(rv));
free(ctx->brski_retrieved_cacert);
ctx->brski_retrieved_cacert = NULL;
ctx->brski_retrieved_cacert_len = 0;
free(tok);
return (rv);
}
EST_LOG_INFO("BRSKI Voucher cacert : %s", ctx->brski_retrieved_cacert);
EST_LOG_INFO("BRSKI Voucher cacert length: %d", ctx->brski_retrieved_cacert_len);
free(tok);
return (EST_ERR_NONE);
}
/*
* Utility function to take a list of certs in a BIO and
* convert it to a stack of X509 records.
*/
static int ossl_add_certs_from_BIO (STACK_OF(X509) *stack, BIO *in)
{
int count=0;
int ret= -1;
STACK_OF(X509_INFO) *sk=NULL;
X509_INFO *xi;
/* This loads from a file, a stack of x509/crl/pkey sets */
sk=PEM_X509_INFO_read_bio(in,NULL,NULL,NULL);
if (sk == NULL) {
EST_LOG_ERR("EST Client: error reading certs from BIO");
goto end;
}
/* scan over it and pull out the CRL's */
while (sk_X509_INFO_num(sk)) {
xi=sk_X509_INFO_shift(sk);
if (xi->x509 != NULL) {
sk_X509_push(stack,xi->x509);
xi->x509=NULL;
count++;
}
X509_INFO_free(xi);
}
ret=count;
end:
/* never need to OPENSSL_free x */
if (in != NULL) BIO_free(in);
if (sk != NULL) sk_X509_INFO_free(sk);
return(ret);
}
/*
* This utility function takes a list of certificate that hav been written
* to a BIO, reads the BIO, and converts it to a pkcs7 certificate.
* The input form is PEM encoded X509 certificates in a BIO.
* The pkcs7 data is then written to a new BIO and returned to the
* caller.
*/
static BIO * ossl_get_certs_pkcs7(BIO *in)
{
STACK_OF(X509) *cert_stack=NULL;
PKCS7_SIGNED *p7s = NULL;
PKCS7 *p7 = NULL;
BIO *out = NULL;
BIO *b64;
int rv = 0;
if ((p7=PKCS7_new()) == NULL) {
EST_LOG_ERR("EST Client: pkcs7_new failed");
goto end;
}
if ((p7s=PKCS7_SIGNED_new()) == NULL) {
EST_LOG_ERR("EST Client: pkcs7_signed_new failed");
goto end;
}
p7->type=OBJ_nid2obj(NID_pkcs7_signed);
p7->d.sign=p7s;
p7s->contents->type=OBJ_nid2obj(NID_pkcs7_data);
if (!ASN1_INTEGER_set(p7s->version,1)) {
EST_LOG_ERR("EST Client: ASN1_integer_set failed");
goto end;
}
if ((cert_stack=sk_X509_new_null()) == NULL) {
EST_LOG_ERR("EST Client: X509 stack malloc failed");
goto end;
}
p7s->cert=cert_stack;
if (ossl_add_certs_from_BIO(cert_stack, in) < 0) {
EST_LOG_ERR("EST Client: error loading certificates");
ossl_dump_ssl_errors();
goto end;
}
/* Output BASE64 encoded ASN.1 (DER) PKCS7 cert */
b64 = BIO_new(BIO_f_base64());
if (!b64) {
EST_LOG_ERR("EST Client: BIO_new failed");
goto end;
}
out = BIO_new(BIO_s_mem());
if (!out) {
BIO_free_all(b64);
b64 = NULL;
EST_LOG_ERR("EST Client: BIO_new failed");
goto end;
}
out = BIO_push(b64, out);
rv = i2d_PKCS7_bio(out, p7);
(void)BIO_flush(out);
if (!rv) {
EST_LOG_ERR("EST Client: error in PEM_write_bio_PKCS7");
ossl_dump_ssl_errors();
BIO_free_all(out);
out = NULL;
goto end;
}
end:
if (p7) PKCS7_free(p7);
return out;
}
/*
* Call into OpenSSL to obtain the server's ID certificate. It comes
* from OpenSSL as a X509 structure and need to get it into PKCS7 and
* base64 encoded. Return this in in achar string.
*/
EST_ERROR est_brski_get_server_cert (char *server_cert, SSL *ssl)
{
X509 *server_cert_x509;
char *server_cert_p7_b64 = NULL;
int server_cert_p7_b64_len = 0;
BIO *p7out;
BIO *server_cert_pem = NULL;
/*
* Obtain the registrar's certificate to use as the pinned-domain-cert and
* convert it to PKCS7 and base64 encode it.
*/
server_cert_x509 = SSL_get_peer_certificate(ssl);
if (server_cert_x509 == NULL) {
EST_LOG_ERR("No server certificate provided by server");
return (EST_ERR_LOAD_CACERTS);
}
server_cert_pem = BIO_new(BIO_s_mem());
if (server_cert_pem == NULL) {
EST_LOG_ERR("BIO_new for server cert failed");
return (EST_ERR_LOAD_CACERTS);
}
PEM_write_bio_X509(server_cert_pem, server_cert_x509);
if (server_cert_pem == NULL) {
EST_LOG_ERR("PEM_write_bio_PKCS7 failed");
return (EST_ERR_LOAD_CACERTS);
}
/*
* Done with the X509 struct.
*/
X509_free(server_cert_x509);
p7out = ossl_get_certs_pkcs7(server_cert_pem);
if (!p7out) {
EST_LOG_ERR("PEM_write_bio_PKCS7 failed");
return (EST_ERR_LOAD_CACERTS);
}
server_cert_p7_b64_len = (int) BIO_get_mem_data(p7out, (char**)&server_cert_p7_b64);
if (server_cert_p7_b64_len <= 0) {
EST_LOG_ERR("Failed to copy PKCS7 data");
BIO_free_all(p7out);
return (EST_ERR_LOAD_CACERTS);
}
memcpy_s(server_cert, EST_BRSKI_MAX_CACERT_LEN, server_cert_p7_b64, server_cert_p7_b64_len);
BIO_free_all(p7out);
return (EST_ERR_NONE);
}
/*
* Take in the pieces needed to build the voucher request and also sign
* it if needed.
*/
static
void est_brski_build_voucher_req (char *voucher_req, int *voucher_req_len,
char *nonce_str, char *time_str, char *assertion,
char *server_cert, int sign_voucher)
{
/*
* create the voucher request
*/
snprintf(voucher_req, EST_BRSKI_MAX_VOUCHER_REQ_LEN, "{\r\n"
"\"ietf-voucher-request:voucher\": {\r\n"
"\"nonce\": \"%s\",\r\n"
"\"created-on\": \"%s\",\r\n"
"\"assertion\": \"%s\",\r\n"
"\"proximity-registrar-cert\": \"%s\"\r\n"
"}}",nonce_str, time_str, assertion, server_cert);
*voucher_req_len = strnlen_s(voucher_req, EST_BRSKI_MAX_VOUCHER_REQ_LEN);
if (sign_voucher) {
/*
* PDB TODO: need to sign the voucher
*
* YANG-defined JSON document that has been signed using a PKCS#7
* structure. Need to get the private key to use. Likely use
* ctx->client_key = private_key;
* this is the key used on the TLS connections so this would be the
* private key of the MFG key pair.
*/
}
}
/* est_client_brski_send_get_voucher() performs a BRSKI voucher request to
the EST server.
ctx Pointer to an EST context.
cacert_len Pointer to an integer to hold the length of the cacert
that is returned in the voucher.
sign_voucher Integer indicating whether or not the voucher request is
to be signed.
@return EST_ERROR_NONE on success, or EST based error
est_client_brski_send_get_voucher() connects to the EST server, builds a BRSKI
request voucher and sends the request. The returned voucher is parsed and
the domain CA cert within the voucher is extracted into a NULL terminated
string buffer and stored in the EST context. The length of the CA cert is
returned to the calling application. The application layer can then call
est_client_brski_copy_cacert() to retrieve the CA certificate.
*/
static EST_ERROR est_client_brski_send_get_voucher (EST_CTX *ctx, int *cacert_len,
int sign_voucher)
{
EST_ERROR rv = EST_ERR_NONE;
SSL *ssl = NULL;
int voucher_req_len;
char voucher_req[EST_BRSKI_MAX_VOUCHER_REQ_LEN+1];
unsigned char nonce[EST_BRSKI_VOUCHER_REQ_NONCE_SIZE/2+1];
char nonce_str[EST_BRSKI_VOUCHER_REQ_NONCE_SIZE+1];
unsigned char returned_cacert[EST_BRSKI_MAX_CACERT_LEN];
time_t epoch_time;
char time_str[26]; /* PDB: Look for standard macro defining the length */
char *assertion = "";
struct tm brkn_down_time;
char *server_cert = NULL;
/*
* Establish the connection. We need the server cert from the handshake
* to insert into the voucher request.
*/
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
/*
* Build the voucher request
* - nonce
* - time stamp
* - proximity assertion
* - server cert
*/
memset(voucher_req, 0, EST_BRSKI_MAX_VOUCHER_REQ_LEN+1);
memset(nonce, 0, EST_BRSKI_VOUCHER_REQ_NONCE_SIZE/2+1);
memset(nonce_str, 0, EST_BRSKI_VOUCHER_REQ_NONCE_SIZE+1);
if (!RAND_bytes(nonce, EST_BRSKI_VOUCHER_REQ_NONCE_SIZE/2)) {
EST_LOG_ERR("Unable to obtain nonce value.");
return EST_ERR_SYSCALL;
}
est_hex_to_str(nonce_str, nonce, EST_BRSKI_VOUCHER_REQ_NONCE_SIZE/2);
epoch_time = time(NULL);
if (epoch_time != -1) {
gmtime_r(&epoch_time, &brkn_down_time);
strftime(time_str, 26, "%Y-%m-%dT%H:%M:%SZ", &brkn_down_time);
} else {
EST_LOG_ERR("Unable to obtain current time when creating voucher request");
return EST_ERR_SYSCALL;
}
/*
* Determine the proximity setting. This must be included if the
* server's ID cert is to be included.
*/
assertion = "proximity";
server_cert = calloc(EST_BRSKI_MAX_CACERT_LEN+1, sizeof(char));
if (server_cert == NULL) {
EST_LOG_ERR("calloc(): errno=%d\n", errno);
return (EST_ERR_MALLOC);
}
rv = est_brski_get_server_cert(server_cert, ssl);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Failed to obtain server's certificate from TLS connection");
free(server_cert);
return (rv);
}
est_brski_build_voucher_req(voucher_req, &voucher_req_len,
nonce_str, time_str, assertion,
server_cert, sign_voucher);
rv = est_client_brski_send_voucher_request(ctx, ssl, sign_voucher,
voucher_req, voucher_req_len);
est_client_disconnect(ctx, &ssl);
/*
* Handle the case where the server is requesting further authentication
*/
if (rv == EST_ERR_AUTH_FAIL &&
(ctx->auth_mode == AUTH_DIGEST ||
ctx->auth_mode == AUTH_BASIC ||
ctx->auth_mode == AUTH_TOKEN)) {
/*
* HTTPS digest mode requires the use of MD5. Make sure we're not
* in FIPS mode and can use MD5
*/
if (ctx->auth_mode == AUTH_DIGEST && (EVP_default_properties_is_fips_enabled(NULL))){
EST_LOG_ERR("HTTP digest auth not allowed while in FIPS mode");
rv = EST_ERR_BAD_MODE;
goto err;
}
/* Try one more time if we're doing Digest auth */
EST_LOG_INFO("HTTP Auth failed, trying again with HTTP Auth credentials");
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Connection failed on second attempt with HTTP Auth credentials");
goto err;
}
/*
* Go get the server cert again since this is new connection and registrar
* may have changed it from the first attempt.
*/
rv = est_brski_get_server_cert(server_cert, ssl);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Failed to obtain server's certificate from TLS connection");
goto err;
}
est_brski_build_voucher_req(voucher_req, &voucher_req_len,
nonce_str, time_str, assertion,
server_cert, sign_voucher);
rv = est_client_brski_send_voucher_request(ctx, ssl, sign_voucher,
voucher_req, voucher_req_len);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Voucher request failed on second attempt with HTTP Auth credentials");
}
est_client_disconnect(ctx, &ssl);
}
/*
* If there was an auth request from the server we've processed it and
* we're now looking at the subsequent voucher, OR, we didn't receive a
* auth request and we're ready to see if we got a valid response on the
* voucher request.
*/
if (rv == EST_ERR_NONE) {
/*
* Parse the voucher and extract the cacert and store it in the ctx
*/
rv = brski_parse_voucher(ctx, nonce_str, &returned_cacert[0], cacert_len);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Unable to parse voucher. rv = %d(%s)", rv, EST_ERR_NUM_TO_STR(rv));
}
}
ctx->auth_mode = AUTH_NONE;
err:
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
if (server_cert) {
free(server_cert);
}
return (rv);
}
/*! @brief est_client_brski_get_voucher() performs a BRSKI voucher request to
the EST server.
@param ctx Pointer to an EST context.
@param cacert_len Pointer to an integer to hold the length of the cacert
that is returned in the voucher.
@param sign_voucher Integer indicating whether or not the voucher request is
to be signed.
@return EST_ERROR_NONE on success, or EST based error
est_client_brski_get_voucher() is the main entry point for sending a
voucher request and handles the higher level processing of sending a BRSKI
request voucher to the registrar, primarily the processing of a retry
response from the registrar.
*/
EST_ERROR est_client_brski_get_voucher (EST_CTX *ctx, int *cacert_len,
int sign_voucher)
{
EST_ERROR rv = EST_ERR_NONE;
int actual_retry_delay = 0;
char *ser_num_str = NULL;
int ser_num_len = 0;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (ctx->brski_mode != BRSKI_ENABLED) {
EST_LOG_ERR("BRSKI mode not enabled or supported");
return EST_ERR_INVALID_PARAMETERS;
}
if (cacert_len == NULL) {
EST_LOG_ERR("cacert_len is NULL");
return EST_ERR_INVALID_PARAMETERS;
}
/*
* It's now time to connect with the Registrar, and this connection
* must use a certificate. If one has not been provided, or the
* one that has been provided does not contain a serialNumber element in
* in the DN, then error out.
*/
if (!ctx->client_cert) {
EST_LOG_ERR("No client MFG cert provided.");
return (EST_ERR_NO_CERT);
}
ser_num_str = est_find_ser_num_in_subj(ctx->client_cert);
if (ser_num_str == NULL) {
char *subj;
EST_LOG_ERR("Client MFG cert does not contain a serial number.");
subj = X509_NAME_oneline(X509_get_subject_name(ctx->client_cert), NULL, 0);
EST_LOG_ERR("Client MFG cert subject: %s", subj);
OPENSSL_free(subj);
return (EST_ERR_CLIENT_BRSKI_SERIAL_NUM_MISSING);
}
ser_num_len = strnlen_s(ser_num_str, EST_BRSKI_MAX_SER_NUM_LEN+1);
if (ser_num_len > EST_BRSKI_MAX_SER_NUM_LEN) {
EST_LOG_ERR("Client MFG cert contains serial number that is too long.");
return (EST_ERR_CLIENT_BRSKI_SERIAL_NUM_TOO_LARGE);
}
if (ctx->client_cert_ser_num) {
free(ctx->client_cert_ser_num);
}
ctx->client_cert_ser_num = calloc(ser_num_len+1, sizeof(char));
if (ctx->client_cert_ser_num == NULL) {
EST_LOG_ERR("calloc(): errno=%d\n", errno);
return (EST_ERR_MALLOC);
}
memcpy_s(ctx->client_cert_ser_num, ser_num_len,
ser_num_str, ser_num_len);
/*
* Unlike an EST enroll, the processing of a retry-after response on a
* BRSKI voucher request needs to be handled by the library to ensure it
* meets the requirements of the standard. The BRSKI spec states that the
* pledge must limit the retry time to no more than 60 seconds and to
* allow only one retry attempt to help prevent a DoS attack from a
* malicious Registrar.
*
* Perform the first attempt at sending the voucher request
*/
rv = est_client_brski_send_get_voucher(ctx, cacert_len, sign_voucher);
/*
* If it resulted in a retry-after response, wait the appropriate amount
* of time and try again.
*/
if (rv == EST_ERR_CA_ENROLL_RETRY) {
if (ctx->retry_after_delay > EST_BRSKI_CLIENT_RETRY_MAX) {
EST_LOG_WARN("Retry attempt. Registrar indicated a delay greater than 60 seconds."
" Overriding to 60 seconds");
actual_retry_delay = EST_BRSKI_CLIENT_RETRY_MAX;
} else {
actual_retry_delay = ctx->retry_after_delay;
}
EST_LOG_INFO("Retry attempt. Delaying for %d seconds", actual_retry_delay);
SLEEP(actual_retry_delay);
/* Try one more time now that we've waited the retry time delay */
EST_LOG_INFO("Attempting retry after a retry-after delay.");
rv = est_client_brski_send_get_voucher(ctx, cacert_len, sign_voucher);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Voucher request failed on attempt after retry timeout delay");
}
}
return (rv);
}
/*! @brief est_client_brski_copy_cacert() copies the previously retrieved
BRSKI based cacert to the application's buffer.
@param ctx Pointer to the current EST context.
@param cacert Pointer to the buffer into which the retrieved BRSKI cacert
is to be copied.
@return EST_ERROR_NONE on success, or EST based error
est_client_brski_copy_cacert() copies the most recently retrieved BRSKI
cacert from the EST server. Once the cacert is copied
to the application's buffer pointed to by cacert it is removed from
the EST client context.
*/
EST_ERROR est_client_brski_copy_cacert (EST_CTX *ctx, unsigned char *cacert)
{
errno_t safec_rc;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (ctx->brski_mode != BRSKI_ENABLED) {
EST_LOG_ERR("BRSKI mode not enabled or supported");
return EST_ERR_INVALID_PARAMETERS;
}
if (cacert == NULL) {
EST_LOG_ERR("cacert ptr is NULL");
return EST_ERR_INVALID_PARAMETERS;
}
if (ctx->brski_retrieved_cacert == NULL) {
EST_LOG_ERR("No BRSKI cacert to copy");
return(EST_ERR_NO_CERT);
}
memzero_s(cacert, ctx->brski_retrieved_cacert_len);
safec_rc = memcpy_s(cacert, ctx->brski_retrieved_cacert_len,
ctx->brski_retrieved_cacert,
ctx->brski_retrieved_cacert_len);
if (safec_rc != EOK) {
EST_LOG_ERR("memcpy_s failed with 0x%xO", safec_rc);
return (EST_ERR_SYSCALL);
}
memzero_s(ctx->brski_retrieved_cacert, ctx->brski_retrieved_cacert_len);
return (EST_ERR_NONE);
}
/*
* This function is used to build the HTTP headers for
* the BRSKI status indication flow.
*
* Parameters:
* ctx: EST context
* hdr: pointer to the buffer to hold the header
* req_buf_len:length fo the status indication buffer that is ready for
* transmission
* uri: buffer containing which operation is to be performed.
*/
static int est_client_brski_build_status_header (EST_CTX *ctx, char *hdr,
int req_buf_len, char * uri)
{
int hdr_len;
snprintf(hdr, EST_HTTP_REQ_TOTAL_LEN, "POST %s%s%s/%s HTTP/1.0\r\n"
"User-Agent: %s\r\n"
"Connection: close\r\n"
"Host: %s:%d\r\n"
"Accept: */*\r\n"
"Content-Type: %s\r\n"
"Content-Length: %d\r\n",
EST_PATH_PREFIX,
(ctx->uri_path_segment?"/":""),
(ctx->uri_path_segment?ctx->uri_path_segment:""),
uri,
EST_HTTP_HDR_EST_CLIENT,
ctx->est_server, ctx->est_port_num,
EST_BRSKI_CT_STATUS,
req_buf_len);
est_client_add_auth_hdr(ctx, hdr, EST_BRSKI_GET_VOUCHER_URI);
hdr_len = (int) strnlen_s(hdr, EST_HTTP_REQ_TOTAL_LEN);
if (hdr_len == EST_HTTP_REQ_TOTAL_LEN) {
EST_LOG_WARN("BRSKI voucher request header took up the maximum amount in buffer (%d)",
EST_HTTP_REQ_TOTAL_LEN);
}
return (hdr_len);
}
/*
* This function does the work for the voucher status indication flow.
*
* Parameters:
* ctx: EST context
* ssl: SSL context
* status: pointer to buffer containing the JSON status indication
* status_len: length of the status buffer
* opcode: Indicates which of the two status operations to be performed.
*/
static int send_status (EST_CTX *ctx, SSL *ssl, char *status, int status_len,
EST_OPERATION opcode)
{
char *http_data;
int hdr_len;
int write_size;
int rv;
unsigned char *resp_buf;
int resp_buf_len;
char *uri;
errno_t safec_rc;
/*
* Build the HTTP request
*/
http_data = malloc(EST_HTTP_REQ_TOTAL_LEN);
if (http_data == NULL) {
EST_LOG_ERR("Unable to allocate memory for http_data");
return EST_ERR_MALLOC;
}
if (opcode == EST_OP_BRSKI_VOUCHER_STATUS) {
uri = EST_BRSKI_VOUCHER_STATUS;
} else if (opcode == EST_OP_BRSKI_ENROLL_STATUS){
uri = EST_BRSKI_ENROLL_STATUS;
} else {
free(http_data);
return (EST_ERR_INVALID_PARAMETERS);
}
hdr_len = est_client_brski_build_status_header(ctx, http_data, status_len, uri);
/*
* terminate the HTTP header
*/
snprintf(http_data + hdr_len, EST_HTTP_REQ_TOTAL_LEN-hdr_len,"\r\n");
hdr_len += 2;
/*
* Build the HTTP body containing the status indication
*/
safec_rc = memcpy_s(http_data + hdr_len, EST_HTTP_REQ_DATA_MAX,
status, status_len);
if (safec_rc != EOK) {
EST_LOG_ERR("memcpy_s failed with 0x%xO", safec_rc);
free(http_data);
return (EST_ERR_SYSCALL);
}
hdr_len += status_len;
/*
* terminate the HTTP request
*/
snprintf(http_data + hdr_len,EST_HTTP_REQ_TOTAL_LEN-hdr_len, "\r\n");
hdr_len += 2;
/*
* Send the request to the server and wait for a response
*/
ctx->last_http_status = 0;
write_size = SSL_write(ssl, http_data, hdr_len);
if (write_size < 0) {
EST_LOG_ERR("TLS write error");
ossl_dump_ssl_errors();
free(http_data);
http_data = NULL;
rv = EST_ERR_SSL_WRITE;
} else {
EST_LOG_INFO("TLS wrote %d bytes, attempted %d bytes\n",
write_size, hdr_len);
/*
* Try to get the response from the server
*/
rv = est_io_get_response(ctx, ssl, opcode, &resp_buf, &resp_buf_len);
switch (rv) {
case EST_ERR_NONE:
break;
case EST_ERR_AUTH_FAIL:
EST_LOG_ERR("HTTP auth failure");
break;
case EST_ERR_CA_ENROLL_RETRY:
EST_LOG_INFO("HTTP request failed with a RETRY AFTER resp");
break;
default:
EST_LOG_ERR("EST request failed: %d (%s)", rv, EST_ERR_NUM_TO_STR(rv));
break;
}
}
if (http_data) {
free(http_data);
}
return (rv);
}
/*! @brief est_client_brski_send_voucher_status() sends a BRSKI voucher status
indication to the EST server.
@param ctx Pointer to an EST context
@param status Enum value defined in the enum EST_BRSKI_STATUS_VALUE
@param reason NULL terminated string containing the reason.
@return EST_ERROR_NONE on success, or EST based error
est_client_brski_send_voucher_status() implements the BRSKI
/voucher_status. It connects to the EST server, builds the BRSKI voucher
status message, and sends the status message. The HTTP status returned
from the EST server represents the status of the sending of this BRSKI
message. The application can call est_client_get_last_http_status() to
obtain the HTTP status of this message.
*/
EST_ERROR est_client_brski_send_voucher_status (EST_CTX *ctx, EST_BRSKI_STATUS_VALUE status,
char *reason)
{
EST_ERROR rv = EST_ERR_NONE;
SSL *ssl = NULL;
int voucher_status_len;
char voucher_status[EST_BRSKI_MAX_STATUS_LEN];
char *status_str;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (ctx->brski_mode != BRSKI_ENABLED) {
EST_LOG_ERR("BRSKI mode not enabled or supported");
return EST_ERR_INVALID_PARAMETERS;
}
if (status == EST_BRSKI_STATUS_SUCCESS) {
status_str = "true";
} else if (status == EST_BRSKI_STATUS_FAIL) {
status_str = "false";
} else {
EST_LOG_ERR("BRSKI send voucher status not valid");
return EST_ERR_INVALID_PARAMETERS;
}
if (reason == NULL || *reason == '\n') {
EST_LOG_ERR("Reason buffer is NULL or is an empty string");
return EST_ERR_INVALID_PARAMETERS;
}
if (strnlen_s(reason, EST_BRSKI_MAX_REASON_LEN+1) > EST_BRSKI_MAX_REASON_LEN) {
EST_LOG_ERR("Reason buffer exceeds maximum");
return EST_ERR_INVALID_PARAMETERS;
}
/*
* build up the voucher status buffer
*/
snprintf(voucher_status, EST_BRSKI_MAX_STATUS_LEN,
"{\r\n"
"\"version\":\"%s\",\r\n"
"\"Status\":%s,\r\n" /* no quotes to simulate a JSON boolean */
"\"Reason\":\"%s\"\r\n"
"}", BRSKI_VERSION, status_str, reason);
voucher_status_len = strnlen_s(voucher_status, EST_BRSKI_MAX_STATUS_LEN+1);
if (voucher_status_len > EST_BRSKI_MAX_STATUS_LEN) {
EST_LOG_ERR("Status buffer too large");
return EST_ERR_INVALID_PARAMETERS;
}
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
rv = send_status(ctx, ssl, voucher_status, voucher_status_len, EST_OP_BRSKI_VOUCHER_STATUS);
est_client_disconnect(ctx, &ssl);
/*
* Handle the case where the server is requesting further authentication
*/
if (rv == EST_ERR_AUTH_FAIL &&
(ctx->auth_mode == AUTH_DIGEST ||
ctx->auth_mode == AUTH_BASIC ||
ctx->auth_mode == AUTH_TOKEN)) {
/*
* HTTPS digest mode requires the use of MD5. Make sure we're not
* in FIPS mode and can use MD5
*/
if (ctx->auth_mode == AUTH_DIGEST && (EVP_default_properties_is_fips_enabled(NULL))){
EST_LOG_ERR("HTTP digest auth not allowed while in FIPS mode");
rv = EST_ERR_BAD_MODE;
goto err;
}
/* Try one more time if we're doing Digest auth */
EST_LOG_INFO("HTTP Auth failed, trying again with HTTP Auth credentials");
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Connection failed on second attempt with HTTP Auth credentials");
goto err;
}
rv = send_status(ctx, ssl, voucher_status, voucher_status_len, EST_OP_BRSKI_VOUCHER_STATUS);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Voucher status failed on second attempt with HTTP Auth credentials");
}
est_client_disconnect(ctx, &ssl);
}
ctx->auth_mode = AUTH_NONE;
err:
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
/*! @brief est_client_send_cert_status() sends a certificate status
indication to the EST server.
@param ctx Pointer to an EST context
@param status Enum value defined in the enum EST_BRSKI_STATUS_VALUE
@param reason Pointer to buffer containing the enroll status
reason being sent back to the EST server. This can be an empty
string when status is success.
@param subject_key_id Pointer to buffer containing the SubjectKeyIdentifier
of the certificate that was just returned from the CA as a result of the
enrollment process.
@return EST_ERROR_NONE on success, or EST based error
est_client_send_cert_status() connects to the EST server, builds
enrollment status message, and sends the message. The response is just
the HTTP response. The application can call est_client_get_last_http_status()
to obtain the HTTP status of this message.
*/
EST_ERROR est_client_brski_send_enroll_status (EST_CTX *ctx, EST_BRSKI_STATUS_VALUE status,
char *reason,
unsigned char *subject_key_id)
{
EST_ERROR rv = EST_ERR_NONE;
char enroll_status[EST_BRSKI_MAX_STATUS_LEN];
SSL *ssl = NULL;
int enroll_status_len;
unsigned char subject_key_b64[EST_BRSKI_MAX_SUBJ_KEY_ID_LEN*2];
/* PDB: *2 to cover b64 growth */
int ski_b64_len = 0;
char *status_str;
if (!ctx) {
return (EST_ERR_NO_CTX);
}
if (!ctx->est_client_initialized) {
return EST_ERR_CLIENT_NOT_INITIALIZED;
}
if (ctx->brski_mode != BRSKI_ENABLED) {
EST_LOG_ERR("BRSKI mode not enabled or supported");
return EST_ERR_INVALID_PARAMETERS;
}
if (status == EST_BRSKI_STATUS_SUCCESS) {
status_str = "true";
} else if (status == EST_BRSKI_STATUS_FAIL) {
status_str = "false";
} else {
EST_LOG_ERR("BRSKI send voucher status not valid");
return EST_ERR_INVALID_PARAMETERS;
}
if (reason != NULL && strnlen_s(reason, EST_BRSKI_MAX_REASON_LEN+1) > EST_BRSKI_MAX_REASON_LEN) {
EST_LOG_ERR("Reason buffer exceeds maximum");
return EST_ERR_INVALID_PARAMETERS;
}
/*
* If the status is a failure, then there needs to be a reason.
*/
if (status == EST_BRSKI_STATUS_FAIL) {
if (reason == NULL) {
EST_LOG_ERR("Reason buffer is NULL, and status is FAIL");
return EST_ERR_INVALID_PARAMETERS;
}
}
if (strnlen_s(reason, EST_BRSKI_MAX_REASON_LEN+1) > EST_BRSKI_MAX_REASON_LEN) {
EST_LOG_ERR("Reason buffer exceeds maximum");
return EST_ERR_INVALID_PARAMETERS;
}
if (subject_key_id == NULL || *subject_key_id == '\n') {
EST_LOG_ERR("Subject Key Identifier buffer is NULL or is an empty string");
return EST_ERR_INVALID_PARAMETERS;
}
if (strnlen_s((char *)subject_key_id, EST_BRSKI_MAX_SUBJ_KEY_ID_LEN+1) > EST_BRSKI_MAX_SUBJ_KEY_ID_LEN) {
EST_LOG_ERR("Subject key identifier buffer exceeds maximum");
return EST_ERR_INVALID_PARAMETERS;
}
ski_b64_len = est_base64_encode((const char *)subject_key_id,
strnlen_s((char *)subject_key_id, EST_BRSKI_MAX_SUBJ_KEY_ID_LEN),
(char *)subject_key_b64,
(EST_BRSKI_MAX_SUBJ_KEY_ID_LEN*2), 0);
if (ski_b64_len == 0) {
EST_LOG_ERR("Cannot base64 encode Subject Key Identifier");
return EST_ERR_INVALID_PARAMETERS;
}
/*
* build up the enroll status buffer
*/
snprintf(enroll_status, EST_BRSKI_MAX_STATUS_LEN,
"{\r\n"
"\"version\":\"%s\",\r\n"
"\"Status\":%s,\r\n"
"\"Reason\":\"%s\",\r\n"
"\"SubjectKeyIdentifier\":\"%s\"\r\n"
"}",
BRSKI_VERSION, status_str, reason, subject_key_b64);
enroll_status_len = strnlen_s(enroll_status, EST_BRSKI_MAX_STATUS_LEN+1);
if (enroll_status_len > EST_BRSKI_MAX_STATUS_LEN) {
EST_LOG_ERR("Status buffer too large");
return EST_ERR_INVALID_PARAMETERS;
}
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
rv = send_status(ctx, ssl, enroll_status, enroll_status_len, EST_OP_BRSKI_ENROLL_STATUS);
est_client_disconnect(ctx, &ssl);
/*
* Handle the case where the server is requesting further authentication
*/
if (rv == EST_ERR_AUTH_FAIL &&
(ctx->auth_mode == AUTH_DIGEST ||
ctx->auth_mode == AUTH_BASIC ||
ctx->auth_mode == AUTH_TOKEN)) {
/*
* HTTPS digest mode requires the use of MD5. Make sure we're not
* in FIPS mode and can use MD5
*/
if (ctx->auth_mode == AUTH_DIGEST && (EVP_default_properties_is_fips_enabled(NULL))){
EST_LOG_ERR("HTTP digest auth not allowed while in FIPS mode");
rv = EST_ERR_BAD_MODE;
goto err;
}
/* Try one more time if we're doing Digest auth */
EST_LOG_INFO("HTTP Auth failed, trying again with HTTP Auth credentials");
rv = est_client_connect(ctx, &ssl);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Connection failed on second attempt with HTTP Auth credentials");
goto err;
}
rv = send_status(ctx, ssl, enroll_status, enroll_status_len, EST_OP_BRSKI_ENROLL_STATUS);
if (rv != EST_ERR_NONE) {
EST_LOG_ERR("Enroll status failed on second attempt with HTTP Auth credentials");
}
est_client_disconnect(ctx, &ssl);
}
ctx->auth_mode = AUTH_NONE;
err:
if (ssl) {
SSL_shutdown(ssl);
SSL_free(ssl);
}
return (rv);
}
#endif // BRSKI Support
|