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
|
/*
* OpenConnect (SSL + DTLS) VPN client
*
* Copyright © 2019 David Woodhouse.
*
* Author: David Woodhouse <dwmw2@infradead.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
#include <config.h>
#include "openconnect-internal.h"
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <time.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#define VENDOR_JUNIPER 0xa4c
#define VENDOR_JUNIPER2 0x583
#define VENDOR_TCG 0x5597
#define IFT_VERSION_REQUEST 1
#define IFT_VERSION_RESPONSE 2
#define IFT_CLIENT_AUTH_REQUEST 3
#define IFT_CLIENT_AUTH_SELECTION 4
#define IFT_CLIENT_AUTH_CHALLENGE 5
#define IFT_CLIENT_AUTH_RESPONSE 6
#define IFT_CLIENT_AUTH_SUCCESS 7
/* IF-T/TLS v1 authentication messages all start
* with the Auth Type Vendor (Juniper) + Type (1) */
#define JUNIPER_1 ((VENDOR_JUNIPER << 8) | 1)
#define AVP_VENDOR 0x80
#define AVP_MANDATORY 0x40
#define EAP_REQUEST 1
#define EAP_RESPONSE 2
#define EAP_SUCCESS 3
#define EAP_FAILURE 4
#define EAP_TYPE_IDENTITY 1
#define EAP_TYPE_GTC 6
#define EAP_TYPE_TLS 0x0d
#define EAP_TYPE_TTLS 0x15
#define EAP_TYPE_EXPANDED 0xfe
#define EXPANDED_JUNIPER ((EAP_TYPE_EXPANDED << 24) | VENDOR_JUNIPER)
#define AVP_CODE_EAP_MESSAGE 79
#if defined(OPENCONNECT_OPENSSL)
#define TTLS_SEND SSL_write
#define TTLS_RECV SSL_read
#elif defined(OPENCONNECT_GNUTLS)
#define TTLS_SEND gnutls_record_send
#define TTLS_RECV gnutls_record_recv
#endif
/* Flags for prompt handling during authentication, based on the contents of the 0xd73 AVP (qv). */
#define PROMPT_PRIMARY 1
#define PROMPT_USERNAME 2
#define PROMPT_PASSWORD 4
#define PROMPT_GTC_NEXT 0x10000
/* Request codes for the Juniper Expanded/2 auth requests. */
#define J2_PASSCHANGE 0x43
#define J2_PASSREQ 0x01
#define J2_PASSRETRY 0x81
#define J2_PASSFAIL 0xc5
/* Limit to TLS record size. */
#define TLS_RECORD_MAX (16384)
/* Outbound fragment size limit */
#define TTLS_MAXFRAG (8192)
#define TTLS_LENGTH (1<<7)
#define TTLS_MOREFRAGS (1<<6)
#define TTLS_START (1<<5)
static void buf_append_ift_hdr(struct oc_text_buf *buf, uint32_t vendor, uint32_t type)
{
uint32_t b[4];
store_be32(&b[0], vendor);
store_be32(&b[1], type);
b[2] = 0; /* Length will be filled in later. */
b[3] = 0;
buf_append_bytes(buf, b, 16);
}
/* Append EAP header, using VENDOR_JUNIPER and the given subtype if
* the main type is EAP_TYPE_EXPANDED */
static int buf_append_eap_hdr(struct oc_text_buf *buf, uint8_t code, uint8_t ident, uint8_t type,
uint32_t subtype)
{
unsigned char b[24];
int len_ofs = -1;
if (!buf_error(buf))
len_ofs = buf->pos;
b[0] = code;
b[1] = ident;
b[2] = b[3] = 0; /* Length is filled in later. */
if (type == EAP_TYPE_EXPANDED) {
store_be32(b + 4, EXPANDED_JUNIPER);
store_be32(b + 8, subtype);
buf_append_bytes(buf, b, 12);
} else {
b[4] = type;
buf_append_bytes(buf, b, 5);
}
return len_ofs;
}
/* For an IF-T/TLS auth frame containing the Juniper/1 Auth Type,
* the EAP header is at offset 0x14. Fill in the length field,
* based on the current length of the buf */
static void buf_fill_eap_len(struct oc_text_buf *buf, int ofs)
{
/* EAP length word is always at 0x16, and counts bytes from 0x14 */
if (ofs >= 0 && !buf_error(buf) && buf->pos >= ofs + 4)
store_be16(buf->data + ofs + 2, buf->pos - ofs);
}
static void buf_append_avp(struct oc_text_buf *buf, uint32_t type, const void *bytes, int len)
{
buf_append_be32(buf, type);
buf_append_be16(buf, 0x8000);
buf_append_be16(buf, len + 12);
buf_append_be32(buf, VENDOR_JUNIPER2);
buf_append_bytes(buf, bytes, len);
if (len & 3) {
uint32_t pad = 0;
buf_append_bytes(buf, &pad, 4 - ( len & 3 ));
}
}
static void buf_append_avp_string(struct oc_text_buf *buf, uint32_t type, const char *str)
{
buf_append_avp(buf, type, str, strlen(str));
}
static void buf_append_avp_be32(struct oc_text_buf *buf, uint32_t type, uint32_t val)
{
uint32_t val_be;
store_be32(&val_be, val);
buf_append_avp(buf, type, &val_be, sizeof(val_be));
}
static int valid_ift_success(unsigned char *bytes, int len)
{
if (len != 0x18 || (load_be32(bytes) & 0xffffff) != VENDOR_TCG ||
load_be32(bytes + 4) != IFT_CLIENT_AUTH_SUCCESS ||
load_be32(bytes + 8) != len ||
load_be32(bytes + 0x10) != JUNIPER_1 ||
bytes[0x14] != EAP_SUCCESS ||
load_be16(bytes + 0x16) != len - 0x14)
return 0;
return 1;
}
/* Check for a valid IF-T/TLS auth challenge of the Juniper/1 Auth Type */
static int valid_ift_auth(unsigned char *bytes, int len)
{
if (len < 0x14 || (load_be32(bytes) & 0xffffff) != VENDOR_TCG ||
load_be32(bytes + 4) != IFT_CLIENT_AUTH_CHALLENGE ||
load_be32(bytes + 8) != len ||
load_be32(bytes + 0x10) != JUNIPER_1)
return 0;
return 1;
}
static int valid_ift_auth_eap(unsigned char *bytes, int len)
{
/* Needs to be a valid IF-T/TLS auth challenge with the
* expect Auth Type, *and* the payload has to be a valid
* EAP request with correct length field. */
if (!valid_ift_auth(bytes, len) || len < 0x19 ||
bytes[0x14] != EAP_REQUEST ||
load_be16(bytes + 0x16) != len - 0x14)
return 0;
return 1;
}
static int valid_ift_auth_eap_exj1(unsigned char *bytes, int len)
{
/* Also needs to be the Expanded Juniper/1 EAP Type */
if (!valid_ift_auth_eap(bytes, len) || len < 0x20 ||
load_be32(bytes + 0x18) != EXPANDED_JUNIPER ||
load_be32(bytes + 0x1c) != 1)
return 0;
return 1;
}
static int process_attr(struct openconnect_info *vpninfo, struct oc_vpn_option **new_opts,
struct oc_ip_info *new_ip_info, uint16_t type,
unsigned char *data, int attrlen)
{
struct oc_split_include *xc;
char buf[80];
int i;
switch (type) {
case 0x0001:
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received internal Legacy IP address %s\n"), buf);
new_ip_info->addr = add_option_dup(new_opts, "ipaddr", buf, -1);
break;
case 0x0002:
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received netmask %s\n"), buf);
new_ip_info->netmask = add_option_dup(new_opts, "netmask", buf, -1);
break;
case 0x0003:
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received DNS server %s\n"), buf);
for (i = 0; i < 3; i++) {
if (!new_ip_info->dns[i]) {
new_ip_info->dns[i] = add_option_dup(new_opts, "DNS", buf, -1);
break;
}
}
break;
case 0x0004:
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received WINS server %s\n"), buf);
for (i = 0; i < 3; i++) {
if (!new_ip_info->nbns[i]) {
new_ip_info->nbns[i] = add_option_dup(new_opts, "WINS", buf, -1);
break;
}
}
break;
case 0x0008:
if (attrlen != 17)
goto badlen;
if (!inet_ntop(AF_INET6, data, buf, sizeof(buf))) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to handle IPv6 address\n"));
return -EINVAL;
}
if (!vpninfo->disable_ipv6) {
new_ip_info->addr6 = add_option_dup(new_opts, "ip6addr", buf, -1);
i = strlen(buf);
snprintf(buf + i, sizeof(buf) - i, "/%d", data[16]);
new_ip_info->netmask6 = add_option_dup(new_opts, "ip6netmask", buf, -1);
}
vpn_progress(vpninfo, PRG_DEBUG, _("Received internal IPv6 address %s\n"), buf);
break;
case 0x000a:
if (attrlen != 16)
goto badlen;
if (!inet_ntop(AF_INET6, data, buf, sizeof(buf))) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to handle IPv6 address\n"));
return -EINVAL;
}
for (i = 0; i < 3; i++) {
if (!new_ip_info->dns[i]) {
new_ip_info->dns[i] = add_option_dup(new_opts, "DNS", buf, -1);
break;
}
}
vpn_progress(vpninfo, PRG_DEBUG, _("Received DNS server %s\n"), buf);
break;
case 0x000f:
if (attrlen != 17)
goto badlen;
if (!inet_ntop(AF_INET6, data, buf, sizeof(buf))) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to handle IPv6 address\n"));
return -EINVAL;
}
i = strlen(buf);
snprintf(buf + i, sizeof(buf) - i, "/%d", data[16]);
xc = malloc(sizeof(*xc));
if (xc) {
xc->route = add_option_dup(new_opts, "split-include6", buf, -1);
if (xc->route) {
xc->next = new_ip_info->split_includes;
new_ip_info->split_includes = xc;
} else
free(xc);
}
vpn_progress(vpninfo, PRG_DEBUG, _("Received IPv6 split include %s\n"), buf);
break;
case 0x0010:
if (attrlen != 17)
goto badlen;
if (!inet_ntop(AF_INET6, data, buf, sizeof(buf))) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to handle IPv6 address\n"));
return -EINVAL;
}
i = strlen(buf);
snprintf(buf + i, sizeof(buf) - i, "/%d", data[16]);
xc = malloc(sizeof(*xc));
if (xc) {
xc->route = add_option_dup(new_opts, "split-exclude6", buf, -1);
if (xc->route) {
xc->next = new_ip_info->split_excludes;
new_ip_info->split_excludes = xc;
} else
free(xc);
}
vpn_progress(vpninfo, PRG_DEBUG, _("Received IPv6 split exclude %s\n"), buf);
break;
case 0x4005:
if (attrlen != 4) {
badlen:
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected length %d for attr 0x%x\n"),
attrlen, type);
return -EINVAL;
}
new_ip_info->mtu = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG,
_("Received MTU %d from server\n"),
new_ip_info->mtu);
break;
case 0x4006:
if (!attrlen)
goto badlen;
if (!data[attrlen-1])
attrlen--;
vpn_progress(vpninfo, PRG_DEBUG, _("Received DNS search domain %.*s\n"),
attrlen, (char *)data);
new_ip_info->domain = add_option_dup(new_opts, "search", (char *)data, attrlen);
break;
case 0x400b:
if (attrlen != 4)
goto badlen;
snprintf(buf, sizeof(buf), "%d.%d.%d.%d", data[0], data[1], data[2], data[3]);
vpn_progress(vpninfo, PRG_DEBUG, _("Received internal gateway address %s\n"), buf);
/* Hm, what are we supposed to do with this? It's a tunnel;
having a gateway is meaningless. */
add_option_dup(new_opts, "gateway", buf, -1);
break;
case 0x4010: {
const char *enctype;
uint16_t val;
if (attrlen != 2)
goto badlen;
val = load_be16(data);
if (val == ENC_AES_128_CBC) {
enctype = "AES-128";
vpninfo->enc_key_len = 16;
} else if (val == ENC_AES_256_CBC) {
enctype = "AES-256";
vpninfo->enc_key_len = 32;
} else
enctype = "unknown";
vpn_progress(vpninfo, PRG_DEBUG, _("ESP encryption: 0x%04x (%s)\n"),
val, enctype);
vpninfo->esp_enc = val;
break;
}
case 0x4011: {
const char *mactype;
uint16_t val;
if (attrlen != 2)
goto badlen;
val = load_be16(data);
if (val == HMAC_MD5) {
mactype = "MD5";
vpninfo->hmac_key_len = 16;
} else if (val == HMAC_SHA1) {
mactype = "SHA1";
vpninfo->hmac_key_len = 20;
} else if (val == HMAC_SHA256) {
mactype = "SHA256";
vpninfo->hmac_key_len = 32;
} else
mactype = "unknown";
vpn_progress(vpninfo, PRG_DEBUG, _("ESP HMAC: 0x%04x (%s)\n"),
val, mactype);
vpninfo->esp_hmac = val;
break;
}
case 0x4012:
if (attrlen != 4)
goto badlen;
vpninfo->esp_lifetime_seconds = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP key lifetime: %u seconds\n"),
vpninfo->esp_lifetime_seconds);
break;
case 0x4013:
if (attrlen != 4)
goto badlen;
vpninfo->esp_lifetime_bytes = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP key lifetime: %u bytes\n"),
vpninfo->esp_lifetime_bytes);
break;
case 0x4014:
if (attrlen != 4)
goto badlen;
vpninfo->esp_replay_protect = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP replay protection: %d\n"),
load_be32(data));
break;
case 0x4016:
if (attrlen != 2)
goto badlen;
i = load_be16(data);
udp_sockaddr(vpninfo, i);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP port: %d\n"), i);
break;
case 0x4017:
if (attrlen != 4)
goto badlen;
vpninfo->esp_ssl_fallback = load_be32(data);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP to SSL fallback: %u seconds\n"),
vpninfo->esp_ssl_fallback);
break;
case 0x401a:
if (attrlen != 1)
goto badlen;
/* Amusingly, this isn't enforced. It's client-only */
vpn_progress(vpninfo, PRG_DEBUG, _("ESP only: %d\n"),
data[0]);
break;
case 0x401e:
if (attrlen != 16)
goto badlen;
if (!inet_ntop(AF_INET6, data, buf, sizeof(buf))) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to handle IPv6 address\n"));
return -EINVAL;
}
vpn_progress(vpninfo, PRG_DEBUG, _("Received internal gateway IPv6 address %s\n"), buf);
/* Hm, what are we supposed to do with this? It's a tunnel;
having a gateway is meaningless. */
add_option_dup(new_opts, "gateway6", buf, -1);
break;
case 0x4024:
/* This flag is supposed to be available starting with Pulse server 9.1R9 (see
* https://help.ivanti.com/ps/legacy/pcs/9.1rx/9.1r9/ps-pcs-sa-9.1r9.0-releasenotes.pdf),
* but it appears that it also requires a certain minimum CLIENT version to
* be advertised in order for the server to send it (22.2.1.1295 is insufficient;
* see https://gitlab.com/openconnect/openconnect/-/issues/506#note_1146848739).
*/
if (attrlen != 1)
goto badlen;
vpninfo->pulse_esp_unstupid = data[0];
vpn_progress(vpninfo, PRG_DEBUG,
_("Pulse ESP tunnel allowed to carry 6in4 or 4in6 traffic: %d\n"),
vpninfo->pulse_esp_unstupid);
break;
/* 0x4022: disable proxy
0x400a: preserve proxy
0x4008: proxy (string)
0x4000: disconnect when routes changed
0x4015: tos copy
0x4001: tunnel routes take precedence
0x401f: tunnel routes with subnet access (also 4001 set)
0x4020: Enforce IPv4
0x4021: Enforce IPv6
0x0014: Prefer FQDN resources over IP resources in case of a split tunneling conflict
*/
default:
buf[0] = 0;
for (i=0; i < 16 && i < attrlen; i++)
sprintf(buf + strlen(buf), " %02x", data[i]);
if (attrlen > 16)
sprintf(buf + strlen(buf), "...");
vpn_progress(vpninfo, PRG_DEBUG,
_("Unknown attr 0x%x len %d:%s\n"),
type, attrlen, buf);
}
return 0;
}
static int recv_ift_packet(struct openconnect_info *vpninfo, void *buf, int len)
{
int ret = vpninfo->ssl_read(vpninfo, buf, len);
if (ret > 0 && vpninfo->dump_http_traffic) {
vpn_progress(vpninfo, PRG_TRACE,
_("Read %d bytes of IF-T/TLS record\n"), ret);
dump_buf_hex(vpninfo, PRG_TRACE, '<', buf, ret);
}
return ret;
}
static int send_ift_bytes(struct openconnect_info *vpninfo, void *bytes, int len)
{
int ret;
store_be32(((char *)bytes) + 12, vpninfo->ift_seq++);
dump_buf_hex(vpninfo, PRG_DEBUG, '>', (void *)bytes, len);
ret = vpninfo->ssl_write(vpninfo, bytes, len);
if (ret != len) {
if (ret >= 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Short write to IF-T/TLS\n"));
ret = -EIO;
}
return ret;
}
return 0;
}
static int send_ift_packet(struct openconnect_info *vpninfo, struct oc_text_buf *buf)
{
if (buf_error(buf) || buf->pos < 16) {
vpn_progress(vpninfo, PRG_ERR,
_("Error creating IF-T packet\n"));
return buf_error(buf);
}
/* Fill in the length word in the header with the full length of the buffer.
* Also populate the sequence number. */
store_be32(buf->data + 8, buf->pos);
return send_ift_bytes(vpninfo, buf->data, buf->pos);
}
/* We create packets with IF-T/TLS headers prepended because that's the
* larger header. In the case where they need to be sent over EAP-TTLS,
* convert the header to the EAP-Message AVP instead. */
static int send_eap_packet(struct openconnect_info *vpninfo, void *ttls, struct oc_text_buf *buf)
{
int ret;
if (buf_error(buf) || buf->pos < 16) {
vpn_progress(vpninfo, PRG_ERR,
_("Error creating EAP packet\n"));
return buf_error(buf);
}
if (!ttls)
return send_ift_packet(vpninfo, buf);
/* AVP EAP-Message header */
store_be32(buf->data + 0x0c, AVP_CODE_EAP_MESSAGE);
store_be32(buf->data + 0x10, buf->pos - 0xc);
dump_buf_hex(vpninfo, PRG_DEBUG, '.', (void *)(buf->data + 0x0c), buf->pos - 0x0c);
ret = TTLS_SEND(ttls, buf->data + 0x0c, buf->pos - 0x0c);
if (ret != buf->pos - 0x0c)
return -EIO;
return 0;
}
/*
* Using the given buffer, receive and validate an EAP request of the
* Expanded Juniper/1 type, either natively over IF-T/TLS or by EAP-TTLS
* over IF-T/TLS. Return a pointer to the EAP header, with its length and
* type already validated.
*/
static void *recv_eap_packet(struct openconnect_info *vpninfo, void *ttls, void *buf, int len)
{
unsigned char *cbuf = buf;
int ret;
if (!ttls) {
ret = recv_ift_packet(vpninfo, buf, len);
if (ret < 0)
return NULL;
if (!valid_ift_auth_eap_exj1(buf, ret)) {
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected IF-T/TLS authentication challenge:\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', (void *)buf, ret);
return NULL;
}
return cbuf + 0x14;
} else {
ret = TTLS_RECV(ttls, buf, len);
if (ret <= 8)
return NULL;
if (/* EAP-Message AVP */
load_be32(cbuf) != AVP_CODE_EAP_MESSAGE ||
/* Ignore the mandatory bit */
(load_be32(cbuf+0x04) & ~0x40000000) != ret ||
cbuf[0x08] != EAP_REQUEST ||
load_be16(cbuf+0x0a) != ret - 8 ||
load_be32(cbuf+0x0c) != EXPANDED_JUNIPER ||
load_be32(cbuf+0x10) != 1) {
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected EAP-TTLS payload:\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', buf, ret);
return NULL;
}
return cbuf + 0x08;
}
}
static void dump_avp(struct openconnect_info *vpninfo, uint8_t flags,
uint32_t vendor, uint32_t code, void *p, int len)
{
struct oc_text_buf *buf = buf_alloc();
const char *pretty;
int i;
for (i = 0; i < len; i++)
if (!isprint( ((char *)p)[i] ))
break;
if (i == len) {
buf_append(buf, " '");
buf_append_bytes(buf, p, len);
buf_append(buf, "'");
} else {
for (i = 0; i < len; i++)
buf_append(buf, " %02x", ((unsigned char *)p)[i]);
}
if (buf_error(buf))
pretty = " <error>";
else
pretty = buf->data;
if (flags & AVP_VENDOR)
vpn_progress(vpninfo, PRG_TRACE, _("AVP 0x%x/0x%x:%s\n"), vendor, code, pretty);
else
vpn_progress(vpninfo, PRG_TRACE, _("AVP %d:%s\n"), code, pretty);
buf_free(buf);
}
/* RFC5281 §10 */
static int parse_avp(struct openconnect_info *vpninfo, void **pkt, int *pkt_len,
void **avp_out, int *avp_len, uint8_t *avp_flags,
uint32_t *avp_vendor, uint32_t *avp_code)
{
unsigned char *p = *pkt;
int l = *pkt_len;
uint32_t code, len, vendor = 0;
uint8_t flags;
if (l < 8)
return -EINVAL;
code = load_be32(p);
len = load_be32(p + 4) & 0xffffff;
flags = p[4];
if (len > l || len < 8)
return -EINVAL;
p += 8;
l -= 8;
len -= 8;
/* Vendor field is optional. */
if (flags & AVP_VENDOR) {
if (l < 4)
return -EINVAL;
vendor = load_be32(p);
p += 4;
l -= 4;
len -= 4;
}
*avp_vendor = vendor;
*avp_flags = flags;
*avp_code = code;
*avp_out = p;
*avp_len = len;
/* Now set up packet pointer and length for next AVP,
* aligned to 4 octets (if they exist in the packet) */
len = (len + 3) & ~3;
if (len > l)
len = l;
*pkt = p + len;
*pkt_len = l - len;
return 0;
}
static int pulse_request_realm_entry(struct openconnect_info *vpninfo, struct oc_text_buf *reqbuf)
{
struct oc_auth_form f;
struct oc_form_opt o;
int ret;
memset(&f, 0, sizeof(f));
memset(&o, 0, sizeof(o));
f.auth_id = (char *)"pulse_realm_entry";
f.opts = &o;
f.message = _("Enter Pulse user realm:");
o.next = NULL;
o.type = OC_FORM_OPT_TEXT;
o.name = (char *)"realm";
o.label = (char *)_("Realm:");
ret = process_auth_form(vpninfo, &f);
if (ret)
return ret;
if (o._value) {
buf_append_avp_string(reqbuf, 0xd50, o._value);
free_pass(&o._value);
return 0;
}
return -EINVAL;
}
static int pulse_request_realm_choice(struct openconnect_info *vpninfo, struct oc_text_buf *reqbuf,
int realms, unsigned char *eap, int is_region)
{
uint8_t avp_flags;
uint32_t avp_code;
uint32_t avp_vendor;
uint32_t expected_avp_code;
uint32_t reply_code;
int avp_len;
void *avp_p;
struct oc_auth_form f;
struct oc_form_opt_select o;
int i = 0, ret;
void *p;
int l;
l = load_be16(eap + 2) - 0x0c; /* Already validated */
p = eap + 0x0c;
memset(&f, 0, sizeof(f));
memset(&o, 0, sizeof(o));
f.opts = &o.form;
o.form.next = NULL;
o.form.type = OC_FORM_OPT_SELECT;
if (!is_region) {
f.auth_id = (char *)"pulse_realm_choice";
f.authgroup_opt = &o;
f.authgroup_selection = 1;
f.message = _("Choose Pulse user realm:");
o.form.name = (char *)"realm_choice";
o.form.label = (char *)_("Realm:");
expected_avp_code = 0xd4e;
reply_code = 0xd50;
} else {
f.auth_id = (char *)"pulse_region_choice";
f.message = _("Choose Pulse region:");
o.form.name = (char *)"region_choice";
o.form.label = (char *)_("Region:");
expected_avp_code = 0xd51;
reply_code = 0xd52;
}
o.nr_choices = realms;
o.choices = calloc(realms, sizeof(*o.choices));
if (!o.choices)
return -ENOMEM;
while (l) {
if (parse_avp(vpninfo, &p, &l, &avp_p, &avp_len, &avp_flags,
&avp_vendor, &avp_code)) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to parse AVP\n"));
ret = -EINVAL;
goto out;
}
if (avp_vendor != VENDOR_JUNIPER2 || avp_code != expected_avp_code)
continue;
o.choices[i] = malloc(sizeof(struct oc_choice));
if (!o.choices[i]) {
ret = -ENOMEM;
goto out;
}
o.choices[i]->name = o.choices[i]->label = strndup(avp_p, avp_len);
if (!o.choices[i]->name) {
ret = -ENOMEM;
goto out;
}
i++;
}
/* We don't need to do anything on group changes. */
do {
ret = process_auth_form(vpninfo, &f);
} while (ret == OC_FORM_RESULT_NEWGROUP);
if (!ret)
buf_append_avp_string(reqbuf, reply_code, o.form._value);
out:
if (o.choices) {
for (i = 0; i < realms; i++) {
if (o.choices[i]) {
free(o.choices[i]->name);
free(o.choices[i]);
}
}
free(o.choices);
}
return ret;
}
static int pulse_request_session_kill(struct openconnect_info *vpninfo, struct oc_text_buf *reqbuf,
int sessions, unsigned char *eap)
{
uint8_t avp_flags;
uint32_t avp_code;
uint32_t avp_vendor;
int avp_len, avp_len2;
void *avp_p, *avp_p2;
struct oc_auth_form f;
struct oc_form_opt_select o;
int i = 0, ret;
void *p;
int l;
struct oc_text_buf *form_msg = buf_alloc();
char tmbuf[80];
struct tm tm;
l = load_be16(eap + 2) - 0x0c; /* Already validated */
p = eap + 0x0c;
memset(&f, 0, sizeof(f));
memset(&o, 0, sizeof(o));
f.auth_id = (char *)"pulse_session_kill";
f.opts = &o.form;
buf_append(form_msg, _("Session limit reached. Choose session to kill:\n"));
o.form.next = NULL;
o.form.type = OC_FORM_OPT_SELECT;
o.form.name = (char *)"session_choice";
o.form.label = (char *)_("Session:");
o.nr_choices = sessions;
o.choices = calloc(sessions, sizeof(*o.choices));
if (!o.choices) {
ret = -ENOMEM;
goto out;
}
while (l) {
char *from = NULL;
time_t when = 0;
char *sessid = NULL;
if (parse_avp(vpninfo, &p, &l, &avp_p, &avp_len, &avp_flags,
&avp_vendor, &avp_code)) {
badlist:
free(from);
free(sessid);
vpn_progress(vpninfo, PRG_ERR,
_("Failed to parse session list\n"));
ret = -EINVAL;
goto out;
}
if (avp_vendor != VENDOR_JUNIPER2 || avp_code != 0xd65)
continue;
while (avp_len) {
if (parse_avp(vpninfo, &avp_p, &avp_len, &avp_p2, &avp_len2,
&avp_flags, &avp_vendor, &avp_code))
goto badlist;
dump_avp(vpninfo, avp_flags, avp_vendor, avp_code, avp_p2, avp_len2);
if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd66) {
free(sessid);
sessid = strndup(avp_p2, avp_len2);
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd67) {
free(from);
from = strndup(avp_p2, avp_len2);
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd68 &&
avp_len2 == 8) {
when = load_be32((char *)avp_p2 + 4);
if (sizeof(time_t) > 4)
when |= ((uint64_t)load_be32(avp_p2)) << 32;
}
}
if (!from || !sessid || !when)
goto badlist;
if (0
#ifdef HAVE_LOCALTIME_S
|| !localtime_s(&tm, &when)
#endif
#ifdef HAVE_LOCALTIME_R
|| localtime_r(&when, &tm)
#endif
) {
strftime(tmbuf, sizeof(tmbuf), "%a, %d %b %Y %H:%M:%S %Z", &tm);
} else
snprintf(tmbuf, sizeof(tmbuf), "@%lu", (unsigned long)when);
buf_append(form_msg, " - %s from %s at %s\n", sessid, from, tmbuf);
free(from);
from = NULL;
o.choices[i] = malloc(sizeof(struct oc_choice));
if (!o.choices[i]) {
free(sessid);
ret = -ENOMEM;
goto out;
}
o.choices[i]->name = o.choices[i]->label = sessid;
i++;
}
ret = buf_error(form_msg);
if (ret)
goto out;
f.message = form_msg->data;
ret = process_auth_form(vpninfo, &f);
if (!ret)
buf_append_avp_string(reqbuf, 0xd69, o.form._value);
out:
if (o.choices) {
for (i = 0; i < sessions; i++) {
if (o.choices[i]) {
free(o.choices[i]->name);
free(o.choices[i]);
}
}
free(o.choices);
}
buf_free(form_msg);
return ret;
}
static int pulse_request_user_auth(struct openconnect_info *vpninfo, struct oc_text_buf *reqbuf,
uint8_t eap_ident, int prompt_flags, char *user_prompt, char *pass_prompt)
{
struct oc_auth_form f;
struct oc_form_opt o[2];
unsigned char eap_avp[23];
int l;
int ret;
memset(&f, 0, sizeof(f));
memset(o, 0, sizeof(o));
f.auth_id = (char *) ((prompt_flags & PROMPT_PRIMARY) ? "pulse_user" : "pulse_secondary");
f.opts = &o[1]; /* Point to password prompt in case that's all we use */
f.message = (prompt_flags & PROMPT_PRIMARY) ? _("Enter user credentials:") : _("Enter secondary credentials:");
if (prompt_flags & PROMPT_USERNAME) {
f.opts = &o[0];
o[0].next = NULL; /* Again, for now */
o[0].type = OC_FORM_OPT_TEXT;
o[0].name = (char *)"username";
if (user_prompt)
o[0].label = user_prompt;
else
o[0].label = (char *) ((prompt_flags & PROMPT_PRIMARY) ? _("Username:") : _("Secondary username:"));
}
if (prompt_flags & PROMPT_PASSWORD) {
/* Might be referenced from o[0] or directly from f.opts */
o[0].next = &o[1];
o[1].type = OC_FORM_OPT_PASSWORD;
o[1].name = (char *)"password";
if (pass_prompt)
o[1].label = pass_prompt;
else
o[1].label = (char *) ((prompt_flags & PROMPT_PRIMARY) ? _("Password:") : _("Secondary password:"));
}
ret = process_auth_form(vpninfo, &f);
if (ret)
goto out;
if (o[0]._value) {
buf_append_avp_string(reqbuf, 0xd6d, o[0]._value);
free_pass(&o[0]._value);
}
if (o[1]._value) {
l = strlen(o[1]._value);
if (l > 253) {
free_pass(&o[1]._value);
return -EINVAL;
}
} else {
/* Their client actually resubmits the primary password when
* a secondary password is requested. But it doesn't seem to
* be necessary; might even just be a bug. */
l = 0;
}
/* AVP flags+mandatory+length */
store_be32(eap_avp, AVP_CODE_EAP_MESSAGE);
store_be32(eap_avp + 4, (AVP_MANDATORY << 24) + sizeof(eap_avp) + l);
/* EAP header: code/ident/len */
eap_avp[8] = EAP_RESPONSE;
eap_avp[9] = eap_ident;
store_be16(eap_avp + 10, l + 15); /* EAP length */
store_be32(eap_avp + 12, EXPANDED_JUNIPER);
store_be32(eap_avp + 16, 2);
/* EAP Juniper/2 payload: 02 02 <len> <password> */
eap_avp[20] = eap_avp[21] = 0x02;
eap_avp[22] = l + 2; /* Why 2? */
buf_append_bytes(reqbuf, eap_avp, sizeof(eap_avp));
if (o[1]._value) {
buf_append_bytes(reqbuf, o[1]._value, l);
free_pass(&o[1]._value);
}
/* Padding */
if ((sizeof(eap_avp) + l) & 3) {
uint32_t pad = 0;
buf_append_bytes(reqbuf, &pad,
4 - ((sizeof(eap_avp) + l) & 3));
}
ret = 0;
out:
return ret;
}
static int pulse_request_pass_change(struct openconnect_info *vpninfo, struct oc_text_buf *reqbuf,
uint8_t eap_ident, int prompt_flags)
{
struct oc_auth_form f;
struct oc_form_opt o[3];
unsigned char eap_avp[23];
int l1, l2;
int ret;
memset(&f, 0, sizeof(f));
memset(o, 0, sizeof(o));
f.auth_id = (char *) ((prompt_flags & PROMPT_PRIMARY) ? "pulse_user_change" : "pulse_secondary_change");
f.opts = &o[0];
f.message = _("Password expired. Please change password:");
o[0].type = OC_FORM_OPT_PASSWORD;
o[0].name = (char *)"oldpass";
o[0].label = (char *) _("Current password:");
o[0].next = &o[1];
o[1].type = OC_FORM_OPT_PASSWORD;
o[1].name = (char *)"newpass1";
o[1].label = (char *) _("New password:");
o[1].next = &o[2];
o[2].type = OC_FORM_OPT_PASSWORD;
o[2].name = (char *)"newpass1";
o[2].label = (char *) _("Verify new password:");
retry:
free_pass(&o[0]._value);
free_pass(&o[1]._value);
free_pass(&o[2]._value);
ret = process_auth_form(vpninfo, &f);
if (ret)
goto out;
if (!o[0]._value || !o[1]._value || !o[2]._value) {
vpn_progress(vpninfo, PRG_DEBUG, _("Passwords not provided.\n"));
ret = -EINVAL;
goto out;
}
if (strcmp(o[1]._value, o[2]._value)) {
vpn_progress(vpninfo, PRG_ERR, _("Passwords do not match.\n"));
goto retry;
}
l1 = strlen(o[0]._value);
if (l1 > 253) {
vpn_progress(vpninfo, PRG_ERR, _("Current password too long.\n"));
goto retry;
}
l2 = strlen(o[1]._value);
if (l2 > 253) {
vpn_progress(vpninfo, PRG_ERR, _("New password too long.\n"));
goto retry;
}
/* AVP flags+mandatory+length */
store_be32(eap_avp, AVP_CODE_EAP_MESSAGE);
store_be32(eap_avp + 4, (AVP_MANDATORY << 24) + sizeof(eap_avp) + l1 + 2 + l2);
/* EAP header: code/ident/len */
eap_avp[8] = EAP_RESPONSE;
eap_avp[9] = eap_ident;
store_be16(eap_avp + 10, l1 + l2 + 17); /* EAP length */
store_be32(eap_avp + 12, EXPANDED_JUNIPER);
store_be32(eap_avp + 16, 2);
/* EAP Juniper/2 payload: 02 02 <len> <password> */
eap_avp[20] = eap_avp[21] = 0x02;
eap_avp[22] = l1 + 2; /* Why 2? */
buf_append_bytes(reqbuf, eap_avp, sizeof(eap_avp));
buf_append_bytes(reqbuf, o[0]._value, l1);
/* Reuse eap_avp to append the new password */
eap_avp[0] = 0x03;
eap_avp[1] = l2 + 2;
buf_append_bytes(reqbuf, eap_avp, 2);
buf_append_bytes(reqbuf, o[1]._value, l2);
/* Padding */
if ((sizeof(eap_avp) + l1 + 2 + l2) & 3) {
uint32_t pad = 0;
buf_append_bytes(reqbuf, &pad,
4 - ((sizeof(eap_avp) + l1 + 2 + l2) & 3));
}
ret = 0;
out:
free_pass(&o[0]._value);
free_pass(&o[1]._value);
free_pass(&o[2]._value);
return ret;
}
static int pulse_request_gtc(struct openconnect_info *vpninfo, struct oc_text_buf *reqbuf,
uint8_t eap_ident, int prompt_flags, char *user_prompt, char *pass_prompt,
char *gtc_prompt)
{
struct oc_auth_form f;
struct oc_form_opt o[2];
int ret;
memset(&f, 0, sizeof(f));
memset(o, 0, sizeof(o));
f.auth_id = (char *)"pulse_gtc";
/* The first prompt always seems to be 'Enter SecurID PASSCODE:' and is ignored. */
if (gtc_prompt && (prompt_flags & PROMPT_GTC_NEXT))
f.message = gtc_prompt;
else
f.message = _("Token code request:");
if (prompt_flags & PROMPT_USERNAME) {
f.opts = &o[0];
o[0].next = &o[1];
o[0].type = OC_FORM_OPT_TEXT;
o[0].name = (char *)"username";
if (user_prompt)
o[0].label = user_prompt;
else
o[0].label = (char *) ((prompt_flags & PROMPT_PRIMARY) ? _("Username:") : _("Secondary username:"));
} else {
f.opts = &o[1];
}
o[1].type = OC_FORM_OPT_PASSWORD;
o[1].name = (char *)"tokencode";
/*
* For retries, we have a gtc_prompt and we just say 'Please enter response:'.
* Otherwise, use the pass_prompt if it exists, or create our own based
* on whether it's primary authentication or not.
*/
if (prompt_flags & PROMPT_GTC_NEXT) {
o[1].label = _("Please enter response:");
} else if (pass_prompt) {
o[1].label = pass_prompt;
} else if (prompt_flags & PROMPT_PRIMARY) {
o[1].label = _("Please enter your passcode:");
} else {
o[1].label = _("Please enter your secondary token information:");
}
if (!can_gen_tokencode(vpninfo, &f, &o[1]))
o[1].type = OC_FORM_OPT_TOKEN;
ret = process_auth_form(vpninfo, &f);
if (ret)
goto out;
ret = do_gen_tokencode(vpninfo, &f);
if (ret)
goto out;
if (o[0]._value) {
buf_append_avp_string(reqbuf, 0xd6d, o[0]._value);
free_pass(&o[0]._value);
}
if (o[1]._value) {
unsigned char eap_avp[13];
int l = strlen(o[1]._value);
if (l > 253) {
free_pass(&o[1]._value);
ret = -EINVAL;
goto out;
}
/* AVP flags+mandatory+length */
store_be32(eap_avp, AVP_CODE_EAP_MESSAGE);
store_be32(eap_avp + 4, (AVP_MANDATORY << 24) + sizeof(eap_avp) + l);
/* EAP header: code/ident/len */
eap_avp[8] = EAP_RESPONSE;
eap_avp[9] = eap_ident;
store_be16(eap_avp + 10, l + 5); /* EAP length */
eap_avp[12] = EAP_TYPE_GTC;
buf_append_bytes(reqbuf, eap_avp, sizeof(eap_avp));
buf_append_bytes(reqbuf, o[1]._value, l);
/* Padding */
if ((sizeof(eap_avp) + l) & 3) {
uint32_t pad = 0;
buf_append_bytes(reqbuf, &pad,
4 - ((sizeof(eap_avp) + l) & 3));
}
free_pass(&o[1]._value);
} else {
ret = -EINVAL;
goto out;
}
ret = 0;
out:
return ret;
}
static int dup_prompt(char **p, uint8_t *avp_p, int avp_len)
{
char *ret = NULL;
free(*p);
*p = NULL;
if (!avp_len) {
return 0;
} else if (avp_p[avp_len - 1] == ':') {
ret = strndup((char *)avp_p, avp_len);
} else {
ret = calloc(avp_len + 2, 1);
if (ret) {
memcpy(ret, avp_p, avp_len);
ret[avp_len] = ':';
ret[avp_len + 1] = 0;
}
}
if (ret) {
*p = ret;
return 0;
} else
return -ENOMEM;
}
/*
* There is complex client-side logic around when to (re)prompt for a password.
* The first prompt always needs it, whether it's a TokenCode request (EAP-06)
* or a normal password request (EAP-Expanded-Juniper/2). If a password request
* fails (0x81) then we prompt for username again in case that's what was wrong.
*
* If there's a secondary password request, it might need a *secondary* username.
* The first request comes with a 0xd73 AVP which has a single integer:
* 1: prompt for both username and password.
* 3: Prompt for password only.
* 5: Prompt for username only.
*
*/
/* IF-T/TLS session establishment is the same for both pulse_obtain_cookie() and
* pulse_connect(). We have to go through the EAP phase of the connection either
* way; it's just that we might do it with just the cookie, or we might need to
* use the password/cert etc. */
static int pulse_authenticate(struct openconnect_info *vpninfo, int connecting)
{
int ret;
struct oc_text_buf *reqbuf;
unsigned char bytes[16384];
int eap_ofs;
uint8_t eap_ident, eap2_ident = 0;
uint8_t avp_flags;
uint32_t avp_code;
uint32_t avp_vendor;
int avp_len, l;
void *avp_p, *p;
unsigned char *eap;
int cookie_found = 0;
int j2_found = 0, realms_found = 0, realm_entry = 0, old_sessions = 0, gtc_found = 0, regions_found = 0;
uint8_t j2_code = 0;
void *ttls = NULL;
char *user_prompt = NULL, *pass_prompt = NULL, *gtc_prompt = NULL, *signin_prompt = NULL;
char *user2_prompt = NULL, *pass2_prompt = NULL;
int prompt_flags = PROMPT_PRIMARY | PROMPT_USERNAME | PROMPT_PASSWORD;
ret = openconnect_open_https(vpninfo);
if (ret)
return ret;
reqbuf = buf_alloc();
buf_append(reqbuf, "GET /%s HTTP/1.1\r\n", vpninfo->urlpath ?: "");
http_common_headers(vpninfo, reqbuf);
buf_append(reqbuf, "Content-Type: EAP\r\n");
buf_append(reqbuf, "Upgrade: IF-T/TLS 1.0\r\n");
buf_append(reqbuf, "Content-Length: 0\r\n");
buf_append(reqbuf, "\r\n");
if (buf_error(reqbuf)) {
vpn_progress(vpninfo, PRG_ERR,
_("Error creating Pulse connection request\n"));
ret = buf_error(reqbuf);
goto out;
}
if (vpninfo->dump_http_traffic)
dump_buf(vpninfo, '>', reqbuf->data);
ret = vpninfo->ssl_write(vpninfo, reqbuf->data, reqbuf->pos);
if (ret < 0)
goto out;
ret = process_http_response(vpninfo, 1, NULL, reqbuf);
if (ret < 0)
goto out;
if (ret != 101) {
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected %d result from server\n"),
ret);
ret = -EINVAL;
goto out;
}
vpninfo->ift_seq = 0;
/* IF-T version request. */
buf_truncate(reqbuf);
buf_append_ift_hdr(reqbuf, VENDOR_TCG, IFT_VERSION_REQUEST);
/* Min version 1, max 2, preferred 2. Not that we actually do v2; the auth is
* still all IF-T/TLS v1. But the server won't offer us HMAC-SHA256 unless we
* advertise v2 */
buf_append_be32(reqbuf, 0x00010202);
ret = send_ift_packet(vpninfo, reqbuf);
if (ret)
goto out;
ret = recv_ift_packet(vpninfo, (void *)bytes, sizeof(bytes));
if (ret < 0)
goto out;
if (ret != 0x14 || (load_be32(bytes) & 0xffffff) != VENDOR_TCG ||
load_be32(bytes + 4) != IFT_VERSION_RESPONSE ||
load_be32(bytes + 8) != 0x14) {
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected response to IF-T/TLS version negotiation:\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', (void *)bytes, ret);
ret = -EINVAL;
goto out;
}
vpn_progress(vpninfo, PRG_TRACE, _("IF-T/TLS version from server: %d\n"),
bytes[0x13]);
/* Client information packet over IF-T/TLS */
buf_truncate(reqbuf);
buf_append_ift_hdr(reqbuf, VENDOR_JUNIPER, 0x88);
buf_append(reqbuf, "clientHostName=%s", vpninfo->localname);
bytes[0] = 0;
if (vpninfo->peer_addr && vpninfo->peer_addr->sa_family == AF_INET6) {
struct sockaddr_in6 a;
socklen_t l = sizeof(a);
if (!getsockname(vpninfo->ssl_fd, (void *)&a, &l))
inet_ntop(AF_INET6, &a.sin6_addr, (void *)bytes, sizeof(bytes));
} else if (vpninfo->peer_addr && vpninfo->peer_addr->sa_family == AF_INET) {
struct sockaddr_in a;
socklen_t l = sizeof(a);
if (!getsockname(vpninfo->ssl_fd, (void *)&a, &l))
inet_ntop(AF_INET, &a.sin_addr, (void *)bytes, sizeof(bytes));
}
if (bytes[0])
buf_append(reqbuf, " clientIp=%s", bytes);
buf_append(reqbuf, "\n%c", 0);
ret = send_ift_packet(vpninfo, reqbuf);
if (ret)
goto out;
/* Await start of auth negotiations */
ret = recv_ift_packet(vpninfo, (void *)bytes, sizeof(bytes));
if (ret < 0)
goto out;
/* Basically an empty IF-T/TLS auth challenge packet of type Juniper/1,
* without even an EAP header in the payload. */
if (!valid_ift_auth(bytes, ret) || ret != 0x14) {
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected IF-T/TLS authentication challenge:\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', (void *)bytes, ret);
ret = -EINVAL;
goto out;
}
/* Start by sending an EAP Identity of 'anonymous'. At this point we
* aren't yet very far down the rabbithole...
*
* --------------------------------------
* | TCP/IP |
* |------------------------------------|
* | TLS |
* |------------------------------------|
* | IF-T/TLS |
* |------------------------------------|
* | EAP (IF-T/TLS Auth Type Juniper/1) |
* |------------------------------------|
* | EAP-Identity |
* --------------------------------------
*/
buf_truncate(reqbuf);
buf_append_ift_hdr(reqbuf, VENDOR_TCG, IFT_CLIENT_AUTH_RESPONSE);
buf_append_be32(reqbuf, JUNIPER_1); /* IF-T/TLS Auth Type */
eap_ofs = buf_append_eap_hdr(reqbuf, EAP_RESPONSE, 1, EAP_TYPE_IDENTITY, 0);
buf_append(reqbuf, "anonymous");
buf_fill_eap_len(reqbuf, eap_ofs);
ret = send_ift_packet(vpninfo, reqbuf);
if (ret)
goto out;
/*
* Phase 2 may continue directly with EAP within IF-T/TLS, or if certificate
* auth is enabled, the server may use EAP-TTLS. In that case, we end up
* with EAP within EAP-Message AVPs within EAP-TTLS within IF-T/TLS.
* The send_eap_packet() and recv_eap_packet() functions cope with both
* formats. The buffers have 0x14 bytes of header space, to allow for
* the IF-T/TLS header which is the larger of the two.
*
* --------------------------------------
* | TCP/IP |
* |------------------------------------|
* | TLS |
* |------------------------------------|
* | IF-T/TLS |
* |------------------------------------|
* | EAP (IF-T/TLS Auth Type Juniper/1) |
* |------------------ |
* | EAP-TTLS | |
* |-----------------| (or directly) |
* | EAP-Message AVP | |
* |-----------------|------------------|
* | EAP-Juniper-1 |
* --------------------------------------
*/
ret = recv_ift_packet(vpninfo, (void *)bytes, sizeof(bytes));
if (ret < 0)
goto out;
/* Check EAP header and length */
if (!valid_ift_auth_eap(bytes, ret)) {
bad_ift:
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected IF-T/TLS authentication challenge:\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', (void *)bytes, ret);
ret = -EINVAL;
goto out;
}
/*
* We know the packet is valid at least down to the first layer of
* EAP in the diagram above, directly within the IF-T/TLS Auth Type
* of Juniper/1. Now, disambiguate between the two cases where the
* diagram diverges. Is it EAP-TTLS or is it EAP-Juniper-1 directly?
*/
if (valid_ift_auth_eap_exj1(bytes, ret)) {
eap = bytes + 0x14;
} else {
/* If it isn't that, it'd better be EAP-TTLS... */
if (bytes[0x18] != EAP_TYPE_TTLS)
goto bad_ift;
vpninfo->ttls_eap_ident = bytes[0x15];
vpninfo->ttls_recvbuf = malloc(TLS_RECORD_MAX);
if (!vpninfo->ttls_recvbuf)
return -ENOMEM;
vpninfo->ttls_recvlen = 0;
vpninfo->ttls_recvpos = 0;
vpninfo->ttls_msgleft = 0;
ttls = establish_eap_ttls(vpninfo);
if (!ttls) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to establish EAP-TTLS session\n"));
ret = -EINVAL;
goto out;
}
/* Resend the EAP Identity 'anonymous' packet within EAP-TTLS */
ret = send_eap_packet(vpninfo, ttls, reqbuf);
if (ret)
goto out;
/*
* The recv_eap_packet() function receives and validates the EAP
* packet of type Extended Juniper-1, either natively or within
* EAP-TTLS according to whether 'ttls' is set.
*/
eap = recv_eap_packet(vpninfo, ttls, bytes, sizeof(bytes));
if (!eap) {
ret = -EIO;
goto out;
}
}
/* Now we (hopefully) have the server information packet, in an EAP request
* from the server. Either it was received directly in IF-T/TLS, or within
* an EAP-Message within EAP-TTLS. Either way, the EAP message we're
* interested in will be at offset 0x14 in the packet, its header will
* have been checked, and is Expanded Juniper/1, and its payload thus
* starts at 0x20. And its length is sufficient that we won't underflow */
eap_ident = eap[1];
l = load_be16(eap + 2) - 0x0c; /* Already validated */
p = eap + 0x0c;
/* We don't actually use anything we get here. Typically it
* contains Juniper/0xd49 and Juniper/0xd4a word AVPs, and
* a Juniper/0xd56 AVP with server licensing information. */
while (l) {
if (parse_avp(vpninfo, &p, &l, &avp_p, &avp_len, &avp_flags,
&avp_vendor, &avp_code)) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to parse AVP\n"));
bad_eap:
dump_buf_hex(vpninfo, PRG_ERR, 'E', eap, load_be16(eap + 2));
ret = -EINVAL;
goto out;
}
dump_avp(vpninfo, avp_flags, avp_vendor, avp_code, avp_p, avp_len);
}
/* Present the client information and auth cookie */
buf_truncate(reqbuf);
buf_append_ift_hdr(reqbuf, VENDOR_TCG, IFT_CLIENT_AUTH_RESPONSE);
buf_append_be32(reqbuf, JUNIPER_1); /* IF-T/TLS Auth Type */
eap_ofs = buf_append_eap_hdr(reqbuf, EAP_RESPONSE, eap_ident, EAP_TYPE_EXPANDED, 1);
#if 0
/* Their client sends a lot of other stuff here, which we don't
* understand and which doesn't appear to be mandatory. So leave
* it out for now until/unless it becomes necessary. */
buf_append_avp_be32(reqbuf, 0xd49, 3);
buf_append_avp_be32(reqbuf, 0xd61, 0);
buf_append_avp_string(reqbuf, 0xd5e, "Windows");
buf_append_avp_string(reqbuf, 0xd70, "Pulse-Secure/9.0.3.1667 (Windows Server 2016) Pulse/9.0.3.1667");
buf_append_avp_string(reqbuf, 0xd63, "\xac\x1e\x8a\x78\x2d\x96\x45\x69\xb7\x7b\x80\x0f\xb7\x39\x2e\x41");
buf_append_avp_string(reqbuf, 0xd64, "\x1a\x3d\x9f\xa4\x07\xd9\xcb\x40\x9d\x61\x6a\x7a\x89\x24\x9b\x15");
buf_append_avp_string(reqbuf, 0xd5f, "en-US");
buf_append_avp_string(reqbuf, 0xd6c, "\x02\xe9\xa7\x51\x92\x4e");
buf_append_avp_be32(reqbuf, 0xd84, 0);
#else
/* XX: "Only the Pulse client supports IPv6", both according to user reports and
* https://help.ivanti.com/ps/help/en_US/PCS/9.1R14/ag/network_n_host_admin.htm#network_and_host_administration_1399867268_681155
*
* Therefore, unless IPv6 is explicitly disabled, we need to spoof
* a "Pulse-Secure/" version string here. Only use the user-provided
* UA string as is if it already matches this format.
*
* A certain minimum client version is apparently required to trigger the sending
* of this flag as well. No official docs have been found, but 22.2.1.1295 works
* (see https://gitlab.com/openconnect/openconnect/-/issues/506#note_1146848739).
*/
if (vpninfo->disable_ipv6 || !strncmp(vpninfo->useragent, "Pulse-Secure/", 13))
buf_append_avp_string(reqbuf, 0xd70, vpninfo->useragent);
else {
char *pulse_version;
if (asprintf(&pulse_version, "Pulse-Secure/22.2.1.1295 (%s)", vpninfo->useragent) < 0)
return -ENOMEM;
buf_append_avp_string(reqbuf, 0xd70, pulse_version);
free(pulse_version);
}
#endif
if (vpninfo->cookie)
buf_append_avp_string(reqbuf, 0xd53, vpninfo->cookie);
buf_fill_eap_len(reqbuf, eap_ofs);
ret = send_eap_packet(vpninfo, ttls, reqbuf);
if (ret)
goto out;
/* Await start of auth negotiations */
auth_response:
free(signin_prompt);
signin_prompt = NULL;
/* If there's a follow-on GTC prompt, remember it's not the first */
if (gtc_found)
prompt_flags |= PROMPT_GTC_NEXT;
else
prompt_flags &= ~PROMPT_GTC_NEXT;
realm_entry = realms_found = j2_found = old_sessions = 0, gtc_found = 0, regions_found = 0;
eap = recv_eap_packet(vpninfo, ttls, (void *)bytes, sizeof(bytes));
if (!eap) {
ret = -EIO;
goto out;
}
eap_ident = eap[1];
l = load_be16(eap + 2) - 0x0c; /* Already validated */
p = eap + 0x0c;
while (l) {
if (parse_avp(vpninfo, &p, &l, &avp_p, &avp_len, &avp_flags,
&avp_vendor, &avp_code)) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to parse AVP\n"));
goto bad_eap;
}
dump_avp(vpninfo, avp_flags, avp_vendor, avp_code, avp_p, avp_len);
/* It's a bit late for this given that we don't get it until after
* we provide the password. */
if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd55) {
char md5buf[MD5_SIZE * 2 + 1];
get_cert_md5_fingerprint(vpninfo, vpninfo->peer_cert, md5buf);
if (avp_len != MD5_SIZE * 2 || strncasecmp(avp_p, md5buf, MD5_SIZE * 2)) {
/* This actually happens in the wild and the official clients don't seem to
* care. It's too late because we've already authenticated at this point,
* and it's only MD5 anyway. I find it hard to care. Just whine and continue
* anyway. */
vpn_progress(vpninfo, PRG_INFO,
_("WARNING: Server provided certificate MD5 does not match its actual certificate.\n"));
continue;
}
}
if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd65) {
old_sessions++;
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd60) {
uint32_t failcode;
if (avp_len != 4)
goto auth_unknown;
failcode = load_be32(avp_p);
if (failcode == 0x0d) {
vpn_progress(vpninfo, PRG_ERR,
_("Authentication failure: Account locked out\n"));
} else if (failcode == 0x0e) {
vpn_progress(vpninfo, PRG_ERR,
_("Authentication failure: Client certificate required\n"));
} else {
vpn_progress(vpninfo, PRG_ERR,
_("Authentication failure: Code 0x%02x\n"),
failcode);
}
ret = -EPERM;
goto out;
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd80) {
dup_prompt(&user_prompt, avp_p, avp_len);
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd81) {
dup_prompt(&pass_prompt, avp_p, avp_len);
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd82) {
dup_prompt(&user2_prompt, avp_p, avp_len);
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd83) {
dup_prompt(&pass2_prompt, avp_p, avp_len);
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd73) {
uint32_t val;
if (avp_len != 4)
goto auth_unknown;
val = load_be32(avp_p);
switch (val) {
case 1: /* Prompt for both username and password. */
prompt_flags = PROMPT_PASSWORD | PROMPT_USERNAME;
break;
case 3: /* Prompt for password.*/
case 15:
prompt_flags = PROMPT_PASSWORD;
break;
case 5: /* Prompt for username.*/
prompt_flags = PROMPT_USERNAME;
break;
default:
/* It does no harm to submit both, as anything unwanted is ignored. */
vpn_progress(vpninfo, PRG_ERR,
_("Unknown D73 prompt value 0x%x. Will prompt for both username and password.\n"),
val);
vpn_progress(vpninfo, PRG_ERR,
_("Please report this value and the behaviour of the official client.\n"));
prompt_flags = PROMPT_PASSWORD | PROMPT_USERNAME;
break;
}
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd7b) {
free(signin_prompt);
signin_prompt = strndup(avp_p, avp_len);
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd4e) {
realms_found++;
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd4f) {
realm_entry++;
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd51) {
regions_found++;
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd5c) {
if (avp_len != 4)
goto auth_unknown;
uint32_t val = load_be32(avp_p);
if (val)
vpninfo->auth_expiration = time(NULL) + val;
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd75) {
if (avp_len != 4)
goto auth_unknown;
uint32_t val = load_be32(avp_p);
if (val)
vpninfo->idle_timeout = val;
} else if (avp_vendor == VENDOR_JUNIPER2 && avp_code == 0xd53) {
free(vpninfo->cookie);
vpninfo->cookie = strndup(avp_p, avp_len);
cookie_found = 1;
/* DSID cookie may be needed for fallback to oNCP/Juniper logout */
http_add_cookie(vpninfo, "DSID", vpninfo->cookie, 1 /* replace */);
} else if (!avp_vendor && avp_code == AVP_CODE_EAP_MESSAGE) {
char *avp_c = avp_p;
/* EAP within AVP within EAP within IF-T/TLS. Check EAP header. */
if (avp_len < 5 || avp_c[0] != EAP_REQUEST ||
load_be16(avp_c + 2) != avp_len)
goto auth_unknown;
eap2_ident = avp_c[1];
if (avp_c[4] == EAP_TYPE_GTC) {
gtc_found = 1;
free(gtc_prompt);
gtc_prompt = strndup(avp_c + 5, avp_len - 5);
} else if (avp_len >= 13 && load_be32(avp_c + 4) == EXPANDED_JUNIPER) {
switch (load_be32(avp_c + 8)) {
case 2: /* Expanded Juniper/2: password */
j2_found = 1;
j2_code = avp_c[12];
if (j2_code == J2_PASSREQ || j2_code == J2_PASSRETRY || j2_code == J2_PASSCHANGE) {
if (avp_len != 13)
goto auth_unknown;
/* Precisely one byte, which is j2_code. OK. */
} else if (j2_code == J2_PASSFAIL) {
/*
< 0000: 00 00 55 97 00 00 00 05 00 00 00 84 00 00 01 fa |..U.............|
< 0010: 00 0a 4c 01 01 05 00 70 fe 00 0a 4c 00 00 00 01 |..L....p...L....|
< 0020: 00 00 00 4f 40 00 00 62 01 02 00 5a fe 00 0a 4c |...O@..b...Z...L|
< 0030: 00 00 00 02 c5 01 4d 43 6f 75 6c 64 20 6e 6f 74 |......MCould not|
< 0040: 20 63 68 61 6e 67 65 20 70 61 73 73 77 6f 72 64 | change password|
< 0050: 2e 20 4e 65 77 20 70 61 73 73 77 6f 72 64 20 6d |. New password m|
< 0060: 75 73 74 20 62 65 20 61 74 20 6c 65 61 73 74 20 |ust be at least |
< 0070: 34 20 63 68 61 72 61 63 74 65 72 73 20 6c 6f 6e |4 characters lon|
< 0080: 67 2e 00 00 |g...|
*/
if (avp_len > 15 && avp_c[13] == 0x01 && avp_c[14] == avp_len - 13) {
/* Failure message. */
vpn_progress(vpninfo, PRG_ERR,
_("Authentication failure: %.*s\n"), avp_len - 15, avp_c + 15);
ret = -EIO;
goto out;
} else
goto auth_unknown;
}
break;
case 3: /* TNCC */
vpn_progress(vpninfo, PRG_ERR,
_("Pulse server requested Host Checker; not yet supported\n"
"Try Juniper mode (--protocol=nc)\n"));
goto bad_eap;
default:
goto auth_unknown;
}
} else {
uint32_t eaptype = (unsigned char)avp_c[4];
if (eaptype == EAP_TYPE_EXPANDED && avp_len >= 8)
eaptype = load_be32(avp_c + 4);
if (eaptype == EAP_TYPE_TLS && !vpninfo->certinfo[0].cert)
vpn_progress(vpninfo, PRG_ERR,
_("Pulse server is trying to authenticate via EAP-TLS over EAP-TTLS, which we\n"
"do not know how to handle. This can happen when the server OPTIONALLY accepts\n"
"TLS client certificates, but your authentication does not require one.\n"
"You may be able to work around it by spoofing a very old Pulse client with:\n"
" --useragent=\"Pulse-Secure/3.0.0\"\n"
"Please report results to <%s>.\n"),
"openconnect-devel@lists.infradead.org");
else
vpn_progress(vpninfo, PRG_ERR,
_("Pulse server requested unexpected EAP type 0x%x\n"), eaptype);
goto bad_eap;
}
} else if (avp_flags & AVP_MANDATORY)
goto auth_unknown;
}
/* We want it to be precisely one type of request, not a mixture. */
if (realm_entry + !!realms_found + !!regions_found + j2_found + gtc_found + cookie_found + !!old_sessions != 1 &&
!signin_prompt) {
auth_unknown:
vpn_progress(vpninfo, PRG_ERR,
_("Unhandled Pulse authentication packet, or authentication failure\n"));
goto bad_eap;
}
/* Prepare next response packet */
buf_truncate(reqbuf);
buf_append_ift_hdr(reqbuf, VENDOR_TCG, IFT_CLIENT_AUTH_RESPONSE);
buf_append_be32(reqbuf, JUNIPER_1); /* IF-T/TLS Auth Type */
eap_ofs = buf_append_eap_hdr(reqbuf, EAP_RESPONSE, eap_ident, EAP_TYPE_EXPANDED, 1);
if (!cookie_found) {
/* No user interaction when called from pulse_connect().
* We expect the cookie to work. */
if (connecting) {
vpn_progress(vpninfo, PRG_ERR,
_("Pulse authentication cookie not accepted\n"));
ret = -EPERM;
goto out;
}
if (realm_entry) {
vpn_progress(vpninfo, PRG_TRACE, _("Pulse realm entry\n"));
ret = pulse_request_realm_entry(vpninfo, reqbuf);
if (ret)
goto out;
} else if (realms_found) {
vpn_progress(vpninfo, PRG_TRACE, _("Pulse realm choice\n"));
ret = pulse_request_realm_choice(vpninfo, reqbuf, realms_found, eap, 0);
if (ret)
goto out;
} else if (regions_found) {
vpn_progress(vpninfo, PRG_TRACE, _("Pulse region choice\n"));
ret = pulse_request_realm_choice(vpninfo, reqbuf, regions_found, eap, 1);
if (ret)
goto out;
} else if (j2_found) {
vpn_progress(vpninfo, PRG_TRACE,
_("Pulse password auth request, code 0x%02x\n"),
j2_code);
if (j2_code == J2_PASSCHANGE) {
ret = pulse_request_pass_change(vpninfo, reqbuf, eap2_ident,
prompt_flags);
} else if (j2_code == J2_PASSREQ || j2_code == J2_PASSRETRY) {
/* Present user/password form to user */
ret = pulse_request_user_auth(vpninfo, reqbuf, eap2_ident, prompt_flags,
(prompt_flags & PROMPT_PRIMARY) ? user_prompt : user2_prompt,
(prompt_flags & PROMPT_PRIMARY) ? pass_prompt : pass2_prompt);
} else {
vpn_progress(vpninfo, PRG_ERR,
_("Pulse password request with unknown code 0x%02x. Please report.\n"),
j2_code);
ret = -EINVAL;
}
if (ret)
goto out;
} else if (gtc_found) {
vpn_progress(vpninfo, PRG_TRACE,
_("Pulse password general token code request\n"));
/* Present user/password form to user */
ret = pulse_request_gtc(vpninfo, reqbuf, eap2_ident, prompt_flags,
(prompt_flags & PROMPT_PRIMARY) ? user_prompt : user2_prompt,
(prompt_flags & PROMPT_PRIMARY) ? pass_prompt : pass2_prompt,
gtc_prompt);
if (ret)
goto out;
} else if (old_sessions) {
vpn_progress(vpninfo, PRG_TRACE,
_("Pulse session limit, %d sessions\n"),
old_sessions);
ret = pulse_request_session_kill(vpninfo, reqbuf, old_sessions, eap);
if (ret)
goto out;
} else if (signin_prompt) {
buf_append_avp_be32(reqbuf, 0xd7c, 1);
} else {
vpn_progress(vpninfo, PRG_ERR,
_("Unhandled Pulse auth request\n"));
goto bad_eap;
}
/* If we get here, something has filled in the next response */
buf_fill_eap_len(reqbuf, eap_ofs);
ret = send_eap_packet(vpninfo, ttls, reqbuf);
if (ret)
goto out;
goto auth_response;
}
/* We're done, but need to send an empty response to the above information
* in order that the EAP session can complete with 'success'. Not quite
* sure why they didn't send it as payload on the success frame, mind you. */
buf_fill_eap_len(reqbuf, eap_ofs);
ret = send_eap_packet(vpninfo, ttls, reqbuf);
if (ret)
goto out;
if (ttls) {
/* Normally we don't actually send the EAP-TTLS frame until
* we're waiting for a response, which allows us to coalesce.
* This time, we need to flush the outbound frames. The empty
* EAP response (within EAP-TTLS) causes the server to close
* the EAP-TTLS session and the next response is plain IF-T/TLS
* IFT_CLIENT_AUTH_SUCCESS just like the non-certificate mode. */
pulse_eap_ttls_recv(vpninfo, NULL, 0);
}
ret = recv_ift_packet(vpninfo, (void *)bytes, sizeof(bytes));
if (ret < 0)
goto out;
if (!valid_ift_success(bytes, ret)) {
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected response instead of IF-T/TLS auth success:\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', (void *)bytes, ret);
ret = -EINVAL;
goto out;
}
ret = 0;
out:
if (ret)
openconnect_close_https(vpninfo, 0);
buf_free(reqbuf);
if (ttls)
destroy_eap_ttls(vpninfo, ttls);
buf_free(vpninfo->ttls_pushbuf);
vpninfo->ttls_pushbuf = NULL;
free(vpninfo->ttls_recvbuf);
vpninfo->ttls_recvbuf = NULL;
free(user_prompt);
free(pass_prompt);
free(user2_prompt);
free(pass2_prompt);
free(gtc_prompt);
free(signin_prompt);
return ret;
}
static void buf_append_ttls_headers(struct openconnect_info *vpninfo, struct oc_text_buf *buf, uint8_t flags)
{
buf_append_ift_hdr(buf, VENDOR_TCG, IFT_CLIENT_AUTH_RESPONSE);
buf_append_be32(buf, JUNIPER_1); /* IF-T/TLS Auth Type */
buf_append_eap_hdr(buf, EAP_RESPONSE, 0 /*vpninfo->ttls_eap_ident*/,
EAP_TYPE_TTLS, 0);
/* Flags byte for EAP-TTLS */
buf_append_bytes(buf, &flags, 1);
}
int pulse_eap_ttls_send(struct openconnect_info *vpninfo, const void *data, int len)
{
struct oc_text_buf *buf = vpninfo->ttls_pushbuf;
if (!buf) {
buf = vpninfo->ttls_pushbuf = buf_alloc();
if (!buf)
return -ENOMEM;
}
/* We concatenate sent data into a single EAP-TTLS frame which is
* sent just before we actually need to read something. */
if (!buf->pos)
buf_append_ttls_headers(vpninfo, buf, 0);
buf_append_bytes(buf, data, len);
return len;
}
int pulse_eap_ttls_recv(struct openconnect_info *vpninfo, void *data, int len)
{
struct oc_text_buf *pushbuf;
int ret;
if (!len && (vpninfo->ttls_recvlen || vpninfo->ttls_msgleft)) {
vpn_progress(vpninfo, PRG_ERR,
_("EAP-TTLS failure: Flushing output with pending input bytes\n"));
return -EIO;
}
if (!vpninfo->ttls_recvlen) {
uint8_t flags;
if (vpninfo->ttls_msgleft) {
/* Fragments left to receive of current message.
* Send an Acknowledge frame */
pushbuf = buf_alloc();
buf_append_ttls_headers(vpninfo, pushbuf, 0);
} else {
/* Send the pending outbound bytes as a single message */
pushbuf = vpninfo->ttls_pushbuf;
vpninfo->ttls_pushbuf = NULL;
}
if (buf_error(pushbuf))
return buf_free(pushbuf);
/* This can never happen. We *always* put the header in. */
if (pushbuf->pos < 0x1a) {
vpn_progress(vpninfo, PRG_ERR,
_("Error creating EAP-TTLS buffer\n"));
buf_free(pushbuf);
return -EIO;
}
/* Handle outbound fragmentation if necessary */
if (pushbuf->pos > TTLS_MAXFRAG + 0x1a) {
struct oc_text_buf *frag = buf_alloc();
uint8_t flags = TTLS_MOREFRAGS | TTLS_LENGTH;
uint32_t remaining;
char *msg;
if (buf_error(frag)) {
buf_free(pushbuf);
return buf_free(frag);
}
remaining = pushbuf->pos - 0x1a;
msg = pushbuf->data + 0x1a;
do {
buf_append_ttls_headers(vpninfo, frag, flags);
if (flags & TTLS_LENGTH) {
buf_append_be32(frag, remaining);
flags &= ~TTLS_LENGTH;
}
buf_append_bytes(frag, msg, TTLS_MAXFRAG);
msg += TTLS_MAXFRAG;
remaining -= TTLS_MAXFRAG;
if (buf_error(frag)) {
buf_free(pushbuf);
return buf_free(frag);
}
frag->data[0x15] = vpninfo->ttls_eap_ident;
buf_fill_eap_len(frag, 0x14);
ret = send_ift_packet(vpninfo, frag);
if (ret) {
buf_free(pushbuf);
buf_free(frag);
return ret;
}
buf_truncate(frag);
ret = vpninfo->ssl_read(vpninfo, (void *)vpninfo->ttls_recvbuf,
TLS_RECORD_MAX);
if (ret < 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to read EAP-TTLS Acknowledge: %s\n"),
strerror(-ret));
buf_free(pushbuf);
buf_free(frag);
return ret;
}
if (ret > 0 && vpninfo->dump_http_traffic) {
vpn_progress(vpninfo, PRG_TRACE,
_("Read %d bytes of IF-T/TLS EAP-TTLS record\n"),
ret);
dump_buf_hex(vpninfo, PRG_TRACE, '<',
(void *)vpninfo->ttls_recvbuf,
ret);
}
if (!valid_ift_auth_eap(vpninfo->ttls_recvbuf, ret) ||
ret != 0x1a ||
vpninfo->ttls_recvbuf[0x18] != EAP_TYPE_TTLS ||
vpninfo->ttls_recvbuf[0x19] != 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Bad EAP-TTLS Acknowledge packet\n"));
buf_free(pushbuf);
buf_free(frag);
return -EIO;
}
vpninfo->ttls_eap_ident = vpninfo->ttls_recvbuf[0x15];
} while (remaining > TTLS_MAXFRAG);
buf_free(frag);
memmove(pushbuf->data + 0x1a, msg, remaining);
pushbuf->pos = remaining + 0x1a;
}
/* Fill in the EAP header ident and length */
pushbuf->data[0x15] = vpninfo->ttls_eap_ident;
buf_fill_eap_len(pushbuf, 0x14);
ret = send_ift_packet(vpninfo, pushbuf);
buf_free(pushbuf);
if (ret)
return ret;
/* If called just to flush outbound, return now. */
if (!len)
return 0;
vpninfo->ttls_recvlen = vpninfo->ssl_read(vpninfo, (void *)vpninfo->ttls_recvbuf,
TLS_RECORD_MAX);
if (vpninfo->ttls_recvlen > 0 && vpninfo->dump_http_traffic) {
vpn_progress(vpninfo, PRG_TRACE,
_("Read %d bytes of IF-T/TLS EAP-TTLS record\n"),
vpninfo->ttls_recvlen);
dump_buf_hex(vpninfo, PRG_TRACE, '<',
(void *)vpninfo->ttls_recvbuf,
vpninfo->ttls_recvlen);
}
if (!valid_ift_auth_eap(vpninfo->ttls_recvbuf, vpninfo->ttls_recvlen) ||
vpninfo->ttls_recvlen < 0x1a ||
vpninfo->ttls_recvbuf[0x18] != EAP_TYPE_TTLS) {
bad_pkt:
vpn_progress(vpninfo, PRG_ERR,
_("Bad EAP-TTLS packet (len %d, left %d)\n"),
vpninfo->ttls_recvlen, vpninfo->ttls_msgleft);
return -EIO;
}
vpninfo->ttls_eap_ident = vpninfo->ttls_recvbuf[0x15];
flags = vpninfo->ttls_recvbuf[0x19];
/* Start, Reserved bits and version (we only support version zero) */
if (flags & 0x3f)
goto bad_pkt;
if (vpninfo->ttls_msgleft) {
/* Second and subsequent fragments MUST NOT have L bit set */
if (flags & TTLS_LENGTH)
goto bad_pkt;
/* The header doesn't contain a length word. Just IF-T/TLS, EAP, TTLS */
vpninfo->ttls_recvpos = 0x1a;
vpninfo->ttls_recvlen -= 0x1a;
if (flags & TTLS_MOREFRAGS) {
/* If the More Fragments bit is set, this packet
* must contain fewer bytes than are left. */
if (vpninfo->ttls_recvlen >= vpninfo->ttls_msgleft)
goto bad_pkt;
} else {
/* If the More Fragments bit is set, this packet
must contain precisely the number of bytes left. */
if (vpninfo->ttls_recvlen != vpninfo->ttls_msgleft)
goto bad_pkt;
}
vpninfo->ttls_msgleft -= vpninfo->ttls_recvlen;
} else if (flags & TTLS_MOREFRAGS) {
/* First fragment MUST have Length */
if (!(flags & TTLS_LENGTH) || vpninfo->ttls_recvlen < 0x1e)
goto bad_pkt;
vpninfo->ttls_recvpos = 0x1e;
vpninfo->ttls_recvlen -= 0x1e;
vpninfo->ttls_msgleft = load_be32(vpninfo->ttls_recvbuf + 0x1a);
if (vpninfo->ttls_msgleft <= vpninfo->ttls_recvlen || !vpninfo->ttls_recvlen)
goto bad_pkt;
vpninfo->ttls_msgleft -= vpninfo->ttls_recvlen;
} else {
/* Unfragmented message */
if (flags & TTLS_LENGTH) {
/* Length bit. */
if (vpninfo->ttls_recvlen < 0x1e ||
load_be32(vpninfo->ttls_recvbuf + 0x1a) != vpninfo->ttls_recvlen - 0x1e)
goto bad_pkt;
vpninfo->ttls_recvpos = 0x1e;
vpninfo->ttls_recvlen -= 0x1e;
} else {
vpninfo->ttls_recvpos = 0x1a;
vpninfo->ttls_recvlen -= 0x1a;
}
vpninfo->ttls_msgleft = 0;
if (!vpninfo->ttls_recvlen)
goto bad_pkt;
}
}
if (len > vpninfo->ttls_recvlen) {
memcpy(data, vpninfo->ttls_recvbuf + vpninfo->ttls_recvpos,
vpninfo->ttls_recvlen);
len = vpninfo->ttls_recvlen;
vpninfo->ttls_recvlen = 0;
return len;
}
memcpy(data, vpninfo->ttls_recvbuf + vpninfo->ttls_recvpos, len);
vpninfo->ttls_recvpos += len;
vpninfo->ttls_recvlen -= len;
return len;
}
int pulse_obtain_cookie(struct openconnect_info *vpninfo)
{
return pulse_authenticate(vpninfo, 0);
}
/* Handler for config attributes, see handle_main_config_packet */
static int handle_attr_elements(struct openconnect_info *vpninfo,
unsigned char *bytes, int len,
struct oc_vpn_option **new_opts,
struct oc_ip_info *new_ip_info)
{
unsigned char *p = bytes;
int l = len;
/* No idea what this is */
if (l < 8 || load_be32(p + 4) != 0x03000000)
return -EINVAL;
p += 8;
l -= 8;
while (l) {
if (l < 4)
return -EINVAL;
uint16_t type = load_be16(p);
uint16_t attrlen = load_be16(p+2);
if (attrlen + 4 > l)
return -EINVAL;
p += 4;
l -= 4;
process_attr(vpninfo, new_opts, new_ip_info, type, p, attrlen);
p += attrlen;
l -= attrlen;
}
return 0;
}
/* Example config packet:
< 0000: 00 00 0a 4c 00 00 00 01 00 00 01 80 00 00 01 fb |...L............|
< 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
< 0020: 2c 20 f0 00 00 00 00 00 00 00 01 70 2e 00 00 78 |, .........p...x|
< 0030: 07 00 00 00 07 00 00 10 00 00 ff ff 05 05 00 00 |................|
< 0040: 05 05 ff ff 07 00 00 10 00 00 ff ff 07 00 00 00 |................|
< 0050: 07 00 00 ff 07 00 00 10 00 00 ff ff 08 08 08 08 |................|
< 0060: 08 08 08 08 f1 00 00 10 00 00 ff ff 06 06 06 06 |................|
< 0070: 06 06 06 07 f1 00 00 10 00 00 ff ff 09 09 09 09 |................|
< 0080: 09 09 09 09 f1 00 00 10 00 00 ff ff 0a 0a 0a 0a |................|
< 0090: 0a 0a 0a 0a f1 00 00 10 00 00 ff ff 0b 0b 0b 0b |................|
< 00a0: 0b 0b 0b 0b 00 00 00 dc 03 00 00 00 40 00 00 01 |............@...|
< 00b0: 00 40 01 00 01 00 40 1f 00 01 00 40 20 00 01 00 |.@....@....@ ...|
< 00c0: 40 21 00 01 00 40 05 00 04 00 00 05 78 00 03 00 |@!...@......x...|
< 00d0: 04 08 08 08 08 00 03 00 04 08 08 04 04 40 06 00 |.............@..|
< 00e0: 0c 70 73 65 63 75 72 65 2e 6e 65 74 00 40 07 00 |.psecure.net.@..|
< 00f0: 04 00 00 00 00 00 04 00 04 01 01 01 01 40 19 00 |.............@..|
< 0100: 01 01 40 1a 00 01 00 40 0f 00 02 00 00 40 10 00 |..@....@.....@..|
< 0110: 02 00 05 40 11 00 02 00 02 40 12 00 04 00 00 04 |...@.....@......|
< 0120: b0 40 13 00 04 00 00 00 00 40 14 00 04 00 00 00 |.@.......@......|
< 0130: 01 40 15 00 04 00 00 00 00 40 16 00 02 11 94 40 |.@.......@.....@|
< 0140: 17 00 04 00 00 00 0f 40 18 00 04 00 00 00 3c 00 |.......@......<.|
< 0150: 01 00 04 0a 14 03 01 00 02 00 04 ff ff ff ff 40 |...............@|
< 0160: 0b 00 04 0a c8 c8 c8 40 0c 00 01 00 40 0d 00 01 |.......@....@...|
< 0170: 00 40 0e 00 01 00 40 1b 00 01 00 40 1c 00 01 00 |.@....@....@....|
It starts as an IF-T/TLS packet of type Juniper/1.
Lots of zeroes at the start, and at 0x20 there is a distinctive 0x2c20f000
signature which appears to be in all config packets.
At 0x28 it has the payload length (0x10 less than the full IF-T length).
0x2c is the start of the routing information. The 0x2e byte always
seems to be there, and in this example 0x78 is the length of the
routing information block. The number of entries is in byte 0x30.
In the absence of IPv6 perhaps, the length at 0x2c seems always to be
the number of entries (in 0x30) * 0x10 + 8.
Routing entries are 0x10 bytes each, starting at 0x34. The ones starting
with 0x07 are include, with 0xf1 are exclude. No idea what the following 7
bytes 0f 00 00 10 00 00 ff ff mean; perhaps the 0010 is a length? The IP
address range is in bytes 8-11 (starting address) and the highest address
of the range (traditionally a broadcast address) is in bytes 12-15.
After the routing inforamation (in this example at 0xa4) comes another
length field, this time for the information elements which comprise
the rest of the packet. Not sure what the 03 00 00 00 at 0xa8 means;
it *could* be an element type 0x3000 with payload length zero but if it
is, we don't know what it means. Following that, the elements all have
two bytes of type followed by two bytes length, then their payload.
There follows an attempt to parse the packet based on the above
understanding. Having more examples, especially with IPv6 split includes
and excludes, would be useful...
*/
static int handle_main_config_packet(struct openconnect_info *vpninfo,
unsigned char *bytes, int len)
{
int routes_len = 0;
int l;
unsigned char *p;
int offset = 0x2c;
struct oc_vpn_option *new_opts = NULL;
struct oc_ip_info new_ip_info = {};
if (len < 0x31) {
bad_config:
vpn_progress(vpninfo, PRG_ERR,
_("Unexpected Pulse config packet:\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', (void *)bytes, len);
free_optlist(new_opts);
free_split_routes(&new_ip_info);
return -EINVAL;
}
/* On Pulse 9.1R14 and 9.1R16, we see packet type 0x2e20f000, whereas
* earlier versions had 0x2c20f000.
* With the newer packet type, we seem to have a leading set of
* attribute elements.
*
* Example from earlier versions, starting at bytes+0x2c:
* 2e 00 <start of routing information>
*
* Example from R14, starting at bytes+0x2c:
* 2c 00 (fixed) \
* 00 0d (length 13) |
* 03 00 00 00 (fixed) |
* 40 25 00 01 01 (unknown attr 0x4025, length 1, value 0x01) /
* 2e 00 <start of routing information>
*
* Example from R16, starting at bytes+0x2c:
*
* 2e 00 (fixed) \
* 00 0d (length 13) |
* 03 00 00 00 (fixed) |
* 40 25 00 01 01 (unknown attr 0x4026, length 1, value 0x01) /
* 2c 00 (fixed) \
* 00 0d (length 13) |
* 03 00 00 00 (fixed) |
* 40 26 00 01 01 (unknown attr 0x4025, length 1, value 0x01) /
* 2e 00 <start of routing information>
*/
if (load_be32(bytes + 0x20) == 0x2e20f000) {
int attr_flag;
int attr_len;
vpn_progress(vpninfo, PRG_TRACE,
_("Processing Pulse main config packet for server version >= 9.1R14\n"));
do {
if (len < offset + 4)
goto bad_config;
/* Start of attributes */
attr_flag = load_be16(bytes + offset);
attr_len = load_be16(bytes + offset + 2);
switch (attr_flag) {
case 0x2c00:
vpn_progress(vpninfo, PRG_TRACE,
_("attr_flag 0x2c00: known for Pulse version >= 9.1R14\n"));
break;
case 0x2e00:
vpn_progress(vpninfo, PRG_TRACE,
_("attr_flag 0x2e00: known for Pulse version >= 9.1R16\n"));
break;
default:
vpn_progress(vpninfo, PRG_ERR,
_("attr_flag 0x%04x: unknown Pulse version. Please report to <%s>\n"),
attr_flag, "openconnect-devel@lists.infradead.org");
}
if (len < offset + attr_len ||
/* Process the attributes, even though all the attrs that
* we have ever seen in this section are unknown, and will
* be logged and otherwise ignored. */
handle_attr_elements(vpninfo, bytes + offset, attr_len,
&new_opts, &new_ip_info) < 0) {
goto bad_config;
}
offset += attr_len;
} while (attr_flag != 0x2c00);
vpn_progress(vpninfo, PRG_TRACE,
_("If any of the above attributes are meaningful, please report to <%s>\n"),
"openconnect-devel@lists.infradead.org");
} else if (load_be32(bytes + 0x20) == 0x2c20f000)
vpn_progress(vpninfo, PRG_TRACE,
_("Processing Pulse main config packet for server version < 9.1R14\n"));
else
goto bad_config;
/* First part of header, similar to ESP, has already been checked */
if (len < offset + 5 ||
/* Start of routing information */
load_be16(bytes + offset) != 0x2e00 ||
/* Routing length at offset+2 makes sense */
(routes_len = load_be16(bytes + offset + 2)) != ((int)bytes[offset + 4] * 0x10 + 8) ||
/* Make sure the next length field (at 0xa4 in the above example) is present */
len < offset + routes_len + 4 ||
/* Another length field, must match to end of packet */
load_be32(bytes + offset + routes_len) + routes_len + offset != len) {
goto bad_config;
}
p = bytes + offset + 8;
routes_len -= 8; /* The header including length and number of routes */
/* We know it's a multiple of 0x10 now. We checked. */
while (routes_len) {
char buf[80];
/* Probably not a whole be32 but let's see if anything ever changes */
uint32_t type = load_be32(p);
uint32_t ffff = load_be32(p+4);
if (ffff != 0xffff)
goto bad_config;
/* Convert the range end into a netmask by xor. Mask out the
* bits in the network address, leaving only the low bits set,
* then invert what's left so that only the high bits are set
* as in a normal netmask.
*
* e.g.
* 10.0.0.0-10.0.63.255 becomes 0.0.63.255 becomes 255.255.192.0
*/
snprintf(buf, sizeof(buf), "%d.%d.%d.%d/%d.%d.%d.%d",
p[8], p[9], p[10], p[11],
255 ^ (p[8] ^ p[12]), 255 ^ (p[9] ^ p[13]),
255 ^ (p[10] ^ p[14]), 255 ^ (p[11] ^ p[15]));
if (type == 0x07000010) {
struct oc_split_include *inc;
vpn_progress(vpninfo, PRG_DEBUG, _("Received split include route %s\n"), buf);
inc = malloc(sizeof(*inc));
if (inc) {
inc->route = add_option_dup(&new_opts, "split-include", buf, -1);
if (inc->route) {
inc->next = new_ip_info.split_includes;
new_ip_info.split_includes = inc;
} else
free(inc);
}
} else if (type == 0xf1000010) {
struct oc_split_include *exc;
vpn_progress(vpninfo, PRG_DEBUG, _("Received split exclude route %s\n"), buf);
exc = malloc(sizeof(*exc));
if (exc) {
exc->route = add_option_dup(&new_opts, "split-exclude", buf, -1);
if (exc->route) {
exc->next = new_ip_info.split_excludes;
new_ip_info.split_excludes = exc;
} else
free(exc);
}
} else {
vpn_progress(vpninfo, PRG_ERR, _("Receive route of unknown type 0x%08x\n"),
type);
goto bad_config;
}
p += 0x10;
routes_len -= 0x10;
}
/* p now points at the length field of the final elements, which
was already checked. */
l = load_be32(p);
if (handle_attr_elements(vpninfo, p, l, &new_opts, &new_ip_info) < 0)
goto bad_config;
int ret = install_vpn_opts(vpninfo, new_opts, &new_ip_info);
if (ret) {
free_optlist(new_opts);
free_split_routes(&new_ip_info);
}
return ret;
}
/* Example ESP config packet:
< 0000: 00 00 0a 4c 00 00 00 01 00 00 00 80 00 00 01 fc |...L............|
< 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
< 0020: 21 20 24 00 00 00 00 00 00 00 00 70 00 00 00 54 |! $........p...T|
< 0030: 01 00 00 00 ec 52 1b 6c 00 40 11 9d c5 f6 85 f3 |.....R.l.@......|
< 0040: 26 7d 70 75 44 45 63 eb 64 00 fb ba 89 4f 24 b2 |&}puDEc.d....O$.|
< 0050: 81 42 ce 24 b8 0a f8 b6 71 39 78 f8 5e 6f 5f d6 |.B.$....q9x.^o_.|
< 0060: 9e 5c 06 47 8d 1e f3 0e 5a 51 ae b2 3d 09 8d 27 |.\.G....ZQ..=..'|
< 0070: e0 50 76 6a 22 9a d1 20 86 78 00 00 00 00 00 00 |.Pvj".. .x......|
First 0x2c bytes are like the main config packet header.
At 0x2c there is another length field, covering the whole of the
rest of this packet. Then an unknown 0x01000000 at 0x30, followed
by the server->client SPI in little-endian(!) form at 0x34.
Then follows the secrets, with a 2-byte length field at 0x38 (which
is always 0x40), followed by the secrets themselves. As with
Juniper Network Connect, the HMAC secret immediately follows the
encryption key, however large the latter is.
*/
static int handle_esp_config_packet(struct openconnect_info *vpninfo,
unsigned char *bytes, int len)
{
#ifdef HAVE_ESP
struct esp *esp;
int secretslen;
uint32_t spi;
int ret;
vpn_progress(vpninfo, PRG_TRACE,
_("Processing Pulse ESP config packet\n"));
if (len < 0x6a ||
load_be32(bytes + 0x2c) != len - 0x2c ||
load_be32(bytes + 0x30) != 0x01000000 ||
load_be16(bytes + 0x38) != 0x40) {
vpn_progress(vpninfo, PRG_ERR,
_("Invalid ESP config packet:\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', bytes, len);
return -EINVAL;
}
/* We insist on this being 0x40 for now. But just in case it later changes... */
secretslen = load_be16(bytes + 0x38);
vpn_progress(vpninfo, PRG_DEBUG, _("%d bytes of ESP secrets\n"), secretslen);
if (!vpninfo->enc_key_len || !vpninfo->hmac_key_len ||
vpninfo->enc_key_len + vpninfo->hmac_key_len > secretslen) {
vpn_progress(vpninfo, PRG_ERR,
_("Invalid ESP setup\n"));
return -EINVAL;
}
/* Yes, bizarrely this is little-endian on the wire. I have no idea
* what made them do this. */
spi = load_le32(bytes + 0x34);
vpn_progress(vpninfo, PRG_DEBUG, _("ESP SPI (outbound): %x\n"), spi);
/* But we store it internally as big-endian because we never do any
* calculations on it; it's only set into outbound packets and matched
* on incoming ones... and we've NEVER had to see it in little-endian
* form ever before because that's insane! */
store_be32(&vpninfo->esp_out.spi, spi);
memcpy(vpninfo->esp_out.enc_key, bytes + 0x3a, vpninfo->enc_key_len);
memcpy(vpninfo->esp_out.hmac_key, bytes + 0x3a + vpninfo->enc_key_len,
vpninfo->hmac_key_len);
ret = openconnect_setup_esp_keys(vpninfo, 1);
if (ret)
return ret;
esp = &vpninfo->esp_in[vpninfo->current_esp_in];
/* Now, using the buffer in which we received the original packet (which
* we trust our caller made large enough), create an appropriate reply.
* A reply packet contains two sets of ESP information, as we are expected
* to send our own followed by a copy of what the server sent to us. */
/* Adjust the length in the IF-T/TLS header */
store_be32(bytes + 8, 0x40 + 2 * secretslen);
/* Copy the server's own ESP information into place */
memmove(bytes + secretslen + 0x3a, bytes + 0x34, secretslen + 0x06);
/* Adjust other length fields. */
store_be32(bytes + 0x28, 0x30 + 2 * secretslen);
store_be32(bytes + 0x2c, 0x14 + 2 * secretslen);
/* Store the SPI. Bizarrely little-endian again. */
store_le32(bytes + 0x34, load_be32(&esp->spi));
memcpy(bytes + 0x3a, esp->enc_key, vpninfo->enc_key_len);
memcpy(bytes + 0x3a + vpninfo->enc_key_len, esp->hmac_key, vpninfo->hmac_key_len);
memset(bytes + 0x3a + vpninfo->enc_key_len + vpninfo->hmac_key_len,
0, 0x40 - vpninfo->enc_key_len - vpninfo->hmac_key_len);
return 0;
#else
return -EINVAL;
#endif
}
int pulse_connect(struct openconnect_info *vpninfo)
{
struct oc_text_buf *reqbuf;
unsigned char bytes[TLS_RECORD_MAX];
int ret;
/* If we already have a channel open, it's because we have just
* successfully authenticated on it from pulse_obtain_cookie(). */
if (vpninfo->ssl_fd == -1) {
ret = pulse_authenticate(vpninfo, 1);
if (ret)
return ret;
}
while (1) {
uint32_t pkt_type;
ret = recv_ift_packet(vpninfo, (void *)bytes, sizeof(bytes));
if (ret < 0)
return ret;
if (ret < 16 || load_be32(bytes + 8) != ret) {
vpn_progress(vpninfo, PRG_ERR,
_("Bad IF-T/TLS packet when expecting configuration:\n"));
dump_buf_hex(vpninfo, PRG_ERR, '<', bytes, ret);
return -EINVAL;
}
if (load_be32(bytes) != VENDOR_JUNIPER) {
vpn_progress(vpninfo, PRG_INFO,
_("Unexpected IF-T/TLS packet when expecting configuration: wrong vendor\n"));
bad_pkt:
dump_buf_hex(vpninfo, PRG_DEBUG, '<', bytes, ret);
continue;
}
pkt_type = load_be32(bytes + 4);
/* End of configuration? Seems to have a 4-byte payload of zeroes. */
if (pkt_type == 0x8f)
break;
/* The main and ESP config packets both start like this. The word at
* 0x20 is 0x2c20f000 for config and 0x0x21202400 for ESP, and the word
* at 0x2c is the length of the payload (0x10 less than the overall
* length including (and in) the IF-T/TLS header. e.g 0x170 here:
*
* < 0000: 00 00 0a 4c 00 00 00 01 00 00 01 80 00 00 01 fb |...L............|
* < 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
* < 0020: 2c 20 f0 00 00 00 00 00 00 00 01 70 ... |, .........|
*/
if (pkt_type != 1) {
vpn_progress(vpninfo, PRG_INFO,
_("Unexpected Pulse configuration packet: %s\n"),
_("wrong type field (!= 1)"));
goto bad_pkt;
} else if (ret < 0x2c) {
vpn_progress(vpninfo, PRG_INFO,
_("Unexpected Pulse configuration packet: %s\n"),
_("too short"));
goto bad_pkt;
} else if (load_be32(bytes + 0x10) || load_be32(bytes + 0x14) ||
load_be32(bytes + 0x18) || load_be32(bytes + 0x1c) ||
load_be32(bytes + 0x24)) {
vpn_progress(vpninfo, PRG_INFO,
_("Unexpected Pulse configuration packet: %s\n"),
_("non-zero values at offsets 0x10, 0x14, 0x18, 0x1c, or 0x24"));
goto bad_pkt;
} else if (load_be32(bytes + 0x28) != ret - 0x10) {
vpn_progress(vpninfo, PRG_INFO,
_("Unexpected Pulse configuration packet: %s\n"),
_("length at offset 0x28 != packet length - 0x10"));
goto bad_pkt;
}
switch(load_be32(bytes + 0x20)) {
case 0x2c20f000:
case 0x2e20f000: /* Variant seen on Pulse 9.1R14 */
ret = handle_main_config_packet(vpninfo, bytes, ret);
if (ret)
return ret;
break;
case 0x21202400:
ret = handle_esp_config_packet(vpninfo, bytes, ret);
if (ret) {
vpninfo->dtls_state = DTLS_DISABLED;
continue;
}
/* It has created a response packet to send. */
ret = send_ift_bytes(vpninfo, bytes, load_be32(bytes + 8));
if (ret)
return ret;
/* Tell server to enable ESP handling */
reqbuf = buf_alloc();
buf_append_ift_hdr(reqbuf, VENDOR_JUNIPER, 5);
buf_append(reqbuf, "ncmo=1\n%c", 0);
ret = send_ift_packet(vpninfo, reqbuf);
buf_free(reqbuf);
if (ret)
return ret;
break;
default:
vpn_progress(vpninfo, PRG_INFO,
_("Unexpected Pulse configuration packet: %s\n"),
_("identifier at offset 0x20 is unknown"));
goto bad_pkt;
}
}
if (!vpninfo->ip_info.mtu ||
(!vpninfo->ip_info.addr && !vpninfo->ip_info.addr6)) {
vpn_progress(vpninfo, PRG_ERR, _("Insufficient configuration found\n"));
return -EINVAL;
}
/* This should never happen, but be defensive and shut Coverity up */
if (vpninfo->ssl_fd == -1)
return -EIO;
ret = 0;
monitor_fd_new(vpninfo, ssl);
monitor_read_fd(vpninfo, ssl);
monitor_except_fd(vpninfo, ssl);
free_pkt(vpninfo, vpninfo->cstp_pkt);
vpninfo->cstp_pkt = NULL;
return ret;
}
int pulse_mainloop(struct openconnect_info *vpninfo, int *timeout, int readable)
{
int ret;
int work_done = 0;
if (vpninfo->ssl_fd == -1)
goto do_reconnect;
/* FIXME: The poll() handling here is fairly simplistic. Actually,
if the SSL connection stalls it could return a WANT_WRITE error
on _either_ of the SSL_read() or SSL_write() calls. In that case,
we should probably remove POLLIN from the events we're looking for,
and add POLLOUT. As it is, though, it'll just chew CPU time in that
fairly unlikely situation, until the write backlog clears. */
while (readable) {
/* Some servers send us packets that are larger than
negotiated MTU. We reserve some extra space to
handle that */
int receive_mtu = MAX(16384, vpninfo->deflate_pkt_size ? : vpninfo->ip_info.mtu);
struct pkt *pkt = vpninfo->cstp_pkt;
int len, payload_len;
if (!pkt) {
pkt = vpninfo->cstp_pkt = alloc_pkt(vpninfo, receive_mtu);
if (!pkt) {
vpn_progress(vpninfo, PRG_ERR, _("Allocation failed\n"));
break;
}
}
/* Receive packet header, if there's anything there... */
len = ssl_nonblock_read(vpninfo, 0, &pkt->pulse.vendor, 16);
if (!len)
break;
if (len < 0)
goto do_reconnect;
if (len < 16) {
vpn_progress(vpninfo, PRG_ERR, _("Short packet received (%d bytes)\n"), len);
vpninfo->quit_reason = "Short packet received";
return 1;
}
/* Packets shouldn't cross SSL record boundaries (we hope!), so if there
* was a header there, then rest of that packet should be there too. */
if (load_be32(&pkt->pulse.len) > receive_mtu + 0x10) {
/* This doesn't look right. Pull the rest of the SSL record
* and complain about it (which we will, since the length
* won't match the header */
len = receive_mtu;
} else
len = load_be32(&pkt->pulse.len) - 0x10;
payload_len = ssl_nonblock_read(vpninfo, 0, &pkt->data, len);
if (payload_len != load_be32(&pkt->pulse.len) - 0x10) {
if (payload_len < 0)
len = 0x10;
else
len = payload_len + 0x10;
goto unknown_pkt;
}
if (load_be32(&pkt->pulse.vendor) != VENDOR_JUNIPER)
goto unknown_pkt;
vpninfo->ssl_times.last_rx = time(NULL);
len = payload_len + 0x10;
switch(load_be32(&pkt->pulse.type)) {
case 4:
vpn_progress(vpninfo, PRG_TRACE,
_("Received data packet of %d bytes\n"),
payload_len);
dump_buf_hex(vpninfo, PRG_TRACE, '<', (void *)&vpninfo->cstp_pkt->pulse.vendor, len);
vpninfo->cstp_pkt->len = payload_len;
queue_packet(&vpninfo->incoming_queue, pkt);
vpninfo->cstp_pkt = pkt = NULL;
work_done = 1;
continue;
case 1:
if (payload_len < 0x6a ||
load_be32(pkt->data + 0x10) != 0x21202400 ||
load_be32(pkt->data + 0x18) != payload_len ||
load_be32(pkt->data + 0x1c) != payload_len - 0x1c ||
load_be32(pkt->data + 0x20) != 0x01000000 ||
load_be16(pkt->data + 0x28) != 0x40)
goto unknown_pkt;
dump_buf_hex(vpninfo, PRG_TRACE, '<', (void *)&vpninfo->cstp_pkt->pulse.vendor, len);
ret = handle_esp_config_packet(vpninfo, (void *)&pkt->pulse.vendor, len);
if (ret) {
vpn_progress(vpninfo, PRG_ERR,
_("ESP rekey failed\n"));
vpninfo->proto->udp_close(vpninfo);
continue;
}
vpninfo->cstp_pkt = NULL;
pkt->len = load_be32(&pkt->pulse.len) - 16;
queue_packet(&vpninfo->tcp_control_queue, pkt);
print_esp_keys(vpninfo, _("new incoming"), &vpninfo->esp_in[vpninfo->current_esp_in]);
print_esp_keys(vpninfo, _("new outgoing"), &vpninfo->esp_out);
continue;
case 0x93: {
/* Expected contents are "errorType=%d errorString=%s\n". Known values:
* 6: "agentd error" (another session started and kicked this one off)
* 7: "session has been terminated" (by client)
* 8: "session timed out" (idle timeout)
*/
if (payload_len < 12 || strncmp("errorType=", (const char *)pkt->data, 10))
goto unknown_pkt;
pkt->data[payload_len - 1] = '\0'; /* overwrite final '\n' */
char *endp;
unsigned long reason = strtol((const char *)pkt->data + 10, &endp, 10);
if (strncmp(" errorString=", endp, 13))
goto unknown_pkt;
urldecode_inplace(endp+1);
vpn_progress(vpninfo, PRG_ERR, _("Pulse fatal error (reason: %ld): %s\n"),
reason, endp+13);
vpninfo->quit_reason = strdup(endp+13);
return -EPIPE;
}
case 0x96:
/* It sends the licence information once the connection is set up. For
* now, abuse this to deal with the race condition in ESP setup — it looks
* like the server doesn't process the ESP config until after we've sent
* the probes, in some cases. */
if (vpninfo->dtls_state == DTLS_SLEEPING)
vpninfo->proto->udp_send_probes(vpninfo);
break;
default:
unknown_pkt:
vpn_progress(vpninfo, PRG_ERR,
_("Unknown Pulse packet of %d bytes (vendor 0x%03x, type 0x%02x, hdr_len %d, ident %d)\n"),
len, load_be32(&pkt->pulse.vendor), load_be32(&pkt->pulse.type),
load_be32(&pkt->pulse.len), load_be32(&pkt->pulse.ident));
dump_buf_hex(vpninfo, PRG_TRACE, '<', (void *)&vpninfo->cstp_pkt->pulse.vendor, len);
continue;
}
}
/* If SSL_write() fails we are expected to try again. With exactly
the same data, at exactly the same location. So we keep the
packet we had before.... */
if (vpninfo->current_ssl_pkt) {
handle_outgoing:
vpninfo->ssl_times.last_tx = time(NULL);
unmonitor_write_fd(vpninfo, ssl);
vpn_progress(vpninfo, PRG_TRACE, _("Packet outgoing:\n"));
dump_buf_hex(vpninfo, PRG_TRACE, '>',
(void *)&vpninfo->current_ssl_pkt->pulse.vendor,
vpninfo->current_ssl_pkt->len + 16);
ret = ssl_nonblock_write(vpninfo, 0,
&vpninfo->current_ssl_pkt->pulse.vendor,
vpninfo->current_ssl_pkt->len + 16);
if (ret < 0) {
do_reconnect:
/* XXX: Do we have to do this or can we leave it open?
* Perhaps we could even reconnect asynchronously while
* the ESP is still running? */
#ifdef HAVE_ESP
esp_shutdown(vpninfo);
#endif
ret = ssl_reconnect(vpninfo);
if (ret) {
vpn_progress(vpninfo, PRG_ERR, _("Reconnect failed\n"));
vpninfo->quit_reason = "Pulse reconnect failed";
return ret;
}
vpninfo->dtls_need_reconnect = 1;
return 1;
} else if (!ret) {
#if 0 /* Not for Pulse yet */
/* -EAGAIN: ssl_nonblock_write() will have added the SSL
fd to ->select_wfds if appropriate, so we can just
return and wait. Unless it's been stalled for so long
that DPD kicks in and we kill the connection. */
switch (ka_stalled_action(&vpninfo->ssl_times, timeout)) {
case KA_DPD_DEAD:
goto peer_dead;
case KA_REKEY:
goto do_rekey;
case KA_NONE:
return work_done;
default:
/* This should never happen */
break;
}
#else
return work_done;
#endif
}
if (ret != vpninfo->current_ssl_pkt->len + 16) {
vpn_progress(vpninfo, PRG_ERR,
_("SSL wrote too few bytes! Asked for %d, sent %d\n"),
vpninfo->current_ssl_pkt->len + 8, ret);
vpninfo->quit_reason = "Internal error";
return 1;
}
/* Don't free the 'special' packets */
if (vpninfo->current_ssl_pkt == vpninfo->deflate_pkt) {
free_pkt(vpninfo, vpninfo->pending_deflated_pkt);
vpninfo->pending_deflated_pkt = NULL;
} else
free_pkt(vpninfo, vpninfo->current_ssl_pkt);
vpninfo->current_ssl_pkt = NULL;
}
#if 0 /* Not understood for Pulse yet */
if (vpninfo->owe_ssl_dpd_response) {
vpninfo->owe_ssl_dpd_response = 0;
vpninfo->current_ssl_pkt = (struct pkt *)&dpd_resp_pkt;
goto handle_outgoing;
}
switch (keepalive_action(&vpninfo->ssl_times, timeout)) {
case KA_REKEY:
do_rekey:
/* Not that this will ever happen; we don't even process
the setting when we're asked for it. */
vpn_progress(vpninfo, PRG_INFO, _("CSTP rekey due\n"));
if (vpninfo->ssl_times.rekey_method == REKEY_TUNNEL)
goto do_reconnect;
else if (vpninfo->ssl_times.rekey_method == REKEY_SSL) {
ret = cstp_handshake(vpninfo, 0);
if (ret) {
/* if we failed rehandshake try establishing a new-tunnel instead of failing */
vpn_progress(vpninfo, PRG_ERR, _("Rehandshake failed; attempting new-tunnel\n"));
goto do_reconnect;
}
goto do_dtls_reconnect;
}
break;
case KA_DPD_DEAD:
peer_dead:
vpn_progress(vpninfo, PRG_ERR,
_("CSTP Dead Peer Detection detected dead peer!\n"));
goto do_reconnect;
do_reconnect:
ret = cstp_reconnect(vpninfo);
if (ret) {
vpn_progress(vpninfo, PRG_ERR, _("Reconnect failed\n"));
vpninfo->quit_reason = "CSTP reconnect failed";
return ret;
}
do_dtls_reconnect:
/* succeeded, let's rekey DTLS, if it is not rekeying
* itself. */
if (vpninfo->dtls_state > DTLS_SLEEPING &&
vpninfo->dtls_times.rekey_method == REKEY_NONE) {
vpninfo->dtls_need_reconnect = 1;
}
return 1;
case KA_DPD:
vpn_progress(vpninfo, PRG_DEBUG, _("Send CSTP DPD\n"));
vpninfo->current_ssl_pkt = (struct pkt *)&dpd_pkt;
goto handle_outgoing;
case KA_KEEPALIVE:
/* No need to send an explicit keepalive
if we have real data to send */
if (vpninfo->dtls_state != DTLS_ESTABLISHED &&
vpninfo->outgoing_queue.head)
break;
vpn_progress(vpninfo, PRG_DEBUG, _("Send CSTP Keepalive\n"));
vpninfo->current_ssl_pkt = (struct pkt *)&keepalive_pkt;
goto handle_outgoing;
case KA_NONE:
;
}
#endif
if (vpninfo->dtls_state == DTLS_CONNECTED) {
/* We don't currently do anything to make the server start sending
* data packets in ESP instead of over IF-T/TLS. Just go straight
* to CONNECTED mode. */
vpninfo->dtls_state = DTLS_ESTABLISHED;
work_done = 1;
}
vpninfo->current_ssl_pkt = dequeue_packet(&vpninfo->tcp_control_queue);
if (vpninfo->current_ssl_pkt) {
/* Anything on the control queue will have the rest of its
header filled in already. */
store_be32(&vpninfo->current_ssl_pkt->pulse.ident, vpninfo->ift_seq++);
goto handle_outgoing;
}
/* Service outgoing packet queue, if no DTLS */
while (vpninfo->dtls_state != DTLS_ESTABLISHED &&
(vpninfo->current_ssl_pkt = dequeue_packet(&vpninfo->outgoing_queue))) {
struct pkt *this = vpninfo->current_ssl_pkt;
store_be32(&this->pulse.vendor, VENDOR_JUNIPER);
store_be32(&this->pulse.type, 4);
store_be32(&this->pulse.len, this->len + 16);
store_be32(&this->pulse.ident, vpninfo->ift_seq++);
vpn_progress(vpninfo, PRG_TRACE,
_("Sending IF-T/TLS data packet of %d bytes\n"),
this->len);
vpninfo->current_ssl_pkt = this;
goto handle_outgoing;
}
/* Work is not done if we just got rid of packets off the queue */
return work_done;
}
int pulse_bye(struct openconnect_info *vpninfo, const char *reason)
{
int ret = -1;
if (vpninfo->ssl_fd != -1) {
struct oc_text_buf *buf = buf_alloc();
buf_append_ift_hdr(buf, VENDOR_JUNIPER, 0x89);
if (!buf_error(buf))
ret = send_ift_packet(vpninfo, buf);
buf_free(buf);
openconnect_close_https(vpninfo, 0);
}
/* Try Juniper logout if tunnel was already closed */
if (ret < 0)
ret = oncp_bye(vpninfo, reason);
return ret;
}
|