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
|
/* $OpenBSD: ipsec.c,v 1.104 2004/09/17 13:53:08 ho Exp $ */
/* $EOM: ipsec.c,v 1.143 2000/12/11 23:57:42 niklas Exp $ */
/*
* Copyright (c) 1998, 1999, 2000, 2001 Niklas Hallqvist. All rights reserved.
* Copyright (c) 2001 Angelos D. Keromytis. All rights reserved.
* Copyright (c) 2001 Hkan Olsson. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This code was written under funding by Ericsson Radio Systems.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <string.h>
#include "sysdep.h"
#include "attribute.h"
#include "conf.h"
#include "constants.h"
#include "crypto.h"
#include "dh.h"
#include "doi.h"
#if defined (USE_DPD)
#include "dpd.h"
#endif
#include "exchange.h"
#include "hash.h"
#include "ike_aggressive.h"
#include "ike_auth.h"
#include "ike_main_mode.h"
#include "ike_quick_mode.h"
#include "ipsec.h"
#include "ipsec_doi.h"
#include "isakmp.h"
#include "isakmp_cfg.h"
#include "isakmp_fld.h"
#include "isakmp_num.h"
#include "log.h"
#include "math_group.h"
#include "message.h"
#if defined (USE_NAT_TRAVERSAL)
#include "nat_traversal.h"
#endif
#include "prf.h"
#include "sa.h"
#include "timer.h"
#include "transport.h"
#include "util.h"
#ifdef USE_X509
#include "x509.h"
#endif
extern int acquire_only;
/* Backwards compatibility. */
#ifndef NI_MAXHOST
#define NI_MAXHOST 1025
#endif
/* The replay window size used for all IPsec protocols if not overridden. */
#define DEFAULT_REPLAY_WINDOW 16
struct ipsec_decode_arg {
struct message *msg;
struct sa *sa;
struct proto *proto;
};
/* These variables hold the contacted peers ADT state. */
struct contact {
struct sockaddr *addr;
socklen_t len;
} *contacts = 0;
int contact_cnt = 0, contact_limit = 0;
static int addr_cmp(const void *, const void *);
static int ipsec_add_contact(struct message *);
static int ipsec_contacted(struct message *);
#ifdef USE_DEBUG
static int ipsec_debug_attribute(u_int16_t, u_int8_t *, u_int16_t,
void *);
#endif
static void ipsec_delete_spi(struct sa *, struct proto *, int);
static int16_t *ipsec_exchange_script(u_int8_t);
static void ipsec_finalize_exchange(struct message *);
static void ipsec_free_exchange_data(void *);
static void ipsec_free_proto_data(void *);
static void ipsec_free_sa_data(void *);
static struct keystate *ipsec_get_keystate(struct message *);
static u_int8_t *ipsec_get_spi(size_t *, u_int8_t, struct message *);
static int ipsec_handle_leftover_payload(struct message *, u_int8_t,
struct payload *);
static int ipsec_informational_post_hook(struct message *);
static int ipsec_informational_pre_hook(struct message *);
static int ipsec_initiator(struct message *);
static void ipsec_proto_init(struct proto *, char *);
static int ipsec_responder(struct message *);
static void ipsec_setup_situation(u_int8_t *);
static int ipsec_set_network(u_int8_t *, u_int8_t *, struct ipsec_sa *);
static size_t ipsec_situation_size(void);
static u_int8_t ipsec_spi_size(u_int8_t);
static int ipsec_validate_attribute(u_int16_t, u_int8_t *, u_int16_t,
void *);
static int ipsec_validate_exchange(u_int8_t);
static int ipsec_validate_id_information(u_int8_t, u_int8_t *, u_int8_t *,
size_t, struct exchange *);
static int ipsec_validate_key_information(u_int8_t *, size_t);
static int ipsec_validate_notification(u_int16_t);
static int ipsec_validate_proto(u_int8_t);
static int ipsec_validate_situation(u_int8_t *, size_t *, size_t);
static int ipsec_validate_transform_id(u_int8_t, u_int8_t);
static struct doi ipsec_doi = {
{0}, IPSEC_DOI_IPSEC,
sizeof(struct ipsec_exch), sizeof(struct ipsec_sa),
sizeof(struct ipsec_proto),
#ifdef USE_DEBUG
ipsec_debug_attribute,
#endif
ipsec_delete_spi,
ipsec_exchange_script,
ipsec_finalize_exchange,
ipsec_free_exchange_data,
ipsec_free_proto_data,
ipsec_free_sa_data,
ipsec_get_keystate,
ipsec_get_spi,
ipsec_handle_leftover_payload,
ipsec_informational_post_hook,
ipsec_informational_pre_hook,
ipsec_is_attribute_incompatible,
ipsec_proto_init,
ipsec_setup_situation,
ipsec_situation_size,
ipsec_spi_size,
ipsec_validate_attribute,
ipsec_validate_exchange,
ipsec_validate_id_information,
ipsec_validate_key_information,
ipsec_validate_notification,
ipsec_validate_proto,
ipsec_validate_situation,
ipsec_validate_transform_id,
ipsec_initiator,
ipsec_responder,
ipsec_decode_ids
};
int16_t script_quick_mode[] = {
ISAKMP_PAYLOAD_HASH, /* Initiator -> responder. */
ISAKMP_PAYLOAD_SA,
ISAKMP_PAYLOAD_NONCE,
EXCHANGE_SCRIPT_SWITCH,
ISAKMP_PAYLOAD_HASH, /* Responder -> initiator. */
ISAKMP_PAYLOAD_SA,
ISAKMP_PAYLOAD_NONCE,
EXCHANGE_SCRIPT_SWITCH,
ISAKMP_PAYLOAD_HASH, /* Initiator -> responder. */
EXCHANGE_SCRIPT_END
};
int16_t script_new_group_mode[] = {
ISAKMP_PAYLOAD_HASH, /* Initiator -> responder. */
ISAKMP_PAYLOAD_SA,
EXCHANGE_SCRIPT_SWITCH,
ISAKMP_PAYLOAD_HASH, /* Responder -> initiator. */
ISAKMP_PAYLOAD_SA,
EXCHANGE_SCRIPT_END
};
struct dst_spi_proto_arg {
struct sockaddr *dst;
u_int32_t spi;
u_int8_t proto;
};
/*
* Check if SA matches what we are asking for through V_ARG. It has to
* be a finished phase 2 SA.
* if "proto" arg is 0, match any proto
*/
static int
ipsec_sa_check(struct sa *sa, void *v_arg)
{
struct dst_spi_proto_arg *arg = v_arg;
struct proto *proto;
struct sockaddr *dst, *src;
int incoming;
if (sa->phase != 2 || !(sa->flags & SA_FLAG_READY))
return 0;
sa->transport->vtbl->get_dst(sa->transport, &dst);
if (memcmp(sockaddr_addrdata(dst), sockaddr_addrdata(arg->dst),
sockaddr_addrlen(dst)) == 0)
incoming = 0;
else {
sa->transport->vtbl->get_src(sa->transport, &src);
if (memcmp(sockaddr_addrdata(src), sockaddr_addrdata(arg->dst),
sockaddr_addrlen(src)) == 0)
incoming = 1;
else
return 0;
}
for (proto = TAILQ_FIRST(&sa->protos); proto;
proto = TAILQ_NEXT(proto, link))
if ((arg->proto == 0 || proto->proto == arg->proto) &&
memcmp(proto->spi[incoming], &arg->spi, sizeof arg->spi)
== 0)
return 1;
return 0;
}
/* Find an SA with a "name" of DST, SPI & PROTO. */
struct sa *
ipsec_sa_lookup(struct sockaddr *dst, u_int32_t spi, u_int8_t proto)
{
struct dst_spi_proto_arg arg;
arg.dst = dst;
arg.spi = spi;
arg.proto = proto;
return sa_find(ipsec_sa_check, &arg);
}
/*
* Check if SA matches the flow of another SA in V_ARG. It has to
* be a finished non-replaced phase 2 SA.
* XXX At some point other selectors will matter here too.
*/
static int
ipsec_sa_check_flow(struct sa *sa, void *v_arg)
{
struct sa *sa2 = v_arg;
struct ipsec_sa *isa = sa->data, *isa2 = sa2->data;
if (sa == sa2 || sa->phase != 2 ||
(sa->flags & (SA_FLAG_READY | SA_FLAG_REPLACED)) != SA_FLAG_READY)
return 0;
if (isa->tproto != isa2->tproto || isa->sport != isa2->sport ||
isa->dport != isa2->dport)
return 0;
return isa->src_net->sa_family == isa2->src_net->sa_family &&
memcmp(sockaddr_addrdata(isa->src_net),
sockaddr_addrdata(isa2->src_net),
sockaddr_addrlen(isa->src_net)) == 0 &&
memcmp(sockaddr_addrdata(isa->src_mask),
sockaddr_addrdata(isa2->src_mask),
sockaddr_addrlen(isa->src_mask)) == 0 &&
memcmp(sockaddr_addrdata(isa->dst_net),
sockaddr_addrdata(isa2->dst_net),
sockaddr_addrlen(isa->dst_net)) == 0 &&
memcmp(sockaddr_addrdata(isa->dst_mask),
sockaddr_addrdata(isa2->dst_mask),
sockaddr_addrlen(isa->dst_mask)) == 0;
}
/*
* Do IPsec DOI specific finalizations task for the exchange where MSG was
* the final message.
*/
static void
ipsec_finalize_exchange(struct message *msg)
{
struct sa *isakmp_sa = msg->isakmp_sa;
struct ipsec_sa *isa;
struct exchange *exchange = msg->exchange;
struct ipsec_exch *ie = exchange->data;
struct sa *sa = 0, *old_sa;
struct proto *proto, *last_proto = 0;
#ifdef USE_DEBUG
char *addr1, *addr2, *mask1, *mask2;
#endif
switch (exchange->phase) {
case 1:
switch (exchange->type) {
case ISAKMP_EXCH_ID_PROT:
case ISAKMP_EXCH_AGGRESSIVE:
isa = isakmp_sa->data;
isa->hash = ie->hash->type;
isa->prf_type = ie->prf_type;
isa->skeyid_len = ie->skeyid_len;
isa->skeyid_d = ie->skeyid_d;
isa->skeyid_a = ie->skeyid_a;
/* Prevents early free of SKEYID_*. */
ie->skeyid_a = ie->skeyid_d = 0;
/*
* If a lifetime was negotiated setup the expiration
* timers.
*/
if (isakmp_sa->seconds)
sa_setup_expirations(isakmp_sa);
#if defined (USE_NAT_TRAVERSAL)
if (isakmp_sa->flags & SA_FLAG_NAT_T_KEEPALIVE)
nat_t_setup_keepalive(isakmp_sa);
#endif
break;
}
break;
case 2:
switch (exchange->type) {
case IKE_EXCH_QUICK_MODE:
/*
* Tell the application(s) about the SPIs and key
* material.
*/
for (sa = TAILQ_FIRST(&exchange->sa_list); sa;
sa = TAILQ_NEXT(sa, next)) {
isa = sa->data;
if (exchange->initiator) {
/*
* Initiator is source, responder is
* destination.
*/
if (ipsec_set_network(ie->id_ci,
ie->id_cr, isa)) {
log_print(
"ipsec_finalize_exchange: "
"ipsec_set_network "
"failed");
return;
}
} else {
/*
* Responder is source, initiator is
* destination.
*/
if (ipsec_set_network(ie->id_cr,
ie->id_ci, isa)) {
log_print(
"ipsec_finalize_exchange: "
"ipsec_set_network "
"failed");
return;
}
}
for (proto = TAILQ_FIRST(&sa->protos),
last_proto = 0; proto;
proto = TAILQ_NEXT(proto, link)) {
if (sysdep_ipsec_set_spi(sa, proto,
0, isakmp_sa) ||
(last_proto &&
sysdep_ipsec_group_spis(sa,
last_proto, proto, 0)) ||
sysdep_ipsec_set_spi(sa, proto,
1, isakmp_sa) ||
(last_proto &&
sysdep_ipsec_group_spis(sa,
last_proto, proto, 1)))
/*
* XXX Tear down this
* exchange.
*/
return;
last_proto = proto;
}
#ifdef USE_DEBUG
if (sockaddr2text(isa->src_net, &addr1, 0))
addr1 = 0;
if (sockaddr2text(isa->src_mask, &mask1, 0))
mask1 = 0;
if (sockaddr2text(isa->dst_net, &addr2, 0))
addr2 = 0;
if (sockaddr2text(isa->dst_mask, &mask2, 0))
mask2 = 0;
LOG_DBG((LOG_EXCHANGE, 50,
"ipsec_finalize_exchange: src %s %s "
"dst %s %s tproto %u sport %u dport %u",
addr1 ? addr1 : "<??\?>",
mask1 ? mask1 : "<??\?>",
addr2 ? addr2 : "<??\?>",
mask2 ? mask2 : "<??\?>",
isa->tproto, ntohs(isa->sport),
ntohs(isa->dport)));
if (addr1)
free(addr1);
if (mask1)
free(mask1);
if (addr2)
free(addr2);
if (mask2)
free(mask2);
#endif /* USE_DEBUG */
/*
* If this is not an SA acquired by the
* kernel, it needs to have a SPD entry
* (a.k.a. flow) set up.
*/
if (!(sa->flags & SA_FLAG_ONDEMAND ||
conf_get_str("General", "Acquire-Only")
|| acquire_only)
&& sysdep_ipsec_enable_sa(sa, isakmp_sa))
/* XXX Tear down this exchange. */
return;
/*
* Mark elder SAs with the same flow
* information as replaced.
*/
while ((old_sa = sa_find(ipsec_sa_check_flow,
sa)) != 0)
sa_mark_replaced(old_sa);
}
break;
}
}
}
/* Set the client addresses in ISA from SRC_ID and DST_ID. */
static int
ipsec_set_network(u_int8_t *src_id, u_int8_t *dst_id, struct ipsec_sa *isa)
{
int id;
/* Set source address/mask. */
id = GET_ISAKMP_ID_TYPE(src_id);
switch (id) {
case IPSEC_ID_IPV4_ADDR:
case IPSEC_ID_IPV4_ADDR_SUBNET:
isa->src_net = (struct sockaddr *)calloc(1,
sizeof(struct sockaddr_in));
if (!isa->src_net)
goto memfail;
isa->src_net->sa_family = AF_INET;
#ifndef USE_OLD_SOCKADDR
isa->src_net->sa_len = sizeof(struct sockaddr_in);
#endif
isa->src_mask = (struct sockaddr *)calloc(1,
sizeof(struct sockaddr_in));
if (!isa->src_mask)
goto memfail;
isa->src_mask->sa_family = AF_INET;
#ifndef USE_OLD_SOCKADDR
isa->src_mask->sa_len = sizeof(struct sockaddr_in);
#endif
break;
case IPSEC_ID_IPV6_ADDR:
case IPSEC_ID_IPV6_ADDR_SUBNET:
isa->src_net = (struct sockaddr *)calloc(1,
sizeof(struct sockaddr_in6));
if (!isa->src_net)
goto memfail;
isa->src_net->sa_family = AF_INET6;
#ifndef USE_OLD_SOCKADDR
isa->src_net->sa_len = sizeof(struct sockaddr_in6);
#endif
isa->src_mask = (struct sockaddr *)calloc(1,
sizeof(struct sockaddr_in6));
if (!isa->src_mask)
goto memfail;
isa->src_mask->sa_family = AF_INET6;
#ifndef USE_OLD_SOCKADDR
isa->src_mask->sa_len = sizeof(struct sockaddr_in6);
#endif
break;
case IPSEC_ID_IPV4_RANGE:
case IPSEC_ID_IPV6_RANGE:
case IPSEC_ID_DER_ASN1_DN:
case IPSEC_ID_DER_ASN1_GN:
case IPSEC_ID_KEY_ID:
default:
log_print("ipsec_set_network: ID type %d (%s) not supported",
id, constant_name(ipsec_id_cst, id));
return -1;
}
/* Net */
memcpy(sockaddr_addrdata(isa->src_net), src_id + ISAKMP_ID_DATA_OFF,
sockaddr_addrlen(isa->src_net));
/* Mask */
switch (id) {
case IPSEC_ID_IPV4_ADDR:
case IPSEC_ID_IPV6_ADDR:
memset(sockaddr_addrdata(isa->src_mask), 0xff,
sockaddr_addrlen(isa->src_mask));
break;
case IPSEC_ID_IPV4_ADDR_SUBNET:
case IPSEC_ID_IPV6_ADDR_SUBNET:
memcpy(sockaddr_addrdata(isa->src_mask), src_id +
ISAKMP_ID_DATA_OFF + sockaddr_addrlen(isa->src_net),
sockaddr_addrlen(isa->src_mask));
break;
}
memcpy(&isa->sport,
src_id + ISAKMP_ID_DOI_DATA_OFF + IPSEC_ID_PORT_OFF,
IPSEC_ID_PORT_LEN);
/* Set destination address. */
id = GET_ISAKMP_ID_TYPE(dst_id);
switch (id) {
case IPSEC_ID_IPV4_ADDR:
case IPSEC_ID_IPV4_ADDR_SUBNET:
isa->dst_net = (struct sockaddr *)calloc(1,
sizeof(struct sockaddr_in));
if (!isa->dst_net)
goto memfail;
isa->dst_net->sa_family = AF_INET;
#ifndef USE_OLD_SOCKADDR
isa->dst_net->sa_len = sizeof(struct sockaddr_in);
#endif
isa->dst_mask = (struct sockaddr *)calloc(1,
sizeof(struct sockaddr_in));
if (!isa->dst_mask)
goto memfail;
isa->dst_mask->sa_family = AF_INET;
#ifndef USE_OLD_SOCKADDR
isa->dst_mask->sa_len = sizeof(struct sockaddr_in);
#endif
break;
case IPSEC_ID_IPV6_ADDR:
case IPSEC_ID_IPV6_ADDR_SUBNET:
isa->dst_net = (struct sockaddr *)calloc(1,
sizeof(struct sockaddr_in6));
if (!isa->dst_net)
goto memfail;
isa->dst_net->sa_family = AF_INET6;
#ifndef USE_OLD_SOCKADDR
isa->dst_net->sa_len = sizeof(struct sockaddr_in6);
#endif
isa->dst_mask = (struct sockaddr *)calloc(1,
sizeof(struct sockaddr_in6));
if (!isa->dst_mask)
goto memfail;
isa->dst_mask->sa_family = AF_INET6;
#ifndef USE_OLD_SOCKADDR
isa->dst_mask->sa_len = sizeof(struct sockaddr_in6);
#endif
break;
}
/* Net */
memcpy(sockaddr_addrdata(isa->dst_net), dst_id + ISAKMP_ID_DATA_OFF,
sockaddr_addrlen(isa->dst_net));
/* Mask */
switch (id) {
case IPSEC_ID_IPV4_ADDR:
case IPSEC_ID_IPV6_ADDR:
memset(sockaddr_addrdata(isa->dst_mask), 0xff,
sockaddr_addrlen(isa->dst_mask));
break;
case IPSEC_ID_IPV4_ADDR_SUBNET:
case IPSEC_ID_IPV6_ADDR_SUBNET:
memcpy(sockaddr_addrdata(isa->dst_mask), dst_id +
ISAKMP_ID_DATA_OFF + sockaddr_addrlen(isa->dst_net),
sockaddr_addrlen(isa->dst_mask));
break;
}
memcpy(&isa->tproto, dst_id + ISAKMP_ID_DOI_DATA_OFF +
IPSEC_ID_PROTO_OFF, IPSEC_ID_PROTO_LEN);
memcpy(&isa->dport,
dst_id + ISAKMP_ID_DOI_DATA_OFF + IPSEC_ID_PORT_OFF,
IPSEC_ID_PORT_LEN);
return 0;
memfail:
log_error("ipsec_set_network: calloc () failed");
return -1;
}
/* Free the DOI-specific exchange data pointed to by VIE. */
static void
ipsec_free_exchange_data(void *vie)
{
struct ipsec_exch *ie = vie;
#ifdef USE_ISAKMP_CFG
struct isakmp_cfg_attr *attr;
#endif
if (ie->sa_i_b)
free(ie->sa_i_b);
if (ie->id_ci)
free(ie->id_ci);
if (ie->id_cr)
free(ie->id_cr);
if (ie->g_xi)
free(ie->g_xi);
if (ie->g_xr)
free(ie->g_xr);
if (ie->g_xy)
free(ie->g_xy);
if (ie->skeyid)
free(ie->skeyid);
if (ie->skeyid_d)
free(ie->skeyid_d);
if (ie->skeyid_a)
free(ie->skeyid_a);
if (ie->skeyid_e)
free(ie->skeyid_e);
if (ie->hash_i)
free(ie->hash_i);
if (ie->hash_r)
free(ie->hash_r);
if (ie->group)
group_free(ie->group);
#ifdef USE_ISAKMP_CFG
for (attr = LIST_FIRST(&ie->attrs); attr;
attr = LIST_FIRST(&ie->attrs)) {
LIST_REMOVE(attr, link);
if (attr->length)
free(attr->value);
free(attr);
}
#endif
}
/* Free the DOI-specific SA data pointed to by VISA. */
static void
ipsec_free_sa_data(void *visa)
{
struct ipsec_sa *isa = visa;
if (isa->src_net)
free(isa->src_net);
if (isa->src_mask)
free(isa->src_mask);
if (isa->dst_net)
free(isa->dst_net);
if (isa->dst_mask)
free(isa->dst_mask);
if (isa->skeyid_a)
free(isa->skeyid_a);
if (isa->skeyid_d)
free(isa->skeyid_d);
}
/* Free the DOI-specific protocol data of an SA pointed to by VIPROTO. */
static void
ipsec_free_proto_data(void *viproto)
{
struct ipsec_proto *iproto = viproto;
int i;
for (i = 0; i < 2; i++)
if (iproto->keymat[i])
free(iproto->keymat[i]);
}
/* Return exchange script based on TYPE. */
static int16_t *
ipsec_exchange_script(u_int8_t type)
{
switch (type) {
#ifdef USE_ISAKMP_CFG
case ISAKMP_EXCH_TRANSACTION:
return script_transaction;
#endif
case IKE_EXCH_QUICK_MODE:
return script_quick_mode;
case IKE_EXCH_NEW_GROUP_MODE:
return script_new_group_mode;
}
return 0;
}
/* Initialize this DOI, requires doi_init to already have been called. */
void
ipsec_init(void)
{
doi_register(&ipsec_doi);
}
/* Given a message MSG, return a suitable IV (or rather keystate). */
static struct keystate *
ipsec_get_keystate(struct message *msg)
{
struct keystate *ks;
struct hash *hash;
/* If we have already have an IV, use it. */
if (msg->exchange && msg->exchange->keystate) {
ks = malloc(sizeof *ks);
if (!ks) {
log_error("ipsec_get_keystate: malloc (%lu) failed",
(unsigned long) sizeof *ks);
return 0;
}
memcpy(ks, msg->exchange->keystate, sizeof *ks);
return ks;
}
/*
* For phase 2 when no SA yet is setup we need to hash the IV used by
* the ISAKMP SA concatenated with the message ID, and use that as an
* IV for further cryptographic operations.
*/
if (!msg->isakmp_sa->keystate) {
log_print("ipsec_get_keystate: no keystate in ISAKMP SA %p",
msg->isakmp_sa);
return 0;
}
ks = crypto_clone_keystate(msg->isakmp_sa->keystate);
if (!ks)
return 0;
hash = hash_get(((struct ipsec_sa *)msg->isakmp_sa->data)->hash);
hash->Init(hash->ctx);
LOG_DBG_BUF((LOG_CRYPTO, 80, "ipsec_get_keystate: final phase 1 IV",
ks->riv, ks->xf->blocksize));
hash->Update(hash->ctx, ks->riv, ks->xf->blocksize);
LOG_DBG_BUF((LOG_CRYPTO, 80, "ipsec_get_keystate: message ID",
((u_int8_t *) msg->iov[0].iov_base) + ISAKMP_HDR_MESSAGE_ID_OFF,
ISAKMP_HDR_MESSAGE_ID_LEN));
hash->Update(hash->ctx, ((u_int8_t *) msg->iov[0].iov_base) +
ISAKMP_HDR_MESSAGE_ID_OFF, ISAKMP_HDR_MESSAGE_ID_LEN);
hash->Final(hash->digest, hash->ctx);
crypto_init_iv(ks, hash->digest, ks->xf->blocksize);
LOG_DBG_BUF((LOG_CRYPTO, 80, "ipsec_get_keystate: phase 2 IV",
hash->digest, ks->xf->blocksize));
return ks;
}
static void
ipsec_setup_situation(u_int8_t *buf)
{
SET_IPSEC_SIT_SIT(buf + ISAKMP_SA_SIT_OFF, IPSEC_SIT_IDENTITY_ONLY);
}
static size_t
ipsec_situation_size(void)
{
return IPSEC_SIT_SIT_LEN;
}
static u_int8_t
ipsec_spi_size(u_int8_t proto)
{
return IPSEC_SPI_SIZE;
}
static int
ipsec_validate_attribute(u_int16_t type, u_int8_t * value, u_int16_t len,
void *vmsg)
{
struct message *msg = vmsg;
if ((msg->exchange->phase == 1
&& (type < IKE_ATTR_ENCRYPTION_ALGORITHM
|| type > IKE_ATTR_GROUP_ORDER))
|| (msg->exchange->phase == 2
&& (type < IPSEC_ATTR_SA_LIFE_TYPE
|| type > IPSEC_ATTR_ECN_TUNNEL)))
return -1;
return 0;
}
static int
ipsec_validate_exchange(u_int8_t exch)
{
return exch != IKE_EXCH_QUICK_MODE && exch != IKE_EXCH_NEW_GROUP_MODE;
}
static int
ipsec_validate_id_information(u_int8_t type, u_int8_t *extra, u_int8_t *buf,
size_t sz, struct exchange *exchange)
{
u_int8_t proto = GET_IPSEC_ID_PROTO(extra);
u_int16_t port = GET_IPSEC_ID_PORT(extra);
LOG_DBG((LOG_MESSAGE, 40,
"ipsec_validate_id_information: proto %d port %d type %d",
proto, port, type));
if (type < IPSEC_ID_IPV4_ADDR || type > IPSEC_ID_KEY_ID)
return -1;
switch (type) {
case IPSEC_ID_IPV4_ADDR:
LOG_DBG_BUF((LOG_MESSAGE, 40,
"ipsec_validate_id_information: IPv4", buf,
sizeof(struct in_addr)));
break;
case IPSEC_ID_IPV6_ADDR:
LOG_DBG_BUF((LOG_MESSAGE, 40,
"ipsec_validate_id_information: IPv6", buf,
sizeof(struct in6_addr)));
break;
case IPSEC_ID_IPV4_ADDR_SUBNET:
LOG_DBG_BUF((LOG_MESSAGE, 40,
"ipsec_validate_id_information: IPv4 network/netmask",
buf, 2 * sizeof(struct in_addr)));
break;
case IPSEC_ID_IPV6_ADDR_SUBNET:
LOG_DBG_BUF((LOG_MESSAGE, 40,
"ipsec_validate_id_information: IPv6 network/netmask",
buf, 2 * sizeof(struct in6_addr)));
break;
default:
break;
}
if (exchange->phase == 1
&& (proto != IPPROTO_UDP || port != UDP_DEFAULT_PORT)
&& (proto != 0 || port != 0)) {
/*
* XXX SSH's ISAKMP tester fails this test (proto 17 - port
* 0).
*/
#ifdef notyet
return -1;
#else
log_print("ipsec_validate_id_information: dubious ID "
"information accepted");
#endif
}
/* XXX More checks? */
return 0;
}
static int
ipsec_validate_key_information(u_int8_t *buf, size_t sz)
{
/* XXX Not implemented yet. */
return 0;
}
static int
ipsec_validate_notification(u_int16_t type)
{
return type < IPSEC_NOTIFY_RESPONDER_LIFETIME
|| type > IPSEC_NOTIFY_INITIAL_CONTACT ? -1 : 0;
}
static int
ipsec_validate_proto(u_int8_t proto)
{
return proto < IPSEC_PROTO_IPSEC_AH
|| proto > IPSEC_PROTO_IPCOMP ? -1 : 0;
}
static int
ipsec_validate_situation(u_int8_t *buf, size_t *sz, size_t len)
{
if (len < IPSEC_SIT_SIT_OFF + IPSEC_SIT_SIT_LEN) {
log_print("ipsec_validate_situation: payload too short: %u",
(unsigned int) len);
return -1;
}
/* Currently only "identity only" situations are supported. */
if (GET_IPSEC_SIT_SIT(buf) != IPSEC_SIT_IDENTITY_ONLY)
return 1;
*sz = IPSEC_SIT_SIT_LEN;
return 0;
}
static int
ipsec_validate_transform_id(u_int8_t proto, u_int8_t transform_id)
{
switch (proto) {
/*
* As no unexpected protocols can occur, we just tie the
* default case to the first case, in orer to silence a GCC
* warning.
*/
default:
case ISAKMP_PROTO_ISAKMP:
return transform_id != IPSEC_TRANSFORM_KEY_IKE;
case IPSEC_PROTO_IPSEC_AH:
return transform_id < IPSEC_AH_MD5
|| transform_id > IPSEC_AH_DES ? -1 : 0;
case IPSEC_PROTO_IPSEC_ESP:
return transform_id < IPSEC_ESP_DES_IV64
|| (transform_id > IPSEC_ESP_AES_128_CTR
&& transform_id < IPSEC_ESP_AES_MARS)
|| transform_id > IPSEC_ESP_AES_TWOFISH ? -1 : 0;
case IPSEC_PROTO_IPCOMP:
return transform_id < IPSEC_IPCOMP_OUI
|| transform_id > IPSEC_IPCOMP_V42BIS ? -1 : 0;
}
}
static int
ipsec_initiator(struct message *msg)
{
struct exchange *exchange = msg->exchange;
int (**script)(struct message *) = 0;
/* Check that the SA is coherent with the IKE rules. */
if (exchange->type != ISAKMP_EXCH_TRANSACTION
&& ((exchange->phase == 1 &&
exchange->type != ISAKMP_EXCH_ID_PROT &&
exchange->type != ISAKMP_EXCH_AGGRESSIVE &&
exchange->type != ISAKMP_EXCH_INFO)
|| (exchange->phase == 2 &&
exchange->type != IKE_EXCH_QUICK_MODE &&
exchange->type != ISAKMP_EXCH_INFO))) {
log_print("ipsec_initiator: unsupported exchange type %d "
"in phase %d", exchange->type, exchange->phase);
return -1;
}
switch (exchange->type) {
case ISAKMP_EXCH_ID_PROT:
script = ike_main_mode_initiator;
break;
#ifdef USE_AGGRESSIVE
case ISAKMP_EXCH_AGGRESSIVE:
script = ike_aggressive_initiator;
break;
#endif
#ifdef USE_ISAKMP_CFG
case ISAKMP_EXCH_TRANSACTION:
script = isakmp_cfg_initiator;
break;
#endif
case ISAKMP_EXCH_INFO:
return message_send_info(msg);
case IKE_EXCH_QUICK_MODE:
script = ike_quick_mode_initiator;
break;
default:
log_print("ipsec_initiator: unsupported exchange type %d",
exchange->type);
return -1;
}
/* Run the script code for this step. */
if (script)
return script[exchange->step] (msg);
return 0;
}
/*
* delete all SA's from addr with the associated proto and SPI's
*
* spis[] is an array of SPIs of size 16-octet for proto ISAKMP
* or 4-octet otherwise.
*/
static void
ipsec_delete_spi_list(struct sockaddr *addr, u_int8_t proto, u_int8_t *spis,
int nspis, char *type)
{
struct sa *sa;
int i;
for (i = 0; i < nspis; i++) {
if (proto == ISAKMP_PROTO_ISAKMP) {
u_int8_t *spi = spis + i * ISAKMP_HDR_COOKIES_LEN;
/*
* This really shouldn't happen in IPSEC DOI
* code, but Cisco VPN 3000 sends ISAKMP DELETE's
* this way.
*/
sa = sa_lookup_isakmp_sa(addr, spi);
} else {
u_int32_t spi = ((u_int32_t *)spis)[i];
sa = ipsec_sa_lookup(addr, spi, proto);
}
if (sa == NULL) {
LOG_DBG((LOG_SA, 30, "ipsec_delete_spi_list: could "
"not locate SA (SPI %08x, proto %u)",
((u_int32_t *)spis)[i], proto));
continue;
}
/* Delete the SA and search for the next */
LOG_DBG((LOG_SA, 30, "ipsec_delete_spi_list: "
"%s made us delete SA %p (%d references) for proto %d",
type, sa, sa->refcnt, proto));
sa_free(sa);
}
}
/*
* deal with a NOTIFY of INVALID_SPI
*/
static void
ipsec_invalid_spi (struct message *msg, struct payload *p)
{
struct sockaddr *dst;
int invspisz, off;
u_int32_t spi;
u_int16_t totsiz;
u_int8_t spisz;
/* Any notification that make us do something should be protected */
if(!TAILQ_FIRST (&msg->payload[ISAKMP_PAYLOAD_HASH]))
{
LOG_DBG ((LOG_SA, 40,
"ipsec_invalid_spi: missing HASH payload in INVALID_SPI"
" notification"));
return;
}
/*
* get the invalid spi out of the variable sized notification data
* field, which is after the variable sized SPI field [which specifies
* the receiving entity's phase-1 SPI, not the invalid spi]
*/
totsiz = GET_ISAKMP_GEN_LENGTH (p->p);
spisz = GET_ISAKMP_NOTIFY_SPI_SZ (p->p);
off = ISAKMP_NOTIFY_SPI_OFF + spisz;
invspisz = totsiz - off;
if (invspisz != sizeof spi)
{
LOG_DBG ((LOG_SA, 40,
"ipsec_invalid_spi: SPI size %d in INVALID_SPI "
"payload unsupported", spisz));
return;
}
memcpy (&spi, p->p + off, sizeof spi);
msg->transport->vtbl->get_dst (msg->transport, &dst);
/* delete matching SPI's from this peer */
ipsec_delete_spi_list (dst, 0, (u_int8_t *)&spi, 1, "INVALID_SPI");
}
static int
ipsec_responder(struct message *msg)
{
struct exchange *exchange = msg->exchange;
int (**script)(struct message *) = 0;
struct payload *p;
u_int16_t type;
/* Check that a new exchange is coherent with the IKE rules. */
if (exchange->step == 0 && exchange->type != ISAKMP_EXCH_TRANSACTION
&& ((exchange->phase == 1 &&
exchange->type != ISAKMP_EXCH_ID_PROT &&
exchange->type != ISAKMP_EXCH_AGGRESSIVE &&
exchange->type != ISAKMP_EXCH_INFO)
|| (exchange->phase == 2 &&
exchange->type != IKE_EXCH_QUICK_MODE &&
exchange->type != ISAKMP_EXCH_INFO))) {
message_drop(msg, ISAKMP_NOTIFY_UNSUPPORTED_EXCHANGE_TYPE,
0, 1, 0);
return -1;
}
LOG_DBG((LOG_MISC, 30, "ipsec_responder: phase %d exchange %d step %d",
exchange->phase, exchange->type, exchange->step));
switch (exchange->type) {
case ISAKMP_EXCH_ID_PROT:
script = ike_main_mode_responder;
break;
#ifdef USE_AGGRESSIVE
case ISAKMP_EXCH_AGGRESSIVE:
script = ike_aggressive_responder;
break;
#endif
#ifdef USE_ISAKMP_CFG
case ISAKMP_EXCH_TRANSACTION:
script = isakmp_cfg_responder;
break;
#endif
case ISAKMP_EXCH_INFO:
for (p = payload_first(msg, ISAKMP_PAYLOAD_NOTIFY); p;
p = TAILQ_NEXT(p, link)) {
type = GET_ISAKMP_NOTIFY_MSG_TYPE(p->p);
LOG_DBG((LOG_EXCHANGE, 10,
"ipsec_responder: got NOTIFY of type %s",
constant_name(isakmp_notify_cst, type)));
switch (type) {
case IPSEC_NOTIFY_INITIAL_CONTACT:
/* Handled by leftover logic. */
break;
#if defined (USE_DPD)
case ISAKMP_NOTIFY_STATUS_DPD_R_U_THERE:
case ISAKMP_NOTIFY_STATUS_DPD_R_U_THERE_ACK:
dpd_handle_notify(msg, p);
break;
#endif
default:
p->flags |= PL_MARK;
break;
}
}
/*
* If any DELETEs are in here, let the logic of leftover
* payloads deal with them.
*/
return 0;
case IKE_EXCH_QUICK_MODE:
script = ike_quick_mode_responder;
break;
default:
message_drop(msg, ISAKMP_NOTIFY_UNSUPPORTED_EXCHANGE_TYPE,
0, 1, 0);
return -1;
}
/* Run the script code for this step. */
if (script)
return script[exchange->step] (msg);
/*
* XXX So far we don't accept any proposals for exchanges we don't
* support.
*/
if (payload_first(msg, ISAKMP_PAYLOAD_SA)) {
message_drop(msg, ISAKMP_NOTIFY_NO_PROPOSAL_CHOSEN, 0, 1, 0);
return -1;
}
return 0;
}
static enum hashes
from_ike_hash(u_int16_t hash)
{
switch (hash) {
case IKE_HASH_MD5:
return HASH_MD5;
case IKE_HASH_SHA:
return HASH_SHA1;
}
return -1;
}
static enum transform
from_ike_crypto(u_int16_t crypto)
{
/* Coincidentally this is the null operation :-) */
return crypto;
}
/*
* Find out whether the attribute of type TYPE with a LEN length value
* pointed to by VALUE is incompatible with what we can handle.
* VMSG is a pointer to the current message.
*/
int
ipsec_is_attribute_incompatible(u_int16_t type, u_int8_t *value, u_int16_t len,
void *vmsg)
{
struct message *msg = vmsg;
u_int16_t dv = decode_16(value);
if (msg->exchange->phase == 1) {
switch (type) {
case IKE_ATTR_ENCRYPTION_ALGORITHM:
return !crypto_get(from_ike_crypto(dv));
case IKE_ATTR_HASH_ALGORITHM:
return !hash_get(from_ike_hash(dv));
case IKE_ATTR_AUTHENTICATION_METHOD:
return !ike_auth_get(dv);
case IKE_ATTR_GROUP_DESCRIPTION:
return (dv < IKE_GROUP_DESC_MODP_768
|| dv > IKE_GROUP_DESC_MODP_1536)
&& (dv < IKE_GROUP_DESC_MODP_2048
|| dv > IKE_GROUP_DESC_MODP_8192);
case IKE_ATTR_GROUP_TYPE:
return 1;
case IKE_ATTR_GROUP_PRIME:
return 1;
case IKE_ATTR_GROUP_GENERATOR_1:
return 1;
case IKE_ATTR_GROUP_GENERATOR_2:
return 1;
case IKE_ATTR_GROUP_CURVE_A:
return 1;
case IKE_ATTR_GROUP_CURVE_B:
return 1;
case IKE_ATTR_LIFE_TYPE:
return dv < IKE_DURATION_SECONDS
|| dv > IKE_DURATION_KILOBYTES;
case IKE_ATTR_LIFE_DURATION:
return len != 2 && len != 4;
case IKE_ATTR_PRF:
return 1;
case IKE_ATTR_KEY_LENGTH:
/*
* Our crypto routines only allows key-lengths which
* are multiples of an octet.
*/
return dv % 8 != 0;
case IKE_ATTR_FIELD_SIZE:
return 1;
case IKE_ATTR_GROUP_ORDER:
return 1;
}
} else {
switch (type) {
case IPSEC_ATTR_SA_LIFE_TYPE:
return dv < IPSEC_DURATION_SECONDS
|| dv > IPSEC_DURATION_KILOBYTES;
case IPSEC_ATTR_SA_LIFE_DURATION:
return len != 2 && len != 4;
case IPSEC_ATTR_GROUP_DESCRIPTION:
return (dv < IKE_GROUP_DESC_MODP_768
|| dv > IKE_GROUP_DESC_MODP_1536)
&& (dv < IKE_GROUP_DESC_MODP_2048
|| IKE_GROUP_DESC_MODP_8192 < dv);
case IPSEC_ATTR_ENCAPSULATION_MODE:
#if defined (USE_NAT_TRAVERSAL)
return dv != IPSEC_ENCAP_TUNNEL
&& dv != IPSEC_ENCAP_TRANSPORT
&& dv != IPSEC_ENCAP_UDP_ENCAP_TUNNEL
&& dv != IPSEC_ENCAP_UDP_ENCAP_TRANSPORT
&& dv != IPSEC_ENCAP_UDP_ENCAP_TUNNEL_DRAFT
&& dv != IPSEC_ENCAP_UDP_ENCAP_TRANSPORT_DRAFT;
#else
return dv < IPSEC_ENCAP_TUNNEL
|| dv > IPSEC_ENCAP_TRANSPORT;
#endif /* USE_NAT_TRAVERSAL */
case IPSEC_ATTR_AUTHENTICATION_ALGORITHM:
return dv < IPSEC_AUTH_HMAC_MD5
|| dv > IPSEC_AUTH_HMAC_RIPEMD;
case IPSEC_ATTR_KEY_LENGTH:
/*
* XXX Blowfish needs '0'. Others appear to disregard
* this attr?
*/
return 0;
case IPSEC_ATTR_KEY_ROUNDS:
return 1;
case IPSEC_ATTR_COMPRESS_DICTIONARY_SIZE:
return 1;
case IPSEC_ATTR_COMPRESS_PRIVATE_ALGORITHM:
return 1;
case IPSEC_ATTR_ECN_TUNNEL:
return 1;
}
}
/* XXX Silence gcc. */
return 1;
}
#ifdef USE_DEBUG
/*
* Log the attribute of TYPE with a LEN length value pointed to by VALUE
* in human-readable form. VMSG is a pointer to the current message.
*/
int
ipsec_debug_attribute(u_int16_t type, u_int8_t *value, u_int16_t len,
void *vmsg)
{
struct message *msg = vmsg;
char val[20];
/* XXX Transient solution. */
if (len == 2)
snprintf(val, sizeof val, "%d", decode_16(value));
else if (len == 4)
snprintf(val, sizeof val, "%d", decode_32(value));
else
snprintf(val, sizeof val, "unrepresentable");
LOG_DBG((LOG_MESSAGE, 50, "Attribute %s value %s",
constant_name(msg->exchange->phase == 1 ? ike_attr_cst :
ipsec_attr_cst, type), val));
return 0;
}
#endif
/*
* Decode the attribute of type TYPE with a LEN length value pointed to by
* VALUE. VIDA is a pointer to a context structure where we can find the
* current message, SA and protocol.
*/
int
ipsec_decode_attribute(u_int16_t type, u_int8_t *value, u_int16_t len,
void *vida)
{
struct ipsec_decode_arg *ida = vida;
struct message *msg = ida->msg;
struct sa *sa = ida->sa;
struct ipsec_sa *isa = sa->data;
struct proto *proto = ida->proto;
struct ipsec_proto *iproto = proto->data;
struct exchange *exchange = msg->exchange;
struct ipsec_exch *ie = exchange->data;
static int lifetype = 0;
if (exchange->phase == 1) {
switch (type) {
case IKE_ATTR_ENCRYPTION_ALGORITHM:
/* XXX Errors possible? */
exchange->crypto = crypto_get(from_ike_crypto(
decode_16(value)));
break;
case IKE_ATTR_HASH_ALGORITHM:
/* XXX Errors possible? */
ie->hash = hash_get(from_ike_hash(decode_16(value)));
break;
case IKE_ATTR_AUTHENTICATION_METHOD:
/* XXX Errors possible? */
ie->ike_auth = ike_auth_get(decode_16(value));
break;
case IKE_ATTR_GROUP_DESCRIPTION:
isa->group_desc = decode_16(value);
break;
case IKE_ATTR_GROUP_TYPE:
break;
case IKE_ATTR_GROUP_PRIME:
break;
case IKE_ATTR_GROUP_GENERATOR_1:
break;
case IKE_ATTR_GROUP_GENERATOR_2:
break;
case IKE_ATTR_GROUP_CURVE_A:
break;
case IKE_ATTR_GROUP_CURVE_B:
break;
case IKE_ATTR_LIFE_TYPE:
lifetype = decode_16(value);
return 0;
case IKE_ATTR_LIFE_DURATION:
switch (lifetype) {
case IKE_DURATION_SECONDS:
switch (len) {
case 2:
sa->seconds = decode_16(value);
break;
case 4:
sa->seconds = decode_32(value);
break;
default:
log_print("ipsec_decode_attribute: "
"unreasonable lifetime");
}
break;
case IKE_DURATION_KILOBYTES:
switch (len) {
case 2:
sa->kilobytes = decode_16(value);
break;
case 4:
sa->kilobytes = decode_32(value);
break;
default:
log_print("ipsec_decode_attribute: "
"unreasonable lifetime");
}
break;
default:
log_print("ipsec_decode_attribute: unknown "
"lifetime type");
}
break;
case IKE_ATTR_PRF:
break;
case IKE_ATTR_KEY_LENGTH:
exchange->key_length = decode_16(value) / 8;
break;
case IKE_ATTR_FIELD_SIZE:
break;
case IKE_ATTR_GROUP_ORDER:
break;
}
} else {
switch (type) {
case IPSEC_ATTR_SA_LIFE_TYPE:
lifetype = decode_16(value);
return 0;
case IPSEC_ATTR_SA_LIFE_DURATION:
switch (lifetype) {
case IPSEC_DURATION_SECONDS:
switch (len) {
case 2:
sa->seconds = decode_16(value);
break;
case 4:
sa->seconds = decode_32(value);
break;
default:
log_print("ipsec_decode_attribute: "
"unreasonable lifetime");
}
break;
case IPSEC_DURATION_KILOBYTES:
switch (len) {
case 2:
sa->kilobytes = decode_16(value);
break;
case 4:
sa->kilobytes = decode_32(value);
break;
default:
log_print("ipsec_decode_attribute: "
"unreasonable lifetime");
}
break;
default:
log_print("ipsec_decode_attribute: unknown "
"lifetime type");
}
break;
case IPSEC_ATTR_GROUP_DESCRIPTION:
isa->group_desc = decode_16(value);
break;
case IPSEC_ATTR_ENCAPSULATION_MODE:
/*
* XXX Multiple protocols must have same
* encapsulation mode, no?
*/
iproto->encap_mode = decode_16(value);
break;
case IPSEC_ATTR_AUTHENTICATION_ALGORITHM:
iproto->auth = decode_16(value);
break;
case IPSEC_ATTR_KEY_LENGTH:
iproto->keylen = decode_16(value);
break;
case IPSEC_ATTR_KEY_ROUNDS:
iproto->keyrounds = decode_16(value);
break;
case IPSEC_ATTR_COMPRESS_DICTIONARY_SIZE:
break;
case IPSEC_ATTR_COMPRESS_PRIVATE_ALGORITHM:
break;
case IPSEC_ATTR_ECN_TUNNEL:
break;
}
}
lifetype = 0;
return 0;
}
/*
* Walk over the attributes of the transform payload found in BUF, and
* fill out the fields of the SA attached to MSG. Also mark the SA as
* processed.
*/
void
ipsec_decode_transform(struct message *msg, struct sa *sa, struct proto *proto,
u_int8_t *buf)
{
struct ipsec_exch *ie = msg->exchange->data;
struct ipsec_decode_arg ida;
LOG_DBG((LOG_MISC, 20, "ipsec_decode_transform: transform %d chosen",
GET_ISAKMP_TRANSFORM_NO(buf)));
ida.msg = msg;
ida.sa = sa;
ida.proto = proto;
/* The default IKE lifetime is 8 hours. */
if (sa->phase == 1)
sa->seconds = 28800;
/* Extract the attributes and stuff them into the SA. */
attribute_map(buf + ISAKMP_TRANSFORM_SA_ATTRS_OFF,
GET_ISAKMP_GEN_LENGTH(buf) - ISAKMP_TRANSFORM_SA_ATTRS_OFF,
ipsec_decode_attribute, &ida);
/*
* If no pseudo-random function was negotiated, it's HMAC.
* XXX As PRF_HMAC currently is zero, this is a no-op.
*/
if (!ie->prf_type)
ie->prf_type = PRF_HMAC;
}
/*
* Delete the IPsec SA represented by the INCOMING direction in protocol PROTO
* of the IKE security association SA.
*/
static void
ipsec_delete_spi(struct sa *sa, struct proto *proto, int incoming)
{
if (sa->phase == 1)
return;
/* XXX Error handling? Is it interesting? */
sysdep_ipsec_delete_spi(sa, proto, incoming);
}
/*
* Store BUF into the g^x entry of the exchange that message MSG belongs to.
* PEER is non-zero when the value is our peer's, and zero when it is ours.
*/
static int
ipsec_g_x(struct message *msg, int peer, u_int8_t *buf)
{
struct exchange *exchange = msg->exchange;
struct ipsec_exch *ie = exchange->data;
u_int8_t **g_x;
int initiator = exchange->initiator ^ peer;
char header[32];
g_x = initiator ? &ie->g_xi : &ie->g_xr;
*g_x = malloc(ie->g_x_len);
if (!*g_x) {
log_error("ipsec_g_x: malloc (%lu) failed",
(unsigned long)ie->g_x_len);
return -1;
}
memcpy(*g_x, buf, ie->g_x_len);
snprintf(header, sizeof header, "ipsec_g_x: g^x%c",
initiator ? 'i' : 'r');
LOG_DBG_BUF((LOG_MISC, 80, header, *g_x, ie->g_x_len));
return 0;
}
/* Generate our DH value. */
int
ipsec_gen_g_x(struct message *msg)
{
struct exchange *exchange = msg->exchange;
struct ipsec_exch *ie = exchange->data;
u_int8_t *buf;
buf = malloc(ISAKMP_KE_SZ + ie->g_x_len);
if (!buf) {
log_error("ipsec_gen_g_x: malloc (%lu) failed",
ISAKMP_KE_SZ + (unsigned long)ie->g_x_len);
return -1;
}
if (message_add_payload(msg, ISAKMP_PAYLOAD_KEY_EXCH, buf,
ISAKMP_KE_SZ + ie->g_x_len, 1)) {
free(buf);
return -1;
}
if (dh_create_exchange(ie->group, buf + ISAKMP_KE_DATA_OFF)) {
log_print("ipsec_gen_g_x: dh_create_exchange failed");
free(buf);
return -1;
}
return ipsec_g_x(msg, 0, buf + ISAKMP_KE_DATA_OFF);
}
/* Save the peer's DH value. */
int
ipsec_save_g_x(struct message *msg)
{
struct exchange *exchange = msg->exchange;
struct ipsec_exch *ie = exchange->data;
struct payload *kep;
kep = payload_first(msg, ISAKMP_PAYLOAD_KEY_EXCH);
kep->flags |= PL_MARK;
ie->g_x_len = GET_ISAKMP_GEN_LENGTH(kep->p) - ISAKMP_KE_DATA_OFF;
/* Check that the given length matches the group's expectancy. */
if (ie->g_x_len != (size_t) dh_getlen(ie->group)) {
/* XXX Is this a good notify type? */
message_drop(msg, ISAKMP_NOTIFY_PAYLOAD_MALFORMED, 0, 1, 0);
return -1;
}
return ipsec_g_x(msg, 1, kep->p + ISAKMP_KE_DATA_OFF);
}
/*
* Get a SPI for PROTO and the transport MSG passed over. Store the
* size where SZ points. NB! A zero return is OK if *SZ is zero.
*/
static u_int8_t *
ipsec_get_spi(size_t *sz, u_int8_t proto, struct message *msg)
{
struct sockaddr *dst, *src;
struct transport *transport = msg->transport;
if (msg->exchange->phase == 1) {
*sz = 0;
return 0;
} else {
/* We are the destination in the SA we want a SPI for. */
transport->vtbl->get_src(transport, &dst);
/* The peer is the source. */
transport->vtbl->get_dst(transport, &src);
return sysdep_ipsec_get_spi(sz, proto, src, dst,
msg->exchange->seq);
}
}
/*
* We have gotten a payload PAYLOAD of type TYPE, which did not get handled
* by the logic of the exchange MSG takes part in. Now is the time to deal
* with such a payload if we know how to, if we don't, return -1, otherwise
* 0.
*/
int
ipsec_handle_leftover_payload(struct message *msg, u_int8_t type,
struct payload *payload)
{
u_int32_t spisz, nspis;
struct sockaddr *dst;
int reenter = 0;
u_int8_t *spis, proto;
struct sa *sa;
switch (type) {
case ISAKMP_PAYLOAD_DELETE:
proto = GET_ISAKMP_DELETE_PROTO(payload->p);
nspis = GET_ISAKMP_DELETE_NSPIS(payload->p);
spisz = GET_ISAKMP_DELETE_SPI_SZ(payload->p);
if (nspis == 0) {
LOG_DBG((LOG_SA, 60, "ipsec_handle_leftover_payload: "
"message specified zero SPIs, ignoring"));
return -1;
}
/* verify proper SPI size */
if ((proto == ISAKMP_PROTO_ISAKMP && spisz !=
ISAKMP_HDR_COOKIES_LEN)
|| (proto != ISAKMP_PROTO_ISAKMP && spisz !=
sizeof(u_int32_t))) {
log_print("ipsec_handle_leftover_payload: invalid SPI "
"size %d for proto %d in DELETE payload",
spisz, proto);
return -1;
}
spis = (u_int8_t *) malloc(nspis * spisz);
if (!spis) {
log_error("ipsec_handle_leftover_payload: malloc "
"(%d) failed", nspis * spisz);
return -1;
}
/* extract SPI and get dst address */
memcpy(spis, payload->p + ISAKMP_DELETE_SPI_OFF, nspis * spisz);
msg->transport->vtbl->get_dst(msg->transport, &dst);
ipsec_delete_spi_list(dst, proto, spis, nspis, "DELETE");
free(spis);
payload->flags |= PL_MARK;
return 0;
case ISAKMP_PAYLOAD_NOTIFY:
switch (GET_ISAKMP_NOTIFY_MSG_TYPE(payload->p)) {
case IPSEC_NOTIFY_INITIAL_CONTACT:
/*
* Permit INITIAL-CONTACT if
* - this is not an AGGRESSIVE mode exchange
* - it is protected by an ISAKMP SA
*
* XXX Instead of the first condition above, we could
* XXX permit this only for phase 2. In the last
* XXX packet of main-mode, this payload, while
* XXX encrypted, is not part of the hash digest. As
* XXX we currently send our own INITIAL-CONTACTs at
* XXX this point, this too would need to be changed.
*/
if (msg->exchange->type == ISAKMP_EXCH_AGGRESSIVE) {
log_print("ipsec_handle_leftover_payload: got "
"INITIAL-CONTACT in AGGRESSIVE mode");
return -1;
}
if ((msg->exchange->flags & EXCHANGE_FLAG_ENCRYPT)
== 0) {
log_print("ipsec_handle_leftover_payload: got "
"INITIAL-CONTACT without ISAKMP SA");
return -1;
}
if ((msg->flags & MSG_AUTHENTICATED) == 0) {
log_print("ipsec_handle_leftover_payload: "
"got unauthenticated INITIAL-CONTACT");
return -1;
}
/*
* Find out who is sending this and then delete every
* SA that is ready. Exchanges will timeout
* themselves and then the non-ready SAs will
* disappear too.
*/
msg->transport->vtbl->get_dst(msg->transport, &dst);
while ((sa = sa_lookup_by_peer(dst,
sysdep_sa_len(dst))) != 0) {
/*
* Don't delete the current SA -- we received
* the notification over it, so it's obviously
* still active. We temporarily need to remove
* the SA from the list to avoid an endless
* loop, but keep a reference so it won't
* disappear meanwhile.
*/
if (sa == msg->isakmp_sa) {
sa_reference(sa);
sa_remove(sa);
reenter = 1;
continue;
}
LOG_DBG((LOG_SA, 30,
"ipsec_handle_leftover_payload: "
"INITIAL-CONTACT made us delete SA %p",
sa));
sa_delete(sa, 0);
}
if (reenter) {
sa_enter(msg->isakmp_sa);
sa_release(msg->isakmp_sa);
}
payload->flags |= PL_MARK;
return 0;
}
}
return -1;
}
/* Return the encryption keylength in octets of the ESP protocol PROTO. */
int
ipsec_esp_enckeylength(struct proto *proto)
{
struct ipsec_proto *iproto = proto->data;
/* Compute the keylength to use. */
switch (proto->id) {
case IPSEC_ESP_DES:
case IPSEC_ESP_DES_IV32:
case IPSEC_ESP_DES_IV64:
return 8;
case IPSEC_ESP_3DES:
return 24;
case IPSEC_ESP_CAST:
if (!iproto->keylen)
return 16;
return iproto->keylen / 8;
case IPSEC_ESP_AES:
case IPSEC_ESP_AES_128_CTR:
if (!iproto->keylen)
return 16;
/* Fallthrough */
default:
return iproto->keylen / 8;
}
}
/* Return the authentication keylength in octets of the ESP protocol PROTO. */
int
ipsec_esp_authkeylength(struct proto *proto)
{
struct ipsec_proto *iproto = proto->data;
switch (iproto->auth) {
case IPSEC_AUTH_HMAC_MD5:
return 16;
case IPSEC_AUTH_HMAC_SHA:
case IPSEC_AUTH_HMAC_RIPEMD:
return 20;
case IPSEC_AUTH_HMAC_SHA2_256:
return 32;
case IPSEC_AUTH_HMAC_SHA2_384:
return 48;
case IPSEC_AUTH_HMAC_SHA2_512:
return 64;
default:
return 0;
}
}
/* Return the authentication keylength in octets of the AH protocol PROTO. */
int
ipsec_ah_keylength(struct proto *proto)
{
switch (proto->id) {
case IPSEC_AH_MD5:
return 16;
case IPSEC_AH_SHA:
case IPSEC_AH_RIPEMD:
return 20;
case IPSEC_AH_SHA2_256:
return 32;
case IPSEC_AH_SHA2_384:
return 48;
case IPSEC_AH_SHA2_512:
return 64;
default:
return -1;
}
}
/* Return the total keymaterial length of the protocol PROTO. */
int
ipsec_keymat_length(struct proto *proto)
{
switch (proto->proto) {
case IPSEC_PROTO_IPSEC_ESP:
return ipsec_esp_enckeylength(proto)
+ ipsec_esp_authkeylength(proto);
case IPSEC_PROTO_IPSEC_AH:
return ipsec_ah_keylength(proto);
default:
return -1;
}
}
/* Helper function for ipsec_get_id(). */
static int
ipsec_get_proto_port(char *section, u_int8_t *tproto, u_int16_t *port)
{
struct protoent *pe = NULL;
struct servent *se;
char *pstr;
pstr = conf_get_str(section, "Protocol");
if (!pstr) {
*tproto = 0;
return 0;
}
*tproto = (u_int8_t)atoi(pstr);
if (!*tproto) {
pe = getprotobyname(pstr);
if (pe)
*tproto = pe->p_proto;
}
if (!*tproto) {
log_print("ipsec_get_proto_port: protocol \"%s\" unknown",
pstr);
return -1;
}
pstr = conf_get_str(section, "Port");
if (!pstr)
return 0;
*port = (u_int16_t)atoi(pstr);
if (!*port) {
se = getservbyname(pstr,
pe ? pe->p_name : (pstr ? pstr : NULL));
if (se)
*port = se->s_port;
}
if (!*port) {
log_print("ipsec_get_proto_port: port \"%s\" unknown",
pstr);
return -1;
}
return 0;
}
/*
* Out of a named section SECTION in the configuration file find out
* the network address and mask as well as the ID type. Put the info
* in the areas pointed to by ADDR, MASK, TPROTO, PORT, and ID respectively.
* Return 0 on success and -1 on failure.
*/
int
ipsec_get_id(char *section, int *id, struct sockaddr **addr,
struct sockaddr **mask, u_int8_t *tproto, u_int16_t *port)
{
char *type, *address, *netmask;
type = conf_get_str(section, "ID-type");
if (!type) {
log_print("ipsec_get_id: section %s has no \"ID-type\" tag",
section);
return -1;
}
*id = constant_value(ipsec_id_cst, type);
switch (*id) {
case IPSEC_ID_IPV4_ADDR:
case IPSEC_ID_IPV6_ADDR: {
int ret;
address = conf_get_str(section, "Address");
if (!address) {
log_print("ipsec_get_id: section %s has no "
"\"Address\" tag", section);
return -1;
}
if (text2sockaddr(address, NULL, addr)) {
log_print("ipsec_get_id: invalid address %s in "
"section %s", address, section);
return -1;
}
ret = ipsec_get_proto_port(section, tproto, port);
if (ret < 0)
free(*addr);
return ret;
}
#ifdef notyet
case IPSEC_ID_FQDN:
return -1;
case IPSEC_ID_USER_FQDN:
return -1;
#endif
case IPSEC_ID_IPV4_ADDR_SUBNET:
case IPSEC_ID_IPV6_ADDR_SUBNET: {
int ret;
address = conf_get_str(section, "Network");
if (!address) {
log_print("ipsec_get_id: section %s has no "
"\"Network\" tag", section);
return -1;
}
if (text2sockaddr(address, NULL, addr)) {
log_print("ipsec_get_id: invalid section %s "
"network %s", section, address);
return -1;
}
netmask = conf_get_str(section, "Netmask");
if (!netmask) {
log_print("ipsec_get_id: section %s has no "
"\"Netmask\" tag", section);
free(*addr);
return -1;
}
if (text2sockaddr(netmask, NULL, mask)) {
log_print("ipsec_id_build: invalid section %s "
"network %s", section, netmask);
free(*addr);
return -1;
}
ret = ipsec_get_proto_port(section, tproto, port);
if (ret < 0) {
free(*mask);
free(*addr);
}
return ret;
}
#ifdef notyet
case IPSEC_ID_IPV4_RANGE:
return -1;
case IPSEC_ID_IPV6_RANGE:
return -1;
case IPSEC_ID_DER_ASN1_DN:
return -1;
case IPSEC_ID_DER_ASN1_GN:
return -1;
case IPSEC_ID_KEY_ID:
return -1;
#endif
default:
log_print("ipsec_get_id: unknown ID type \"%s\" in "
"section %s", type, section);
return -1;
}
return 0;
}
/*
* XXX I rather want this function to return a status code, and fail if
* we cannot fit the information in the supplied buffer.
*/
static void
ipsec_decode_id(char *buf, size_t size, u_int8_t *id, size_t id_len,
int isakmpform)
{
int id_type;
char *addr = 0, *mask = 0;
u_int32_t *idp;
if (id) {
if (!isakmpform) {
/*
* Exchanges and SAs dont carry the IDs in ISAKMP
* form.
*/
id -= ISAKMP_GEN_SZ;
id_len += ISAKMP_GEN_SZ;
}
id_type = GET_ISAKMP_ID_TYPE(id);
idp = (u_int32_t *) (id + ISAKMP_ID_DATA_OFF);
switch (id_type) {
case IPSEC_ID_IPV4_ADDR:
util_ntoa(&addr, AF_INET, id + ISAKMP_ID_DATA_OFF);
snprintf(buf, size, "%08x: %s",
decode_32(id + ISAKMP_ID_DATA_OFF), addr);
break;
case IPSEC_ID_IPV4_ADDR_SUBNET:
util_ntoa(&addr, AF_INET, id + ISAKMP_ID_DATA_OFF);
util_ntoa(&mask, AF_INET, id + ISAKMP_ID_DATA_OFF + 4);
snprintf(buf, size, "%08x/%08x: %s/%s",
decode_32(id + ISAKMP_ID_DATA_OFF),
decode_32(id + ISAKMP_ID_DATA_OFF + 4), addr, mask);
break;
case IPSEC_ID_IPV6_ADDR:
util_ntoa(&addr, AF_INET6, id + ISAKMP_ID_DATA_OFF);
snprintf(buf, size, "%08x%08x%08x%08x: %s", *idp,
*(idp + 1), *(idp + 2), *(idp + 3), addr);
break;
case IPSEC_ID_IPV6_ADDR_SUBNET:
util_ntoa(&addr, AF_INET6, id + ISAKMP_ID_DATA_OFF);
util_ntoa(&mask, AF_INET6, id + ISAKMP_ID_DATA_OFF +
sizeof(struct in6_addr));
snprintf(buf, size,
"%08x%08x%08x%08x/%08x%08x%08x%08x: %s/%s", *idp,
*(idp + 1), *(idp + 2), *(idp + 3), *(idp + 4),
*(idp + 5), *(idp + 6), *(idp + 7), addr, mask);
break;
case IPSEC_ID_FQDN:
case IPSEC_ID_USER_FQDN:
/* String is not NUL terminated, be careful */
id_len -= ISAKMP_ID_DATA_OFF;
id_len = MIN(id_len, size - 1);
memcpy(buf, id + ISAKMP_ID_DATA_OFF, id_len);
buf[id_len] = '\0';
break;
#ifdef USE_X509
case IPSEC_ID_DER_ASN1_DN:
addr = x509_DN_string(id + ISAKMP_ID_DATA_OFF,
id_len - ISAKMP_ID_DATA_OFF);
if (!addr) {
snprintf(buf, size, "unparsable ASN1 DN ID");
return;
}
strlcpy(buf, addr, size);
break;
#endif
default:
snprintf(buf, size, "<id type unknown: %x>", id_type);
break;
}
} else
snprintf(buf, size, "<no ipsec id>");
if (addr)
free(addr);
if (mask)
free(mask);
}
char *
ipsec_decode_ids(char *fmt, u_int8_t *id1, size_t id1_len, u_int8_t *id2,
size_t id2_len, int isakmpform)
{
static char result[1024];
char s_id1[256], s_id2[256];
ipsec_decode_id(s_id1, sizeof s_id1, id1, id1_len, isakmpform);
ipsec_decode_id(s_id2, sizeof s_id2, id2, id2_len, isakmpform);
snprintf(result, sizeof result, fmt, s_id1, s_id2);
return result;
}
/*
* Out of a named section SECTION in the configuration file build an
* ISAKMP ID payload. Ths payload size should be stashed in SZ.
* The caller is responsible for freeing the payload.
*/
u_int8_t *
ipsec_build_id(char *section, size_t *sz)
{
struct sockaddr *addr, *mask;
u_int8_t *p;
int id, subnet = 0;
u_int8_t tproto = 0;
u_int16_t port = 0;
if (ipsec_get_id(section, &id, &addr, &mask, &tproto, &port))
return 0;
if (id == IPSEC_ID_IPV4_ADDR_SUBNET || id == IPSEC_ID_IPV6_ADDR_SUBNET)
subnet = 1;
*sz = ISAKMP_ID_SZ + sockaddr_addrlen(addr);
if (subnet)
*sz += sockaddr_addrlen(mask);
p = malloc(*sz);
if (!p) {
log_print("ipsec_build_id: malloc(%lu) failed",
(unsigned long)*sz);
if (subnet)
free(mask);
free(addr);
return 0;
}
SET_ISAKMP_ID_TYPE(p, id);
SET_ISAKMP_ID_DOI_DATA(p, (unsigned char *)"\000\000\000");
memcpy(p + ISAKMP_ID_DATA_OFF, sockaddr_addrdata(addr),
sockaddr_addrlen(addr));
if (subnet)
memcpy(p + ISAKMP_ID_DATA_OFF + sockaddr_addrlen(addr),
sockaddr_addrdata(mask), sockaddr_addrlen(mask));
SET_IPSEC_ID_PROTO(p + ISAKMP_ID_DOI_DATA_OFF, tproto);
SET_IPSEC_ID_PORT(p + ISAKMP_ID_DOI_DATA_OFF, port);
if (subnet)
free(mask);
free(addr);
return p;
}
/*
* copy an ISAKMPD id
*/
int
ipsec_clone_id(u_int8_t **did, size_t *did_len, u_int8_t *id, size_t id_len)
{
if (*did)
free(*did);
if (!id_len || !id) {
*did = 0;
*did_len = 0;
return 0;
}
*did = malloc(id_len);
if (!*did) {
*did_len = 0;
log_error("ipsec_clone_id: malloc(%lu) failed",
(unsigned long)id_len);
return -1;
}
*did_len = id_len;
memcpy(*did, id, id_len);
return 0;
}
/*
* IPsec-specific PROTO initializations. SECTION is only set if we are the
* initiator thus only usable there.
* XXX I want to fix this later.
*/
void
ipsec_proto_init(struct proto *proto, char *section)
{
struct ipsec_proto *iproto = proto->data;
if (proto->sa->phase == 2)
iproto->replay_window = section ? conf_get_num(section,
"ReplayWindow", DEFAULT_REPLAY_WINDOW) :
DEFAULT_REPLAY_WINDOW;
}
/*
* Add a notification payload of type INITIAL CONTACT to MSG if this is
* the first contact we have made to our peer.
*/
int
ipsec_initial_contact(struct message *msg)
{
u_int8_t *buf;
if (ipsec_contacted(msg))
return 0;
buf = malloc(ISAKMP_NOTIFY_SZ + ISAKMP_HDR_COOKIES_LEN);
if (!buf) {
log_error("ike_phase_1_initial_contact: malloc (%d) failed",
ISAKMP_NOTIFY_SZ + ISAKMP_HDR_COOKIES_LEN);
return -1;
}
SET_ISAKMP_NOTIFY_DOI(buf, IPSEC_DOI_IPSEC);
SET_ISAKMP_NOTIFY_PROTO(buf, ISAKMP_PROTO_ISAKMP);
SET_ISAKMP_NOTIFY_SPI_SZ(buf, ISAKMP_HDR_COOKIES_LEN);
SET_ISAKMP_NOTIFY_MSG_TYPE(buf, IPSEC_NOTIFY_INITIAL_CONTACT);
memcpy(buf + ISAKMP_NOTIFY_SPI_OFF, msg->isakmp_sa->cookies,
ISAKMP_HDR_COOKIES_LEN);
if (message_add_payload(msg, ISAKMP_PAYLOAD_NOTIFY, buf,
ISAKMP_NOTIFY_SZ + ISAKMP_HDR_COOKIES_LEN, 1)) {
free(buf);
return -1;
}
return ipsec_add_contact(msg);
}
/*
* Compare the two contacts pointed to by A and B. Return negative if
* *A < *B, 0 if they are equal, and positive if *A is the largest of them.
*/
static int
addr_cmp(const void *a, const void *b)
{
const struct contact *x = a, *y = b;
int minlen = MIN(x->len, y->len);
int rv = memcmp(x->addr, y->addr, minlen);
return rv ? rv : (x->len - y->len);
}
/*
* Add the peer that MSG is bound to as an address we don't want to send
* INITIAL CONTACT too from now on. Do not call this function with a
* specific address duplicate times. We want fast lookup, speed of insertion
* is unimportant, if this is to scale.
*/
static int
ipsec_add_contact(struct message *msg)
{
struct contact *new_contacts;
struct sockaddr *dst, *addr;
int cnt;
if (contact_cnt == contact_limit) {
cnt = contact_limit ? 2 * contact_limit : 64;
new_contacts = realloc(contacts, cnt * sizeof contacts[0]);
if (!new_contacts) {
log_error("ipsec_add_contact: "
"realloc (%p, %lu) failed", contacts,
cnt * (unsigned long) sizeof contacts[0]);
return -1;
}
contact_limit = cnt;
contacts = new_contacts;
}
msg->transport->vtbl->get_dst(msg->transport, &dst);
addr = malloc(sysdep_sa_len(dst));
if (!addr) {
log_error("ipsec_add_contact: malloc (%d) failed",
sysdep_sa_len(dst));
return -1;
}
memcpy(addr, dst, sysdep_sa_len(dst));
contacts[contact_cnt].addr = addr;
contacts[contact_cnt++].len = sysdep_sa_len(dst);
/*
* XXX There are better algorithms for already mostly-sorted data like
* this, but only qsort is standard. I will someday do this inline.
*/
qsort(contacts, contact_cnt, sizeof *contacts, addr_cmp);
return 0;
}
/* Return true if the recipient of MSG has already been contacted. */
static int
ipsec_contacted(struct message *msg)
{
struct contact contact;
msg->transport->vtbl->get_dst(msg->transport, &contact.addr);
contact.len = sysdep_sa_len(contact.addr);
return contacts ? (bsearch(&contact, contacts, contact_cnt,
sizeof *contacts, addr_cmp) != 0) : 0;
}
/* Add a HASH for to MSG. */
u_int8_t *
ipsec_add_hash_payload(struct message *msg, size_t hashsize)
{
u_int8_t *buf;
buf = malloc(ISAKMP_HASH_SZ + hashsize);
if (!buf) {
log_error("ipsec_add_hash_payload: malloc (%lu) failed",
ISAKMP_HASH_SZ + (unsigned long) hashsize);
return 0;
}
if (message_add_payload(msg, ISAKMP_PAYLOAD_HASH, buf,
ISAKMP_HASH_SZ + hashsize, 1)) {
free(buf);
return 0;
}
return buf;
}
/* Fill in the HASH payload of MSG. */
int
ipsec_fill_in_hash(struct message *msg)
{
struct exchange *exchange = msg->exchange;
struct sa *isakmp_sa = msg->isakmp_sa;
struct ipsec_sa *isa = isakmp_sa->data;
struct hash *hash = hash_get(isa->hash);
struct prf *prf;
struct payload *payload;
u_int8_t *buf;
u_int32_t i;
char header[80];
/* If no SKEYID_a, we need not do anything. */
if (!isa->skeyid_a)
return 0;
payload = payload_first(msg, ISAKMP_PAYLOAD_HASH);
if (!payload) {
log_print("ipsec_fill_in_hash: no HASH payload found");
return -1;
}
buf = payload->p;
/* Allocate the prf and start calculating our HASH(1). */
LOG_DBG_BUF((LOG_MISC, 90, "ipsec_fill_in_hash: SKEYID_a",
isa->skeyid_a, isa->skeyid_len));
prf = prf_alloc(isa->prf_type, hash->type, isa->skeyid_a,
isa->skeyid_len);
if (!prf)
return -1;
prf->Init(prf->prfctx);
LOG_DBG_BUF((LOG_MISC, 90, "ipsec_fill_in_hash: message_id",
exchange->message_id, ISAKMP_HDR_MESSAGE_ID_LEN));
prf->Update(prf->prfctx, exchange->message_id,
ISAKMP_HDR_MESSAGE_ID_LEN);
/* Loop over all payloads after HASH(1). */
for (i = 2; i < msg->iovlen; i++) {
/* XXX Misleading payload type printouts. */
snprintf(header, sizeof header,
"ipsec_fill_in_hash: payload %d after HASH(1)", i - 1);
LOG_DBG_BUF((LOG_MISC, 90, header, msg->iov[i].iov_base,
msg->iov[i].iov_len));
prf->Update(prf->prfctx, msg->iov[i].iov_base,
msg->iov[i].iov_len);
}
prf->Final(buf + ISAKMP_HASH_DATA_OFF, prf->prfctx);
prf_free(prf);
LOG_DBG_BUF((LOG_MISC, 80, "ipsec_fill_in_hash: HASH(1)", buf +
ISAKMP_HASH_DATA_OFF, hash->hashsize));
return 0;
}
/* Add a HASH payload to MSG, if we have an ISAKMP SA we're protected by. */
static int
ipsec_informational_pre_hook(struct message *msg)
{
struct sa *isakmp_sa = msg->isakmp_sa;
struct ipsec_sa *isa;
struct hash *hash;
if (!isakmp_sa)
return 0;
isa = isakmp_sa->data;
hash = hash_get(isa->hash);
return ipsec_add_hash_payload(msg, hash->hashsize) == 0;
}
/*
* Fill in the HASH payload in MSG, if we have an ISAKMP SA we're protected by.
*/
static int
ipsec_informational_post_hook(struct message *msg)
{
if (!msg->isakmp_sa)
return 0;
return ipsec_fill_in_hash(msg);
}
ssize_t
ipsec_id_size(char *section, u_int8_t *id)
{
char *type, *data;
type = conf_get_str(section, "ID-type");
if (!type) {
log_print("ipsec_id_size: section %s has no \"ID-type\" tag",
section);
return -1;
}
*id = constant_value(ipsec_id_cst, type);
switch (*id) {
case IPSEC_ID_IPV4_ADDR:
return sizeof(struct in_addr);
case IPSEC_ID_IPV4_ADDR_SUBNET:
return 2 * sizeof(struct in_addr);
case IPSEC_ID_IPV6_ADDR:
return sizeof(struct in6_addr);
case IPSEC_ID_IPV6_ADDR_SUBNET:
return 2 * sizeof(struct in6_addr);
case IPSEC_ID_FQDN:
case IPSEC_ID_USER_FQDN:
case IPSEC_ID_KEY_ID:
case IPSEC_ID_DER_ASN1_DN:
case IPSEC_ID_DER_ASN1_GN:
data = conf_get_str(section, "Name");
if (!data) {
log_print("ipsec_id_size: "
"section %s has no \"Name\" tag", section);
return -1;
}
return strlen(data);
}
log_print("ipsec_id_size: unrecognized/unsupported ID-type %d (%s)",
*id, type);
return -1;
}
/*
* Generate a string version of the ID.
*/
char *
ipsec_id_string(u_int8_t *id, size_t id_len)
{
char *buf = 0;
char *addrstr = 0;
size_t len, size;
/*
* XXX Real ugly way of making the offsets correct. Be aware that id
* now will point before the actual buffer and cannot be dereferenced
* without an offset larger than or equal to ISAKM_GEN_SZ.
*/
id -= ISAKMP_GEN_SZ;
/* This is the actual length of the ID data field. */
id_len += ISAKMP_GEN_SZ - ISAKMP_ID_DATA_OFF;
/*
* Conservative allocation.
* XXX I think the ASN1 DN case can be thought through to give a better
* estimate.
*/
size = MAX(sizeof "ipv6/ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
sizeof "asn1_dn/" + id_len - ISAKMP_ID_DATA_OFF);
buf = malloc(size);
if (!buf)
/* XXX Log? */
goto fail;
switch (GET_ISAKMP_ID_TYPE(id)) {
case IPSEC_ID_IPV4_ADDR:
if (id_len < sizeof(struct in_addr))
goto fail;
util_ntoa(&addrstr, AF_INET, id + ISAKMP_ID_DATA_OFF);
if (!addrstr)
goto fail;
snprintf(buf, size, "ipv4/%s", addrstr);
break;
case IPSEC_ID_IPV6_ADDR:
if (id_len < sizeof(struct in6_addr))
goto fail;
util_ntoa(&addrstr, AF_INET6, id + ISAKMP_ID_DATA_OFF);
if (!addrstr)
goto fail;
snprintf(buf, size, "ipv6/%s", addrstr);
break;
case IPSEC_ID_FQDN:
case IPSEC_ID_USER_FQDN:
strlcpy(buf,
GET_ISAKMP_ID_TYPE(id) == IPSEC_ID_FQDN ? "fqdn/" : "ufqdn/",
size);
len = strlen(buf);
memcpy(buf + len, id + ISAKMP_ID_DATA_OFF, id_len);
*(buf + len + id_len) = '\0';
break;
#ifdef USE_X509
case IPSEC_ID_DER_ASN1_DN:
strlcpy(buf, "asn1_dn/", size);
len = strlen(buf);
addrstr = x509_DN_string(id + ISAKMP_ID_DATA_OFF,
id_len - ISAKMP_ID_DATA_OFF);
if (!addrstr)
goto fail;
if (size < len + strlen(addrstr) + 1)
goto fail;
strlcpy(buf + len, addrstr, size - len);
break;
#endif
default:
/* Unknown type. */
LOG_DBG((LOG_MISC, 10,
"ipsec_id_string: unknown identity type %d\n",
GET_ISAKMP_ID_TYPE(id)));
goto fail;
}
if (addrstr)
free(addrstr);
return buf;
fail:
if (buf)
free(buf);
if (addrstr)
free(addrstr);
return 0;
}
|