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
|
/* Security Policy Data Base (such as it is)
* Copyright (C) 1998-2001 D. Hugh Redelmeier.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* 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 General Public License
* for more details.
*
* RCSID $Id: spdb.c,v 1.88 2003/09/02 01:14:00 mcr Exp $
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/queue.h>
#include <freeswan.h>
#include <freeswan/ipsec_policy.h>
#include "constants.h"
#include "defs.h"
#include "id.h"
#include "connections.h" /* needs id.h */
#include "state.h"
#include "packet.h"
#include "keys.h"
#include "kernel.h" /* needs connections.h */
#include "log.h"
#include "spdb.h"
#include "whack.h" /* for RC_LOG_SERIOUS */
#include "sha1.h"
#include "md5.h"
#include "crypto.h" /* requires sha1.h and md5.h */
#define AD(x) x, elemsof(x) /* Array Description */
#define AD_NULL NULL, 0
/**************** Oakely (main mode) SA database ****************/
/* arrays of attributes for transforms, preshared key */
static struct db_attr otpsk1024des3md5[] = {
{ OAKLEY_ENCRYPTION_ALGORITHM, OAKLEY_3DES_CBC },
{ OAKLEY_HASH_ALGORITHM, OAKLEY_MD5 },
{ OAKLEY_AUTHENTICATION_METHOD, OAKLEY_PRESHARED_KEY },
{ OAKLEY_GROUP_DESCRIPTION, OAKLEY_GROUP_MODP1024 },
};
static struct db_attr otpsk1536des3md5[] = {
{ OAKLEY_ENCRYPTION_ALGORITHM, OAKLEY_3DES_CBC },
{ OAKLEY_HASH_ALGORITHM, OAKLEY_MD5 },
{ OAKLEY_AUTHENTICATION_METHOD, OAKLEY_PRESHARED_KEY },
{ OAKLEY_GROUP_DESCRIPTION, OAKLEY_GROUP_MODP1536 },
};
static struct db_attr otpsk1024des3sha[] = {
{ OAKLEY_ENCRYPTION_ALGORITHM, OAKLEY_3DES_CBC },
{ OAKLEY_HASH_ALGORITHM, OAKLEY_SHA },
{ OAKLEY_AUTHENTICATION_METHOD, OAKLEY_PRESHARED_KEY },
{ OAKLEY_GROUP_DESCRIPTION, OAKLEY_GROUP_MODP1024 },
};
static struct db_attr otpsk1536des3sha[] = {
{ OAKLEY_ENCRYPTION_ALGORITHM, OAKLEY_3DES_CBC },
{ OAKLEY_HASH_ALGORITHM, OAKLEY_SHA },
{ OAKLEY_AUTHENTICATION_METHOD, OAKLEY_PRESHARED_KEY },
{ OAKLEY_GROUP_DESCRIPTION, OAKLEY_GROUP_MODP1536 },
};
/* arrays of attributes for transforms, RSA signatures */
static struct db_attr otrsasig1024des3md5[] = {
{ OAKLEY_ENCRYPTION_ALGORITHM, OAKLEY_3DES_CBC },
{ OAKLEY_HASH_ALGORITHM, OAKLEY_MD5 },
{ OAKLEY_AUTHENTICATION_METHOD, OAKLEY_RSA_SIG },
{ OAKLEY_GROUP_DESCRIPTION, OAKLEY_GROUP_MODP1024 },
};
static struct db_attr otrsasig1536des3md5[] = {
{ OAKLEY_ENCRYPTION_ALGORITHM, OAKLEY_3DES_CBC },
{ OAKLEY_HASH_ALGORITHM, OAKLEY_MD5 },
{ OAKLEY_AUTHENTICATION_METHOD, OAKLEY_RSA_SIG },
{ OAKLEY_GROUP_DESCRIPTION, OAKLEY_GROUP_MODP1536 },
};
static struct db_attr otrsasig1024des3sha[] = {
{ OAKLEY_ENCRYPTION_ALGORITHM, OAKLEY_3DES_CBC },
{ OAKLEY_HASH_ALGORITHM, OAKLEY_SHA },
{ OAKLEY_AUTHENTICATION_METHOD, OAKLEY_RSA_SIG },
{ OAKLEY_GROUP_DESCRIPTION, OAKLEY_GROUP_MODP1024 },
};
static struct db_attr otrsasig1536des3sha[] = {
{ OAKLEY_ENCRYPTION_ALGORITHM, OAKLEY_3DES_CBC },
{ OAKLEY_HASH_ALGORITHM, OAKLEY_SHA },
{ OAKLEY_AUTHENTICATION_METHOD, OAKLEY_RSA_SIG },
{ OAKLEY_GROUP_DESCRIPTION, OAKLEY_GROUP_MODP1536 },
};
/* We won't accept this, but by proposing it, we get to test
* our rejection. We better not propose it to an IKE daemon
* that will accept it!
*/
#ifdef TEST_INDECENT_PROPOSAL
static struct db_attr otpsk1024des3tiger[] = {
{ OAKLEY_ENCRYPTION_ALGORITHM, OAKLEY_3DES_CBC },
{ OAKLEY_HASH_ALGORITHM, OAKLEY_TIGER },
{ OAKLEY_AUTHENTICATION_METHOD, OAKLEY_PRESHARED_KEY },
{ OAKLEY_GROUP_DESCRIPTION, OAKLEY_GROUP_MODP1024 },
};
#endif /* TEST_INDECENT_PROPOSAL */
/* tables of transforms, in preference order (select based on AUTH) */
static struct db_trans oakley_trans_psk[] = {
#ifdef TEST_INDECENT_PROPOSAL
{ KEY_IKE, AD(otpsk1024des3tiger) },
#endif
{ KEY_IKE, AD(otpsk1536des3md5) },
{ KEY_IKE, AD(otpsk1536des3sha) },
{ KEY_IKE, AD(otpsk1024des3sha) },
{ KEY_IKE, AD(otpsk1024des3md5) },
};
static struct db_trans oakley_trans_rsasig[] = {
{ KEY_IKE, AD(otrsasig1536des3md5) },
{ KEY_IKE, AD(otrsasig1536des3sha) },
{ KEY_IKE, AD(otrsasig1024des3sha) },
{ KEY_IKE, AD(otrsasig1024des3md5) },
};
/* In this table, either PSK or RSA sig is accepted.
* The order matters, but I don't know what would be best.
*/
static struct db_trans oakley_trans_pskrsasig[] = {
#ifdef TEST_INDECENT_PROPOSAL
{ KEY_IKE, AD(otpsk1024des3tiger) },
#endif
{ KEY_IKE, AD(otrsasig1536des3md5) },
{ KEY_IKE, AD(otpsk1536des3md5) },
{ KEY_IKE, AD(otrsasig1536des3sha) },
{ KEY_IKE, AD(otpsk1536des3sha) },
{ KEY_IKE, AD(otrsasig1024des3sha) },
{ KEY_IKE, AD(otpsk1024des3sha) },
{ KEY_IKE, AD(otrsasig1024des3md5) },
{ KEY_IKE, AD(otpsk1024des3md5) },
};
/* array of proposals to be conjoined (can only be one for Oakley) */
static struct db_prop oakley_pc_psk[] =
{ { PROTO_ISAKMP, AD(oakley_trans_psk) } };
static struct db_prop oakley_pc_rsasig[] =
{ { PROTO_ISAKMP, AD(oakley_trans_rsasig) } };
static struct db_prop oakley_pc_pskrsasig[] =
{ { PROTO_ISAKMP, AD(oakley_trans_pskrsasig) } };
/* array of proposal conjuncts (can only be one) */
static struct db_prop_conj oakley_props_psk[] = { { AD(oakley_pc_psk) } };
static struct db_prop_conj oakley_props_rsasig[] = { { AD(oakley_pc_rsasig) } };
static struct db_prop_conj oakley_props_pskrsasig[] = { { AD(oakley_pc_pskrsasig) } };
/* the sadb entry, subscripted by POLICY_PSK and POLICY_RSASIG bits */
struct db_sa oakley_sadb[] = {
{ AD_NULL }, /* none */
{ AD(oakley_props_psk) }, /* POLICY_PSK */
{ AD(oakley_props_rsasig) }, /* POLICY_RSASIG */
{ AD(oakley_props_pskrsasig) }, /* POLICY_PSK + POLICY_RSASIG */
};
/**************** IPsec (quick mode) SA database ****************/
/* arrays of attributes for transforms */
static struct db_attr espmd5_attr[] = {
{ AUTH_ALGORITHM, AUTH_ALGORITHM_HMAC_MD5 },
};
static struct db_attr espsha1_attr[] = {
{ AUTH_ALGORITHM, AUTH_ALGORITHM_HMAC_SHA1 },
};
static struct db_attr ah_HMAC_MD5_attr[] = {
{ AUTH_ALGORITHM, AUTH_ALGORITHM_HMAC_MD5 },
};
static struct db_attr ah_HMAC_SHA1_attr[] = {
{ AUTH_ALGORITHM, AUTH_ALGORITHM_HMAC_SHA1 },
};
/* arrays of transforms, each in in preference order */
static struct db_trans espa_trans[] = {
{ ESP_3DES, AD(espmd5_attr) },
{ ESP_3DES, AD(espsha1_attr) },
};
static struct db_trans esp_trans[] = {
{ ESP_3DES, AD_NULL },
};
#ifdef SUPPORT_ESP_NULL
static struct db_trans espnull_trans[] = {
{ ESP_NULL, AD(espmd5_attr) },
{ ESP_NULL, AD(espsha1_attr) },
};
#endif /* SUPPORT_ESP_NULL */
static struct db_trans ah_trans[] = {
{ AH_MD5, AD(ah_HMAC_MD5_attr) },
{ AH_SHA, AD(ah_HMAC_SHA1_attr) },
};
static struct db_trans ipcomp_trans[] = {
{ IPCOMP_DEFLATE, AD_NULL },
};
/* arrays of proposals to be conjoined */
static struct db_prop ah_pc[] = {
{ PROTO_IPSEC_AH, AD(ah_trans) },
};
#ifdef SUPPORT_ESP_NULL
static struct db_prop espnull_pc[] = {
{ PROTO_IPSEC_ESP, AD(espnull_trans) },
};
#endif /* SUPPORT_ESP_NULL */
static struct db_prop esp_pc[] = {
{ PROTO_IPSEC_ESP, AD(espa_trans) },
};
static struct db_prop ah_esp_pc[] = {
{ PROTO_IPSEC_AH, AD(ah_trans) },
{ PROTO_IPSEC_ESP, AD(esp_trans) },
};
static struct db_prop compress_pc[] = {
{ PROTO_IPCOMP, AD(ipcomp_trans) },
};
static struct db_prop ah_compress_pc[] = {
{ PROTO_IPSEC_AH, AD(ah_trans) },
{ PROTO_IPCOMP, AD(ipcomp_trans) },
};
#ifdef SUPPORT_ESP_NULL
static struct db_prop espnull_compress_pc[] = {
{ PROTO_IPSEC_ESP, AD(espnull_trans) },
{ PROTO_IPCOMP, AD(ipcomp_trans) },
};
#endif /* SUPPORT_ESP_NULL */
static struct db_prop esp_compress_pc[] = {
{ PROTO_IPSEC_ESP, AD(espa_trans) },
{ PROTO_IPCOMP, AD(ipcomp_trans) },
};
static struct db_prop ah_esp_compress_pc[] = {
{ PROTO_IPSEC_AH, AD(ah_trans) },
{ PROTO_IPSEC_ESP, AD(esp_trans) },
{ PROTO_IPCOMP, AD(ipcomp_trans) },
};
/* arrays of proposal alternatives (each element is a conjunction) */
static struct db_prop_conj ah_props[] = {
{ AD(ah_pc) },
#ifdef SUPPORT_ESP_NULL
{ AD(espnull_pc) }
#endif
};
static struct db_prop_conj esp_props[] =
{ { AD(esp_pc) } };
static struct db_prop_conj ah_esp_props[] =
{ { AD(ah_esp_pc) } };
static struct db_prop_conj compress_props[] = {
{ AD(compress_pc) },
};
static struct db_prop_conj ah_compress_props[] = {
{ AD(ah_compress_pc) },
#ifdef SUPPORT_ESP_NULL
{ AD(espnull_compress_pc) }
#endif
};
static struct db_prop_conj esp_compress_props[] =
{ { AD(esp_compress_pc) } };
static struct db_prop_conj ah_esp_compress_props[] =
{ { AD(ah_esp_compress_pc) } };
/* The IPsec sadb is subscripted by a bitset (subset of policy)
* with members from { POLICY_ENCRYPT, POLICY_AUTHENTICATE, POLICY_COMPRESS }
* shifted right by POLICY_IPSEC_SHIFT.
*/
struct db_sa ipsec_sadb[1 << 3] = {
{ AD_NULL }, /* none */
{ AD(esp_props) }, /* POLICY_ENCRYPT */
{ AD(ah_props) }, /* POLICY_AUTHENTICATE */
{ AD(ah_esp_props) }, /* POLICY_ENCRYPT+POLICY_AUTHENTICATE */
{ AD(compress_props) }, /* POLICY_COMPRESS */
{ AD(esp_compress_props) }, /* POLICY_ENCRYPT+POLICY_COMPRESS */
{ AD(ah_compress_props) }, /* POLICY_AUTHENTICATE+POLICY_COMPRESS */
{ AD(ah_esp_compress_props) }, /* POLICY_ENCRYPT+POLICY_AUTHENTICATE+POLICY_COMPRESS */
};
#undef AD
#undef AD_NULL
/* output an attribute (within an SA) */
static bool
out_attr(int type
, unsigned long val
, struct_desc *attr_desc
, enum_names **attr_val_descs USED_BY_DEBUG
, pb_stream *pbs)
{
struct isakmp_attribute attr;
if (val >> 16 == 0)
{
/* short value: use TV form */
attr.isaat_af_type = type | ISAKMP_ATTR_AF_TV;
attr.isaat_lv = val;
if (!out_struct(&attr, attr_desc, pbs, NULL))
return FALSE;
}
else
{
/* This is a real fudge! Since we rarely use long attributes
* and since this is the only place where we can cause an
* ISAKMP message length to be other than a multiple of 4 octets,
* we force the length of the value to be a multiple of 4 octets.
* Furthermore, we only handle values up to 4 octets in length.
* Voila: a fixed format!
*/
pb_stream val_pbs;
u_int32_t nval = htonl(val);
attr.isaat_af_type = type | ISAKMP_ATTR_AF_TLV;
if (!out_struct(&attr, attr_desc, pbs, &val_pbs)
|| !out_raw(&nval, sizeof(nval), &val_pbs, "long attribute value"))
return FALSE;
close_output_pbs(&val_pbs);
}
DBG(DBG_EMITTING,
enum_names *d = attr_val_descs[type];
if (d != NULL)
DBG_log(" [%lu is %s]"
, val, enum_show(d, val)));
return TRUE;
}
/* Output an SA, as described by a db_sa.
* This has the side-effect of allocating SPIs for us.
*/
bool
out_sa(pb_stream *outs
, struct db_sa *sadb
, struct state *st
, bool oakley_mode
, u_int8_t np)
{
pb_stream sa_pbs;
int pcn;
bool ah_spi_generated = FALSE
, esp_spi_generated = FALSE
, ipcomp_cpi_generated = FALSE;
/* SA header out */
{
struct isakmp_sa sa;
sa.isasa_np = np;
st->st_doi = sa.isasa_doi = ISAKMP_DOI_IPSEC; /* all we know */
if (!out_struct(&sa, &isakmp_sa_desc, outs, &sa_pbs))
return FALSE;
}
/* within SA: situation out */
st->st_situation = SIT_IDENTITY_ONLY;
if (!out_struct(&st->st_situation, &ipsec_sit_desc, &sa_pbs, NULL))
return FALSE;
/* within SA: Proposal Payloads
*
* Multiple Proposals with the same number are simultaneous
* (conjuncts) and must deal with different protocols (AH or ESP).
* Proposals with different numbers are alternatives (disjuncts),
* in preference order.
* Proposal numbers must be monotonic.
* See RFC 2408 "ISAKMP" 4.2
*/
for (pcn = 0; pcn != sadb->prop_conj_cnt; pcn++)
{
struct db_prop_conj *pc = &sadb->prop_conjs[pcn];
int pn;
for (pn = 0; pn != pc->prop_cnt; pn++)
{
struct db_prop *p = &pc->props[pn];
pb_stream proposal_pbs;
struct isakmp_proposal proposal;
struct_desc *trans_desc;
struct_desc *attr_desc;
enum_names **attr_val_descs;
int tn;
bool tunnel_mode;
tunnel_mode = (pn == pc->prop_cnt-1)
&& (st->st_policy & POLICY_TUNNEL);
/* Proposal header */
proposal.isap_np = pcn == sadb->prop_conj_cnt-1 && pn == pc->prop_cnt-1
? ISAKMP_NEXT_NONE : ISAKMP_NEXT_P;
proposal.isap_proposal = pcn;
proposal.isap_protoid = p->protoid;
proposal.isap_spisize = oakley_mode ? 0
: p->protoid == PROTO_IPCOMP ? IPCOMP_CPI_SIZE
: IPSEC_DOI_SPI_SIZE;
proposal.isap_notrans = p->trans_cnt;
if (!out_struct(&proposal, &isakmp_proposal_desc, &sa_pbs, &proposal_pbs))
return FALSE;
/* Per-protocols stuff:
* Set trans_desc.
* Set attr_desc.
* Set attr_val_descs.
* If not oakley_mode, emit SPI.
* We allocate SPIs on demand.
* All ESPs in an SA will share a single SPI.
* All AHs in an SAwill share a single SPI.
* AHs' SPI will be distinct from ESPs'.
* This latter is needed because KLIPS doesn't
* use the protocol when looking up a (dest, protocol, spi).
* ??? If multiple ESPs are composed, how should their SPIs
* be allocated?
*/
{
ipsec_spi_t *spi_ptr = NULL;
int proto = 0;
bool *spi_generated;
switch (p->protoid)
{
case PROTO_ISAKMP:
passert(oakley_mode);
trans_desc = &isakmp_isakmp_transform_desc;
attr_desc = &isakmp_oakley_attribute_desc;
attr_val_descs = oakley_attr_val_descs;
/* no SPI needed */
break;
case PROTO_IPSEC_AH:
passert(!oakley_mode);
trans_desc = &isakmp_ah_transform_desc;
attr_desc = &isakmp_ipsec_attribute_desc;
attr_val_descs = ipsec_attr_val_descs;
spi_ptr = &st->st_ah.our_spi;
spi_generated = &ah_spi_generated;
proto = IPPROTO_AH;
break;
case PROTO_IPSEC_ESP:
passert(!oakley_mode);
trans_desc = &isakmp_esp_transform_desc;
attr_desc = &isakmp_ipsec_attribute_desc;
attr_val_descs = ipsec_attr_val_descs;
spi_ptr = &st->st_esp.our_spi;
spi_generated = &esp_spi_generated;
proto = IPPROTO_ESP;
break;
case PROTO_IPCOMP:
passert(!oakley_mode);
trans_desc = &isakmp_ipcomp_transform_desc;
attr_desc = &isakmp_ipsec_attribute_desc;
attr_val_descs = ipsec_attr_val_descs;
/* a CPI isn't quite the same as an SPI
* so we use specialized code to emit it.
*/
if (!ipcomp_cpi_generated)
{
st->st_ipcomp.our_spi = get_my_cpi(
&st->st_connection->spd, tunnel_mode);
if (st->st_ipcomp.our_spi == 0)
return FALSE; /* problem generating CPI */
ipcomp_cpi_generated = TRUE;
}
/* CPI is stored in network low order end of an
* ipsec_spi_t. So we start a couple of bytes in.
*/
if (!out_raw((u_char *)&st->st_ipcomp.our_spi
+ IPSEC_DOI_SPI_SIZE - IPCOMP_CPI_SIZE
, IPCOMP_CPI_SIZE
, &proposal_pbs, "CPI"))
return FALSE;
break;
default:
bad_case(p->protoid);
}
if (spi_ptr != NULL)
{
if (!*spi_generated)
{
*spi_ptr = get_ipsec_spi(0
, proto
, &st->st_connection->spd
, tunnel_mode);
if (*spi_ptr == 0)
return FALSE;
*spi_generated = TRUE;
}
if (!out_raw((u_char *)spi_ptr, IPSEC_DOI_SPI_SIZE
, &proposal_pbs, "SPI"))
return FALSE;
}
}
/* within proposal: Transform Payloads */
for (tn = 0; tn != p->trans_cnt; tn++)
{
struct db_trans *t = &p->trans[tn];
pb_stream trans_pbs;
struct isakmp_transform trans;
int an;
trans.isat_np = (tn == p->trans_cnt - 1)
? ISAKMP_NEXT_NONE : ISAKMP_NEXT_T;
trans.isat_transnum = tn;
trans.isat_transid = t->transid;
if (!out_struct(&trans, trans_desc, &proposal_pbs, &trans_pbs))
return FALSE;
/* Within tranform: Attributes. */
/* For Phase 2 / Quick Mode, GROUP_DESCRIPTION is
* automatically generated because it must be the same
* in every transform. Except IPCOMP.
*/
if (p->protoid != PROTO_IPCOMP
&& st->st_pfs_group != NULL)
{
passert(!oakley_mode);
passert(st->st_pfs_group != &unset_group);
out_attr(GROUP_DESCRIPTION, st->st_pfs_group->group
, attr_desc, attr_val_descs
, &trans_pbs);
}
/* automatically generate duration
* and, for Phase 2 / Quick Mode, encapsulation.
*/
if (oakley_mode)
{
out_attr(OAKLEY_LIFE_TYPE, OAKLEY_LIFE_SECONDS
, attr_desc, attr_val_descs
, &trans_pbs);
out_attr(OAKLEY_LIFE_DURATION
, st->st_connection->sa_ike_life_seconds
, attr_desc, attr_val_descs
, &trans_pbs);
}
else
{
/* RFC 2407 (IPSEC DOI) 4.5 specifies that
* the default is "unspecified (host-dependent)".
* This makes little sense, so we always specify it.
*
* Unlike other IPSEC transforms, IPCOMP defaults
* to Transport Mode, so we can exploit the default
* (draft-shacham-ippcp-rfc2393bis-05.txt 4.1).
*/
if (p->protoid != PROTO_IPCOMP
|| st->st_policy & POLICY_TUNNEL)
{
out_attr(ENCAPSULATION_MODE
, st->st_policy & POLICY_TUNNEL
? ENCAPSULATION_MODE_TUNNEL : ENCAPSULATION_MODE_TRANSPORT
, attr_desc, attr_val_descs
, &trans_pbs);
}
out_attr(SA_LIFE_TYPE, SA_LIFE_TYPE_SECONDS
, attr_desc, attr_val_descs
, &trans_pbs);
out_attr(SA_LIFE_DURATION
, st->st_connection->sa_ipsec_life_seconds
, attr_desc, attr_val_descs
, &trans_pbs);
}
/* spit out attributes from table */
for (an = 0; an != t->attr_cnt; an++)
{
struct db_attr *a = &t->attrs[an];
out_attr(a->type, a->val
, attr_desc, attr_val_descs
, &trans_pbs);
}
close_output_pbs(&trans_pbs);
}
close_output_pbs(&proposal_pbs);
}
/* end of a conjunction of proposals */
}
close_output_pbs(&sa_pbs);
return TRUE;
}
/* Handle long form of duration attribute.
* The code is can only handle values that can fit in unsigned long.
* "Clamping" is probably an acceptable way to impose this limitation.
*/
static u_int32_t
decode_long_duration(pb_stream *pbs)
{
u_int32_t val = 0;
/* ignore leading zeros */
while (pbs_left(pbs) != 0 && *pbs->cur == '\0')
pbs->cur++;
if (pbs_left(pbs) > sizeof(val))
{
/* "clamp" too large value to max representable value */
val -= 1; /* portable way to get to maximum value */
DBG(DBG_PARSING, DBG_log(" too large duration clamped to: %lu"
, (unsigned long)val));
}
else
{
/* decode number */
while (pbs_left(pbs) != 0)
val = (val << BITS_PER_BYTE) | *pbs->cur++;
DBG(DBG_PARSING, DBG_log(" long duration: %lu", (unsigned long)val));
}
return val;
}
/* Parse the body of an ISAKMP SA Payload (i.e. Phase 1 / Main Mode).
* Various shortcuts are taken. In particular, the policy, such as
* it is, is hardwired.
*
* If r_sa is non-NULL, the body of an SA representing the selected
* proposal is emitted.
*
* If "selection" is true, the SA is supposed to represent the
* single tranform that the peer has accepted.
* ??? We only check that it is acceptable, not that it is one that we offered!
*
* Only IPsec DOI is accepted (what is the ISAKMP DOI?).
* Error response is rudimentary.
*
* This routine is used by main_inI1_outR1() and main_inR1_outI2().
*/
notification_t
parse_isakmp_sa_body(
pb_stream *sa_pbs, /* body of input SA Payload */
const struct isakmp_sa *sa, /* header of input SA Payload */
pb_stream *r_sa_pbs, /* if non-NULL, where to emit winning SA */
bool selection, /* if this SA is a selection, only one tranform can appear */
struct state *st) /* current state object */
{
u_int32_t ipsecdoisit;
pb_stream proposal_pbs;
struct isakmp_proposal proposal;
unsigned no_trans_left;
int last_transnum;
/* DOI */
if (sa->isasa_doi != ISAKMP_DOI_IPSEC)
{
loglog(RC_LOG_SERIOUS, "Unknown/unsupported DOI %s", enum_show(&doi_names, sa->isasa_doi));
/* XXX Could send notification back */
return DOI_NOT_SUPPORTED;
}
/* Situation */
if (!in_struct(&ipsecdoisit, &ipsec_sit_desc, sa_pbs, NULL))
{
return SITUATION_NOT_SUPPORTED;
}
if (ipsecdoisit != SIT_IDENTITY_ONLY)
{
loglog(RC_LOG_SERIOUS, "unsupported IPsec DOI situation (%s)"
, bitnamesof(sit_bit_names, ipsecdoisit));
/* XXX Could send notification back */
return SITUATION_NOT_SUPPORTED;
}
/* The rules for ISAKMP SAs are scattered.
* RFC 2409 "IKE" section 5 says that there
* can only be one SA, and it can have only one proposal in it.
* There may well be multiple transforms.
*/
if (!in_struct(&proposal, &isakmp_proposal_desc, sa_pbs, &proposal_pbs))
return PAYLOAD_MALFORMED;
if (proposal.isap_np != ISAKMP_NEXT_NONE)
{
loglog(RC_LOG_SERIOUS, "Proposal Payload must be alone in Oakley SA; found %s following Proposal"
, enum_show(&payload_names, proposal.isap_np));
return PAYLOAD_MALFORMED;
}
if (proposal.isap_protoid != PROTO_ISAKMP)
{
loglog(RC_LOG_SERIOUS, "unexpected Protocol ID (%s) found in Oakley Proposal"
, enum_show(&protocol_names, proposal.isap_protoid));
return INVALID_PROTOCOL_ID;
}
/* Just what should we accept for the SPI field?
* The RFC is sort of contradictory. We will ignore the SPI
* as long as it is of the proper size.
*
* From RFC2408 2.4 Identifying Security Associations:
* During phase 1 negotiations, the initiator and responder cookies
* determine the ISAKMP SA. Therefore, the SPI field in the Proposal
* payload is redundant and MAY be set to 0 or it MAY contain the
* transmitting entity's cookie.
*
* From RFC2408 3.5 Proposal Payload:
* o SPI Size (1 octet) - Length in octets of the SPI as defined by
* the Protocol-Id. In the case of ISAKMP, the Initiator and
* Responder cookie pair from the ISAKMP Header is the ISAKMP SPI,
* therefore, the SPI Size is irrelevant and MAY be from zero (0) to
* sixteen (16). If the SPI Size is non-zero, the content of the
* SPI field MUST be ignored. If the SPI Size is not a multiple of
* 4 octets it will have some impact on the SPI field and the
* alignment of all payloads in the message. The Domain of
* Interpretation (DOI) will dictate the SPI Size for other
* protocols.
*/
if (proposal.isap_spisize == 0)
{
/* empty (0) SPI -- fine */
}
else if (proposal.isap_spisize <= MAX_ISAKMP_SPI_SIZE)
{
u_char junk_spi[MAX_ISAKMP_SPI_SIZE];
if (!in_raw(junk_spi, proposal.isap_spisize, &proposal_pbs, "Oakley SPI"))
return PAYLOAD_MALFORMED;
}
else
{
loglog(RC_LOG_SERIOUS, "invalid SPI size (%u) in Oakley Proposal"
, (unsigned)proposal.isap_spisize);
return INVALID_SPI;
}
if (selection && proposal.isap_notrans != 1)
{
loglog(RC_LOG_SERIOUS, "a single Transform is required in a selecting Oakley Proposal; found %u"
, (unsigned)proposal.isap_notrans);
return BAD_PROPOSAL_SYNTAX;
}
/* for each transform payload... */
last_transnum = -1;
no_trans_left = proposal.isap_notrans;
for (;;)
{
pb_stream trans_pbs;
u_char *attr_start;
size_t attr_len;
struct isakmp_transform trans;
lset_t seen_attrs = 0
, seen_durations = 0;
u_int16_t life_type;
struct oakley_trans_attrs ta;
err_t ugh = NULL; /* set to diagnostic when problem detected */
/* initialize only optional field in ta */
ta.life_seconds = OAKLEY_ISAKMP_SA_LIFETIME_DEFAULT; /* When this SA expires (seconds) */
if (no_trans_left == 0)
{
loglog(RC_LOG_SERIOUS, "number of Transform Payloads disagrees with Oakley Proposal Payload");
return BAD_PROPOSAL_SYNTAX;
}
if (!in_struct(&trans, &isakmp_isakmp_transform_desc, &proposal_pbs, &trans_pbs))
return BAD_PROPOSAL_SYNTAX;
if (trans.isat_transnum <= last_transnum)
{
/* picky, picky, picky */
loglog(RC_LOG_SERIOUS, "Transform Numbers are not monotonically increasing"
" in Oakley Proposal");
return BAD_PROPOSAL_SYNTAX;
}
last_transnum = trans.isat_transnum;
if (trans.isat_transid != KEY_IKE)
{
loglog(RC_LOG_SERIOUS, "expected KEY_IKE but found %s in Oakley Transform"
, enum_show(&isakmp_transformid_names, trans.isat_transid));
return INVALID_TRANSFORM_ID;
}
attr_start = trans_pbs.cur;
attr_len = pbs_left(&trans_pbs);
/* process all the attributes that make up the transform */
while (pbs_left(&trans_pbs) != 0)
{
struct isakmp_attribute a;
pb_stream attr_pbs;
u_int32_t val; /* room for larger values */
if (!in_struct(&a, &isakmp_oakley_attribute_desc, &trans_pbs, &attr_pbs))
return BAD_PROPOSAL_SYNTAX;
passert((a.isaat_af_type & ISAKMP_ATTR_RTYPE_MASK) < 32);
if (LHAS(seen_attrs, a.isaat_af_type & ISAKMP_ATTR_RTYPE_MASK))
{
loglog(RC_LOG_SERIOUS, "repeated %s attribute in Oakley Transform %u"
, enum_show(&oakley_attr_names, a.isaat_af_type)
, trans.isat_transnum);
return BAD_PROPOSAL_SYNTAX;
}
seen_attrs |= LELEM(a.isaat_af_type & ISAKMP_ATTR_RTYPE_MASK);
val = a.isaat_lv;
DBG(DBG_PARSING,
{
enum_names *vdesc = oakley_attr_val_descs
[a.isaat_af_type & ISAKMP_ATTR_RTYPE_MASK];
if (vdesc != NULL)
{
const char *nm = enum_name(vdesc, val);
if (nm != NULL)
DBG_log(" [%u is %s]", (unsigned)val, nm);
}
});
switch (a.isaat_af_type)
{
case OAKLEY_ENCRYPTION_ALGORITHM | ISAKMP_ATTR_AF_TV:
switch (val)
{
#if 0 /* we don't feel DES is safe */
case OAKLEY_DES_CBC:
#endif
case OAKLEY_3DES_CBC:
ta.encrypt = val;
ta.encrypter = &oakley_encrypter[val];
break;
default:
ugh = builddiag("%s is not supported"
, enum_show(&oakley_enc_names, val));
}
break;
case OAKLEY_HASH_ALGORITHM | ISAKMP_ATTR_AF_TV:
switch (val)
{
case OAKLEY_MD5:
case OAKLEY_SHA:
ta.hash = val;
ta.hasher = &oakley_hasher[val];
break;
default:
ugh = builddiag("%s is not supported"
, enum_show(&oakley_hash_names, val));
}
break;
case OAKLEY_AUTHENTICATION_METHOD | ISAKMP_ATTR_AF_TV:
{
/* check that authentication method is acceptable */
lset_t iap = st->st_policy & POLICY_ID_AUTH_MASK;
switch (val)
{
case OAKLEY_PRESHARED_KEY:
if ((iap & POLICY_PSK) == LEMPTY)
{
ugh = "policy does not allow OAKLEY_PRESHARED_KEY authentication";
}
else
{
/* check that we can find a preshared secret */
struct connection *c = st->st_connection;
if (get_preshared_secret(c) == NULL)
{
char mid[IDTOA_BUF]
, hid[IDTOA_BUF];
idtoa(&c->spd.this.id, mid, sizeof(mid));
if (his_id_was_instantiated(c))
strcpy(hid, "%any");
else
idtoa(&c->spd.that.id, hid, sizeof(hid));
ugh = builddiag("Can't authenticate: no preshared key found for `%s' and `%s'"
, mid, hid);
}
ta.auth = val;
}
break;
case OAKLEY_RSA_SIG:
/* Accept if policy specifies RSASIG or is default */
if ((iap & POLICY_RSASIG) == LEMPTY)
{
ugh = "policy does not allow OAKLEY_RSA_SIG authentication";
}
else
{
/* We'd like to check that we can find a public
* key for him and a private key for us that is
* suitable, but we don't yet have his
* Id Payload, so it seems futile to try.
* We can assume that if he proposes it, he
* thinks we've got it. If we proposed it,
* perhaps we know what we're doing.
*/
ta.auth = val;
}
break;
default:
ugh = builddiag("Pluto does not support %s authentication"
, enum_show(&oakley_auth_names, val));
break;
}
}
break;
case OAKLEY_GROUP_DESCRIPTION | ISAKMP_ATTR_AF_TV:
ta.group = lookup_group(val);
if (ta.group == NULL)
{
ugh = "only OAKLEY_GROUP_MODP1024 and OAKLEY_GROUP_MODP1536 supported";
break;
}
break;
case OAKLEY_LIFE_TYPE | ISAKMP_ATTR_AF_TV:
switch (val)
{
case OAKLEY_LIFE_SECONDS:
case OAKLEY_LIFE_KILOBYTES:
if (LHAS(seen_durations, val))
{
loglog(RC_LOG_SERIOUS
, "attribute OAKLEY_LIFE_TYPE value %s repeated"
, enum_show(&oakley_lifetime_names, val));
return BAD_PROPOSAL_SYNTAX;
}
seen_durations |= LELEM(val);
life_type = val;
break;
default:
ugh = builddiag("unknown value %s"
, enum_show(&oakley_lifetime_names, val));
break;
}
break;
case OAKLEY_LIFE_DURATION | ISAKMP_ATTR_AF_TLV:
val = decode_long_duration(&attr_pbs);
/* fall through */
case OAKLEY_LIFE_DURATION | ISAKMP_ATTR_AF_TV:
if (!LHAS(seen_attrs, OAKLEY_LIFE_TYPE))
{
ugh = "OAKLEY_LIFE_DURATION attribute not preceded by OAKLEY_LIFE_TYPE attribute";
break;
}
seen_attrs &= ~(LELEM(OAKLEY_LIFE_DURATION) | LELEM(OAKLEY_LIFE_TYPE));
switch (life_type)
{
case OAKLEY_LIFE_SECONDS:
if (val > OAKLEY_ISAKMP_SA_LIFETIME_MAXIMUM)
ugh = builddiag("peer requested %lu seconds"
" which exceeds our limit %d seconds"
, (long) val
, OAKLEY_ISAKMP_SA_LIFETIME_MAXIMUM);
ta.life_seconds = val;
break;
case OAKLEY_LIFE_KILOBYTES:
ta.life_kilobytes = val;
break;
default:
bad_case(life_type);
}
break;
#if 0 /* not yet supported */
case OAKLEY_GROUP_TYPE | ISAKMP_ATTR_AF_TV:
case OAKLEY_PRF | ISAKMP_ATTR_AF_TV:
case OAKLEY_KEY_LENGTH | ISAKMP_ATTR_AF_TV:
case OAKLEY_FIELD_SIZE | ISAKMP_ATTR_AF_TV:
case OAKLEY_GROUP_PRIME | ISAKMP_ATTR_AF_TV:
case OAKLEY_GROUP_PRIME | ISAKMP_ATTR_AF_TLV:
case OAKLEY_GROUP_GENERATOR_ONE | ISAKMP_ATTR_AF_TV:
case OAKLEY_GROUP_GENERATOR_ONE | ISAKMP_ATTR_AF_TLV:
case OAKLEY_GROUP_GENERATOR_TWO | ISAKMP_ATTR_AF_TV:
case OAKLEY_GROUP_GENERATOR_TWO | ISAKMP_ATTR_AF_TLV:
case OAKLEY_GROUP_CURVE_A | ISAKMP_ATTR_AF_TV:
case OAKLEY_GROUP_CURVE_A | ISAKMP_ATTR_AF_TLV:
case OAKLEY_GROUP_CURVE_B | ISAKMP_ATTR_AF_TV:
case OAKLEY_GROUP_CURVE_B | ISAKMP_ATTR_AF_TLV:
case OAKLEY_GROUP_ORDER | ISAKMP_ATTR_AF_TV:
case OAKLEY_GROUP_ORDER | ISAKMP_ATTR_AF_TLV:
#endif
default:
ugh = "unsupported OAKLEY attribute";
break;
}
if (ugh != NULL)
{
loglog(RC_LOG_SERIOUS, "%s. Attribute %s"
, ugh, enum_show(&oakley_attr_names, a.isaat_af_type));
break;
}
}
if (ugh == NULL)
{
/* a little more checking is in order */
{
lset_t missing
= ~seen_attrs
& (LELEM(OAKLEY_ENCRYPTION_ALGORITHM)
| LELEM(OAKLEY_HASH_ALGORITHM)
| LELEM(OAKLEY_AUTHENTICATION_METHOD)
| LELEM(OAKLEY_GROUP_DESCRIPTION));
if (missing)
{
loglog(RC_LOG_SERIOUS, "missing mandatory attribute(s) %s in Oakley Transform %u"
, bitnamesof(oakley_attr_bit_names, missing)
, trans.isat_transnum);
return BAD_PROPOSAL_SYNTAX;
}
}
/* We must have liked this transform.
* Lets finish early and leave.
*/
DBG(DBG_PARSING | DBG_CRYPT
, DBG_log("Oakley Transform %u accepted", trans.isat_transnum));
if (r_sa_pbs != NULL)
{
struct isakmp_proposal r_proposal = proposal;
pb_stream r_proposal_pbs;
struct isakmp_transform r_trans = trans;
pb_stream r_trans_pbs;
/* Situation */
if (!out_struct(&ipsecdoisit, &ipsec_sit_desc, r_sa_pbs, NULL))
impossible();
/* Proposal */
#ifdef EMIT_ISAKMP_SPI
r_proposal.isap_spisize = COOKIE_SIZE;
#else
r_proposal.isap_spisize = 0;
#endif
r_proposal.isap_notrans = 1;
if (!out_struct(&r_proposal, &isakmp_proposal_desc, r_sa_pbs, &r_proposal_pbs))
impossible();
/* SPI */
#ifdef EMIT_ISAKMP_SPI
if (!out_raw(my_cookie, COOKIE_SIZE, &r_proposal_pbs, "SPI"))
impossible();
r_proposal.isap_spisize = COOKIE_SIZE;
#else
/* none (0) */
#endif
/* Transform */
r_trans.isat_np = ISAKMP_NEXT_NONE;
if (!out_struct(&r_trans, &isakmp_isakmp_transform_desc, &r_proposal_pbs, &r_trans_pbs))
impossible();
if (!out_raw(attr_start, attr_len, &r_trans_pbs, "attributes"))
impossible();
close_output_pbs(&r_trans_pbs);
close_output_pbs(&r_proposal_pbs);
close_output_pbs(r_sa_pbs);
}
/* ??? If selection, we used to save the proposal in state.
* We never used it. From proposal_pbs.start,
* length pbs_room(&proposal_pbs)
*/
/* copy over the results */
st->st_oakley = ta;
return NOTHING_WRONG;
}
/* on to next transform */
no_trans_left--;
if (trans.isat_np == ISAKMP_NEXT_NONE)
{
if (no_trans_left != 0)
{
loglog(RC_LOG_SERIOUS, "number of Transform Payloads disagrees with Oakley Proposal Payload");
return BAD_PROPOSAL_SYNTAX;
}
break;
}
if (trans.isat_np != ISAKMP_NEXT_T)
{
loglog(RC_LOG_SERIOUS, "unexpected %s payload in Oakley Proposal"
, enum_show(&payload_names, proposal.isap_np));
return BAD_PROPOSAL_SYNTAX;
}
}
loglog(RC_LOG_SERIOUS, "no acceptable Oakley Transform");
return NO_PROPOSAL_CHOSEN;
}
/* Parse the body of an IPsec SA Payload (i.e. Phase 2 / Quick Mode).
*
* The main routine is parse_ipsec_sa_body; other functions defined
* between here and there are just helpers.
*
* Various shortcuts are taken. In particular, the policy, such as
* it is, is hardwired.
*
* If r_sa is non-NULL, the body of an SA representing the selected
* proposal is emitted into it.
*
* If "selection" is true, the SA is supposed to represent the
* single tranform that the peer has accepted.
* ??? We only check that it is acceptable, not that it is one that we offered!
*
* Only IPsec DOI is accepted (what is the ISAKMP DOI?).
* Error response is rudimentary.
*
* Since all ISAKMP groups in all SA Payloads must match, st->st_pfs_group
* holds this across multiple payloads.
* &unset_group signifies not yet "set"; NULL signifies NONE.
*
* This routine is used by quick_inI1_outR1() and quick_inR1_outI2().
*/
static const struct ipsec_trans_attrs null_ipsec_trans_attrs = {
0, /* transid (NULL, for now) */
0, /* spi */
SA_LIFE_DURATION_DEFAULT, /* life_seconds */
SA_LIFE_DURATION_K_DEFAULT, /* life_kilobytes */
ENCAPSULATION_MODE_UNSPECIFIED, /* encapsulation */
AUTH_ALGORITHM_NONE, /* auth */
0, /* key_len */
0, /* key_rounds */
};
static bool
parse_ipsec_transform(struct isakmp_transform *trans
, struct ipsec_trans_attrs *attrs
, pb_stream *prop_pbs
, pb_stream *trans_pbs
, struct_desc *trans_desc
, int previous_transnum /* or -1 if none */
, bool selection
, bool is_last
, bool is_ipcomp
, struct state *st) /* current state object */
{
lset_t seen_attrs = 0
, seen_durations = 0;
u_int16_t life_type;
const struct oakley_group_desc *pfs_group = NULL;
if (!in_struct(trans, trans_desc, prop_pbs, trans_pbs))
return FALSE;
if (trans->isat_transnum <= previous_transnum)
{
loglog(RC_LOG_SERIOUS, "Transform Numbers in Proposal are not monotonically increasing");
return FALSE;
}
switch (trans->isat_np)
{
case ISAKMP_NEXT_T:
if (is_last)
{
loglog(RC_LOG_SERIOUS, "Proposal Payload has more Transforms than specified");
return FALSE;
}
break;
case ISAKMP_NEXT_NONE:
if (!is_last)
{
loglog(RC_LOG_SERIOUS, "Proposal Payload has fewer Transforms than specified");
return FALSE;
}
break;
default:
loglog(RC_LOG_SERIOUS, "expecting Transform Payload, but found %s in Proposal"
, enum_show(&payload_names, trans->isat_np));
return FALSE;
}
*attrs = null_ipsec_trans_attrs;
attrs->transid = trans->isat_transid;
while (pbs_left(trans_pbs) != 0)
{
struct isakmp_attribute a;
pb_stream attr_pbs;
enum_names *vdesc;
u_int32_t val; /* room for larger value */
bool ipcomp_inappropriate = is_ipcomp; /* will get reset if OK */
if (!in_struct(&a, &isakmp_ipsec_attribute_desc, trans_pbs, &attr_pbs))
return FALSE;
passert((a.isaat_af_type & ISAKMP_ATTR_RTYPE_MASK) < 32);
if (LHAS(seen_attrs, a.isaat_af_type & ISAKMP_ATTR_RTYPE_MASK))
{
loglog(RC_LOG_SERIOUS, "repeated %s attribute in IPsec Transform %u"
, enum_show(&ipsec_attr_names, a.isaat_af_type)
, trans->isat_transnum);
return FALSE;
}
seen_attrs |= LELEM(a.isaat_af_type & ISAKMP_ATTR_RTYPE_MASK);
val = a.isaat_lv;
vdesc = ipsec_attr_val_descs[a.isaat_af_type & ISAKMP_ATTR_RTYPE_MASK];
if (vdesc != NULL)
{
if (enum_name(vdesc, val) == NULL)
{
loglog(RC_LOG_SERIOUS, "invalid value %u for attribute %s in IPsec Transform"
, (unsigned)val, enum_show(&ipsec_attr_names, a.isaat_af_type));
return FALSE;
}
DBG(DBG_PARSING
, if ((a.isaat_af_type & ISAKMP_ATTR_AF_MASK) == ISAKMP_ATTR_AF_TV)
DBG_log(" [%u is %s]"
, (unsigned)val, enum_show(vdesc, val)));
}
switch (a.isaat_af_type)
{
case SA_LIFE_TYPE | ISAKMP_ATTR_AF_TV:
ipcomp_inappropriate = FALSE;
if (LHAS(seen_durations, val))
{
loglog(RC_LOG_SERIOUS, "attribute SA_LIFE_TYPE value %s repeated in message"
, enum_show(&sa_lifetime_names, val));
return FALSE;
}
seen_durations |= LELEM(val);
life_type = val;
break;
case SA_LIFE_DURATION | ISAKMP_ATTR_AF_TLV:
val = decode_long_duration(&attr_pbs);
/* fall through */
case SA_LIFE_DURATION | ISAKMP_ATTR_AF_TV:
ipcomp_inappropriate = FALSE;
if (!LHAS(seen_attrs, SA_LIFE_DURATION))
{
loglog(RC_LOG_SERIOUS, "SA_LIFE_DURATION IPsec attribute not preceded by SA_LIFE_TYPE attribute");
return FALSE;
}
seen_attrs &= ~(LELEM(SA_LIFE_DURATION) | LELEM(SA_LIFE_TYPE));
switch (life_type)
{
case SA_LIFE_TYPE_SECONDS:
/* silently limit duration to our maximum */
attrs->life_seconds = val <= SA_LIFE_DURATION_MAXIMUM
? val : SA_LIFE_DURATION_MAXIMUM;
break;
case SA_LIFE_TYPE_KBYTES:
attrs->life_kilobytes = val;
break;
default:
bad_case(life_type);
}
break;
case GROUP_DESCRIPTION | ISAKMP_ATTR_AF_TV:
if (is_ipcomp)
{
/* Accept reluctantly. Should not happen, according to
* draft-shacham-ippcp-rfc2393bis-05.txt 4.1.
*/
ipcomp_inappropriate = FALSE;
loglog(RC_COMMENT
, "IPCA (IPcomp SA) contains GROUP_DESCRIPTION."
" Ignoring inapproprate attribute.");
}
pfs_group = lookup_group(val);
if (pfs_group == NULL)
{
loglog(RC_LOG_SERIOUS, "only OAKLEY_GROUP_MODP1024 and OAKLEY_GROUP_MODP1536 supported for PFS");
return FALSE;
}
break;
case ENCAPSULATION_MODE | ISAKMP_ATTR_AF_TV:
ipcomp_inappropriate = FALSE;
attrs->encapsulation = val;
break;
case AUTH_ALGORITHM | ISAKMP_ATTR_AF_TV:
attrs->auth = val;
break;
case KEY_LENGTH | ISAKMP_ATTR_AF_TV:
attrs->key_len = val;
break;
case KEY_ROUNDS | ISAKMP_ATTR_AF_TV:
attrs->key_rounds = val;
break;
#if 0 /* not yet implemented */
case COMPRESS_DICT_SIZE | ISAKMP_ATTR_AF_TV:
break;
case COMPRESS_PRIVATE_ALG | ISAKMP_ATTR_AF_TV:
break;
case SA_LIFE_DURATION | ISAKMP_ATTR_AF_TLV:
break;
case COMPRESS_PRIVATE_ALG | ISAKMP_ATTR_AF_TLV:
break;
#endif
default:
loglog(RC_LOG_SERIOUS, "unsupported IPsec attribute %s"
, enum_show(&ipsec_attr_names, a.isaat_af_type));
return FALSE;
}
if (ipcomp_inappropriate)
{
loglog(RC_LOG_SERIOUS, "IPsec attribute %s inappropriate for IPCOMP"
, enum_show(&ipsec_attr_names, a.isaat_af_type));
return FALSE;
}
}
/* Although an IPCOMP SA (IPCA) ought not to have a pfs_group,
* if it does, demand that it be consistent.
* See draft-shacham-ippcp-rfc2393bis-05.txt 4.1.
*/
if (!is_ipcomp || pfs_group != NULL)
{
if (st->st_pfs_group == &unset_group)
st->st_pfs_group = pfs_group;
if (st->st_pfs_group != pfs_group)
{
loglog(RC_LOG_SERIOUS, "GROUP_DESCRIPTION inconsistent with that of %s in IPsec SA"
, selection? "the Proposal" : "a previous Transform");
return FALSE;
}
}
if (LHAS(seen_attrs, SA_LIFE_DURATION))
{
loglog(RC_LOG_SERIOUS, "SA_LIFE_TYPE IPsec attribute not followed by SA_LIFE_DURATION attribute in message");
return FALSE;
}
if (!LHAS(seen_attrs, ENCAPSULATION_MODE))
{
if (is_ipcomp)
{
/* draft-shacham-ippcp-rfc2393bis-05.txt 4.1:
* "If the Encapsulation Mode is unspecified,
* the default value of Transport Mode is assumed."
* This contradicts/overrides the DOI (quuoted below).
*/
attrs->encapsulation = ENCAPSULATION_MODE_TRANSPORT;
}
else
{
/* ??? Technically, RFC 2407 (IPSEC DOI) 4.5 specifies that
* the default is "unspecified (host-dependent)".
* This makes little sense, so we demand that it be specified.
*/
loglog(RC_LOG_SERIOUS, "IPsec Transform must specify ENCAPSULATION_MODE");
return FALSE;
}
}
/* ??? should check for key_len and/or key_rounds if required */
return TRUE;
}
static void
echo_proposal(
struct isakmp_proposal r_proposal, /* proposal to emit */
struct isakmp_transform r_trans, /* winning transformation within it */
u_int8_t np, /* Next Payload for proposal */
pb_stream *r_sa_pbs, /* SA PBS into which to emit */
struct ipsec_proto_info *pi, /* info about this protocol instance */
struct_desc *trans_desc, /* descriptor for this transformation */
pb_stream *trans_pbs, /* PBS for incoming transform */
struct spd_route *sr, /* host details for the association */
bool tunnel_mode) /* true for inner most tunnel SA */
{
pb_stream r_proposal_pbs;
pb_stream r_trans_pbs;
/* Proposal */
r_proposal.isap_np = np;
r_proposal.isap_notrans = 1;
if (!out_struct(&r_proposal, &isakmp_proposal_desc, r_sa_pbs, &r_proposal_pbs))
impossible();
/* allocate and emit our CPI/SPI */
if (r_proposal.isap_protoid == PROTO_IPCOMP)
{
/* CPI is stored in network low order end of an
* ipsec_spi_t. So we start a couple of bytes in.
* Note: we may fail to generate a satisfactory CPI,
* but we'll ignore that.
*/
pi->our_spi = get_my_cpi(sr, tunnel_mode);
out_raw((u_char *) &pi->our_spi
+ IPSEC_DOI_SPI_SIZE - IPCOMP_CPI_SIZE
, IPCOMP_CPI_SIZE
, &r_proposal_pbs, "CPI");
}
else
{
pi->our_spi = get_ipsec_spi(pi->attrs.spi
, r_proposal.isap_protoid == PROTO_IPSEC_AH ?
IPPROTO_AH : IPPROTO_ESP
, sr
, tunnel_mode);
/* XXX should check for errors */
out_raw((u_char *) &pi->our_spi, IPSEC_DOI_SPI_SIZE
, &r_proposal_pbs, "SPI");
}
/* Transform */
r_trans.isat_np = ISAKMP_NEXT_NONE;
if (!out_struct(&r_trans, trans_desc, &r_proposal_pbs, &r_trans_pbs))
impossible();
/* Transform Attributes: pure echo */
trans_pbs->cur = trans_pbs->start + sizeof(struct isakmp_transform);
if (!out_raw(trans_pbs->cur, pbs_left(trans_pbs)
, &r_trans_pbs, "attributes"))
impossible();
close_output_pbs(&r_trans_pbs);
close_output_pbs(&r_proposal_pbs);
}
notification_t
parse_ipsec_sa_body(
pb_stream *sa_pbs, /* body of input SA Payload */
const struct isakmp_sa *sa, /* header of input SA Payload */
pb_stream *r_sa_pbs, /* if non-NULL, where to emit body of winning SA */
bool selection, /* if this SA is a selection, only one transform may appear */
struct state *st) /* current state object */
{
const struct connection *c = st->st_connection;
u_int32_t ipsecdoisit;
pb_stream next_proposal_pbs;
struct isakmp_proposal next_proposal;
ipsec_spi_t next_spi;
bool next_full = TRUE;
/* DOI */
if (sa->isasa_doi != ISAKMP_DOI_IPSEC)
{
loglog(RC_LOG_SERIOUS, "Unknown or unsupported DOI %s", enum_show(&doi_names, sa->isasa_doi));
/* XXX Could send notification back */
return DOI_NOT_SUPPORTED;
}
/* Situation */
if (!in_struct(&ipsecdoisit, &ipsec_sit_desc, sa_pbs, NULL))
return SITUATION_NOT_SUPPORTED;
if (ipsecdoisit != SIT_IDENTITY_ONLY)
{
loglog(RC_LOG_SERIOUS, "unsupported IPsec DOI situation (%s)"
, bitnamesof(sit_bit_names, ipsecdoisit));
/* XXX Could send notification back */
return SITUATION_NOT_SUPPORTED;
}
/* The rules for IPsec SAs are scattered.
* RFC 2408 "ISAKMP" section 4.2 gives some info.
* There may be multiple proposals. Those with identical proposal
* numbers must be considered as conjuncts. Those with different
* numbers are disjuncts.
* Each proposal may have several transforms, each considered
* an alternative.
* Each transform may have several attributes, all applying.
*
* To handle the way proposals are combined, we need to do a
* look-ahead.
*/
if (!in_struct(&next_proposal, &isakmp_proposal_desc, sa_pbs, &next_proposal_pbs))
return BAD_PROPOSAL_SYNTAX;
/* for each conjunction of proposals... */
while (next_full)
{
int propno = next_proposal.isap_proposal;
pb_stream ah_prop_pbs, esp_prop_pbs, ipcomp_prop_pbs;
struct isakmp_proposal ah_proposal, esp_proposal, ipcomp_proposal;
ipsec_spi_t ah_spi, esp_spi, ipcomp_cpi;
bool ah_seen = FALSE, esp_seen = FALSE, ipcomp_seen = FALSE;
int inner_proto = 0;
bool tunnel_mode = FALSE;
u_int16_t well_known_cpi = 0;
pb_stream ah_trans_pbs, esp_trans_pbs, ipcomp_trans_pbs;
struct isakmp_transform ah_trans, esp_trans, ipcomp_trans;
struct ipsec_trans_attrs ah_attrs, esp_attrs, ipcomp_attrs;
/* for each proposal in the conjunction */
do {
if (next_proposal.isap_protoid == PROTO_IPCOMP)
{
/* IPCOMP CPI */
if (next_proposal.isap_spisize == IPSEC_DOI_SPI_SIZE)
{
/* This code is to accommodate those peculiar
* implementations that send a CPI in the bottom of an
* SPI-sized field.
* See draft-shacham-ippcp-rfc2393bis-05.txt 4.1
*/
u_int8_t filler[IPSEC_DOI_SPI_SIZE - IPCOMP_CPI_SIZE];
if (!in_raw(filler, sizeof(filler)
, &next_proposal_pbs, "CPI filler")
|| !all_zero(filler, sizeof(filler)))
return INVALID_SPI;
}
else if (next_proposal.isap_spisize != IPCOMP_CPI_SIZE)
{
loglog(RC_LOG_SERIOUS, "IPsec Proposal with improper CPI size (%u)"
, next_proposal.isap_spisize);
return INVALID_SPI;
}
/* We store CPI in the low order of a network order
* ipsec_spi_t. So we start a couple of bytes in.
*/
zero(&next_spi);
if (!in_raw((u_char *)&next_spi
+ IPSEC_DOI_SPI_SIZE - IPCOMP_CPI_SIZE
, IPCOMP_CPI_SIZE, &next_proposal_pbs, "CPI"))
return INVALID_SPI;
/* If sanity ruled, CPIs would have to be such that
* the SAID (the triple (CPI, IPCOM, destination IP))
* would be unique, just like for SPIs. But there is a
* perversion where CPIs can be well-known and consequently
* the triple is not unique. We hide this fact from
* ourselves by fudging the top 16 bits to make
* the property true internally!
*/
switch (ntohl(next_spi))
{
case IPCOMP_DEFLATE:
well_known_cpi = ntohl(next_spi);
next_spi = uniquify_his_cpi(next_spi, st);
if (next_spi == 0)
{
loglog(RC_LOG_SERIOUS
, "IPsec Proposal contains well-known CPI that I cannot uniquify");
return INVALID_SPI;
}
break;
default:
if (ntohl(next_spi) < IPCOMP_FIRST_NEGOTIATED
|| ntohl(next_spi) > IPCOMP_LAST_NEGOTIATED)
{
loglog(RC_LOG_SERIOUS, "IPsec Proposal contains CPI from non-negotiated range (0x%lx)"
, (unsigned long) ntohl(next_spi));
return INVALID_SPI;
}
break;
}
}
else
{
/* AH or ESP SPI */
if (next_proposal.isap_spisize != IPSEC_DOI_SPI_SIZE)
{
loglog(RC_LOG_SERIOUS, "IPsec Proposal with improper SPI size (%u)"
, next_proposal.isap_spisize);
return INVALID_SPI;
}
if (!in_raw((u_char *)&next_spi, sizeof(next_spi), &next_proposal_pbs, "SPI"))
return INVALID_SPI;
/* SPI value 0 is invalid and values 1-255 are reserved to IANA.
* RFC 2402 (ESP) 2.4, RFC 2406 (AH) 2.1
* IPCOMP???
*/
if (ntohl(next_spi) < IPSEC_DOI_SPI_MIN)
{
loglog(RC_LOG_SERIOUS, "IPsec Proposal contains invalid SPI (0x%lx)"
, (unsigned long) ntohl(next_spi));
return INVALID_SPI;
}
}
if (next_proposal.isap_notrans == 0)
{
loglog(RC_LOG_SERIOUS, "IPsec Proposal contains no Transforms");
return BAD_PROPOSAL_SYNTAX;
}
switch (next_proposal.isap_protoid)
{
case PROTO_IPSEC_AH:
if (ah_seen)
{
loglog(RC_LOG_SERIOUS, "IPsec SA contains two simultaneous AH Proposals");
return BAD_PROPOSAL_SYNTAX;
}
ah_seen = TRUE;
ah_prop_pbs = next_proposal_pbs;
ah_proposal = next_proposal;
ah_spi = next_spi;
break;
case PROTO_IPSEC_ESP:
if (esp_seen)
{
loglog(RC_LOG_SERIOUS, "IPsec SA contains two simultaneous ESP Proposals");
return BAD_PROPOSAL_SYNTAX;
}
esp_seen = TRUE;
esp_prop_pbs = next_proposal_pbs;
esp_proposal = next_proposal;
esp_spi = next_spi;
break;
case PROTO_IPCOMP:
if (ipcomp_seen)
{
loglog(RC_LOG_SERIOUS, "IPsec SA contains two simultaneous IPCOMP Proposals");
return BAD_PROPOSAL_SYNTAX;
}
ipcomp_seen = TRUE;
ipcomp_prop_pbs = next_proposal_pbs;
ipcomp_proposal = next_proposal;
ipcomp_cpi = next_spi;
break;
default:
loglog(RC_LOG_SERIOUS, "unexpected Protocol ID (%s) in IPsec Proposal"
, enum_show(&protocol_names, next_proposal.isap_protoid));
return INVALID_PROTOCOL_ID;
}
/* refill next_proposal */
if (next_proposal.isap_np == ISAKMP_NEXT_NONE)
{
next_full = FALSE;
break;
}
else if (next_proposal.isap_np != ISAKMP_NEXT_P)
{
loglog(RC_LOG_SERIOUS, "unexpected in Proposal: %s"
, enum_show(&payload_names, next_proposal.isap_np));
return BAD_PROPOSAL_SYNTAX;
}
if (!in_struct(&next_proposal, &isakmp_proposal_desc, sa_pbs, &next_proposal_pbs))
return BAD_PROPOSAL_SYNTAX;
} while (next_proposal.isap_proposal == propno);
/* Now that we have all conjuncts, we should try
* the Cartesian product of eachs tranforms!
* At the moment, we take short-cuts on account of
* our rudimentary hard-wired policy.
* For now, we find an acceptable AH (if any)
* and then an acceptable ESP. The only interaction
* is that the ESP acceptance can know whether there
* was an acceptable AH and hence not require an AUTH.
*/
if (ah_seen)
{
int previous_transnum = -1;
int tn;
for (tn = 0; tn != ah_proposal.isap_notrans; tn++)
{
int ok_transid = 0;
bool ok_auth = FALSE;
if (!parse_ipsec_transform(&ah_trans
, &ah_attrs
, &ah_prop_pbs
, &ah_trans_pbs
, &isakmp_ah_transform_desc
, previous_transnum
, selection
, tn == ah_proposal.isap_notrans - 1
, FALSE
, st))
return BAD_PROPOSAL_SYNTAX;
previous_transnum = ah_trans.isat_transnum;
/* we must understand ah_attrs.transid
* COMBINED with ah_attrs.auth.
* See RFC 2407 "IPsec DOI" section 4.4.3
* The following combinations are legal,
* but we don't implement all of them:
* It seems as if each auth algorithm
* only applies to one ah transid.
* AH_MD5, AUTH_ALGORITHM_HMAC_MD5
* AH_MD5, AUTH_ALGORITHM_KPDK (unimplemented)
* AH_SHA, AUTH_ALGORITHM_HMAC_SHA1
* AH_DES, AUTH_ALGORITHM_DES_MAC (unimplemented)
*/
switch (ah_attrs.auth)
{
case AUTH_ALGORITHM_NONE:
loglog(RC_LOG_SERIOUS, "AUTH_ALGORITHM attribute missing in AH Transform");
return BAD_PROPOSAL_SYNTAX;
case AUTH_ALGORITHM_HMAC_MD5:
ok_auth = TRUE;
/* fall through */
case AUTH_ALGORITHM_KPDK:
ok_transid = AH_MD5;
break;
case AUTH_ALGORITHM_HMAC_SHA1:
ok_auth = TRUE;
ok_transid = AH_SHA;
break;
case AUTH_ALGORITHM_DES_MAC:
ok_transid = AH_DES;
break;
}
if (ah_attrs.transid != ok_transid)
{
loglog(RC_LOG_SERIOUS, "%s attribute inappropriate in %s Transform"
, enum_name(&auth_alg_names, ah_attrs.auth)
, enum_show(&ah_transformid_names, ah_attrs.transid));
return BAD_PROPOSAL_SYNTAX;
}
if (!ok_auth)
{
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("%s attribute unsupported"
" in %s Transform from %s"
, enum_name(&auth_alg_names, ah_attrs.auth)
, enum_show(&ah_transformid_names, ah_attrs.transid)
, ip_str(&c->spd.that.host_addr)));
continue; /* try another */
}
break; /* we seem to be happy */
}
if (tn == ah_proposal.isap_notrans)
continue; /* we didn't find a nice one */
ah_attrs.spi = ah_spi;
inner_proto = IPPROTO_AH;
if (ah_attrs.encapsulation == ENCAPSULATION_MODE_TUNNEL)
tunnel_mode = TRUE;
}
if (esp_seen)
{
int previous_transnum = -1;
int tn;
for (tn = 0; tn != esp_proposal.isap_notrans; tn++)
{
if (!parse_ipsec_transform(&esp_trans
, &esp_attrs
, &esp_prop_pbs
, &esp_trans_pbs
, &isakmp_esp_transform_desc
, previous_transnum
, selection
, tn == esp_proposal.isap_notrans - 1
, FALSE
, st))
return BAD_PROPOSAL_SYNTAX;
previous_transnum = esp_trans.isat_transnum;
switch (esp_attrs.transid)
{
#if 0 /* we don't feel single DES is safe */
case ESP_DES:
#endif
case ESP_3DES:
break;
#ifdef SUPPORT_ESP_NULL /* should be about as secure as AH-only */
case ESP_NULL:
if (esp_attrs.auth == AUTH_ALGORITHM_NONE)
{
loglog(RC_LOG_SERIOUS, "ESP_NULL requires auth algorithm");
return BAD_PROPOSAL_SYNTAX;
}
if (st->st_policy & POLICY_ENCRYPT)
{
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("ESP_NULL Transform Proposal from %s"
" does not satisfy POLICY_ENCRYPT"
, ip_str(&c->spd.that.host_addr)));
continue; /* try another */
}
break;
#endif
default:
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("unsupported ESP Transform %s from %s"
, enum_show(&esp_transformid_names, esp_attrs.transid)
, ip_str(&c->spd.that.host_addr)));
continue; /* try another */
}
switch (esp_attrs.auth)
{
case AUTH_ALGORITHM_NONE:
if (!ah_seen)
{
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("ESP from %s must either have AUTH or be combined with AH"
, ip_str(&c->spd.that.host_addr)));
continue; /* try another */
}
break;
case AUTH_ALGORITHM_HMAC_MD5:
case AUTH_ALGORITHM_HMAC_SHA1:
break;
default:
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("unsupported ESP auth alg %s from %s"
, enum_show(&auth_alg_names, esp_attrs.auth)
, ip_str(&c->spd.that.host_addr)));
continue; /* try another */
}
if (ah_seen && ah_attrs.encapsulation != esp_attrs.encapsulation)
{
/* ??? This should be an error, but is it? */
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("AH and ESP transforms disagree about encapsulation; TUNNEL presumed"));
}
break; /* we seem to be happy */
}
if (tn == esp_proposal.isap_notrans)
continue; /* we didn't find a nice one */
esp_attrs.spi = esp_spi;
inner_proto = IPPROTO_ESP;
if (esp_attrs.encapsulation == ENCAPSULATION_MODE_TUNNEL)
tunnel_mode = TRUE;
}
else if (st->st_policy & POLICY_ENCRYPT)
{
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("policy for \"%s\" requires encryption but ESP not in Proposal from %s"
, c->name, ip_str(&c->spd.that.host_addr)));
continue; /* we needed encryption, but didn't find ESP */
}
else if ((st->st_policy & POLICY_AUTHENTICATE) && !ah_seen)
{
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("policy for \"%s\" requires authentication"
" but none in Proposal from %s"
, c->name, ip_str(&c->spd.that.host_addr)));
continue; /* we need authentication, but we found neither ESP nor AH */
}
if (ipcomp_seen)
{
int previous_transnum = -1;
int tn;
#ifdef NEVER /* we think IPcomp is working now */
/**** FUDGE TO PREVENT UNREQUESTED IPCOMP:
**** NEEDED BECAUSE OUR IPCOMP IS EXPERIMENTAL (UNSTABLE).
****/
if (!(st->st_policy & POLICY_COMPRESS))
{
plog("compression proposed by %s, but policy for \"%s\" forbids it"
, ip_str(&c->spd.that.host_addr), c->name);
continue; /* unwanted compression proposal */
}
#endif
if (!can_do_IPcomp)
{
plog("compression proposed by %s, but KLIPS is not configured with IPCOMP"
, ip_str(&c->spd.that.host_addr));
continue;
}
if (well_known_cpi != 0 && !ah_seen && !esp_seen)
{
plog("illegal proposal: bare IPCOMP used with well-known CPI");
return BAD_PROPOSAL_SYNTAX;
}
for (tn = 0; tn != ipcomp_proposal.isap_notrans; tn++)
{
if (!parse_ipsec_transform(&ipcomp_trans
, &ipcomp_attrs
, &ipcomp_prop_pbs
, &ipcomp_trans_pbs
, &isakmp_ipcomp_transform_desc
, previous_transnum
, selection
, tn == ipcomp_proposal.isap_notrans - 1
, TRUE
, st))
return BAD_PROPOSAL_SYNTAX;
previous_transnum = ipcomp_trans.isat_transnum;
if (well_known_cpi != 0 && ipcomp_attrs.transid != well_known_cpi)
{
plog("illegal proposal: IPCOMP well-known CPI disagrees with transform");
return BAD_PROPOSAL_SYNTAX;
}
switch (ipcomp_attrs.transid)
{
case IPCOMP_DEFLATE: /* all we can handle! */
break;
default:
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("unsupported IPCOMP Transform %s from %s"
, enum_show(&ipcomp_transformid_names, ipcomp_attrs.transid)
, ip_str(&c->spd.that.host_addr)));
continue; /* try another */
}
if (ah_seen && ah_attrs.encapsulation != ipcomp_attrs.encapsulation)
{
/* ??? This should be an error, but is it? */
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("AH and IPCOMP transforms disagree about encapsulation; TUNNEL presumed"));
} else if (esp_seen && esp_attrs.encapsulation != ipcomp_attrs.encapsulation)
{
/* ??? This should be an error, but is it? */
DBG(DBG_CONTROL | DBG_CRYPT
, DBG_log("ESP and IPCOMP transforms disagree about encapsulation; TUNNEL presumed"));
}
break; /* we seem to be happy */
}
if (tn == ipcomp_proposal.isap_notrans)
continue; /* we didn't find a nice one */
ipcomp_attrs.spi = ipcomp_cpi;
inner_proto = IPPROTO_COMP;
if (ipcomp_attrs.encapsulation == ENCAPSULATION_MODE_TUNNEL)
tunnel_mode = TRUE;
}
/* Eureka: we liked what we saw -- accept it. */
if (r_sa_pbs != NULL)
{
/* emit what we've accepted */
/* Situation */
if (!out_struct(&ipsecdoisit, &ipsec_sit_desc, r_sa_pbs, NULL))
impossible();
/* AH proposal */
if (ah_seen)
echo_proposal(ah_proposal
, ah_trans
, esp_seen || ipcomp_seen? ISAKMP_NEXT_P : ISAKMP_NEXT_NONE
, r_sa_pbs
, &st->st_ah
, &isakmp_ah_transform_desc
, &ah_trans_pbs
, &st->st_connection->spd
, tunnel_mode && inner_proto == IPPROTO_AH);
/* ESP proposal */
if (esp_seen)
echo_proposal(esp_proposal
, esp_trans
, ipcomp_seen? ISAKMP_NEXT_P : ISAKMP_NEXT_NONE
, r_sa_pbs
, &st->st_esp
, &isakmp_esp_transform_desc
, &esp_trans_pbs
, &st->st_connection->spd
, tunnel_mode && inner_proto == IPPROTO_ESP);
/* IPCOMP proposal */
if (ipcomp_seen)
echo_proposal(ipcomp_proposal
, ipcomp_trans
, ISAKMP_NEXT_NONE
, r_sa_pbs
, &st->st_ipcomp
, &isakmp_ipcomp_transform_desc
, &ipcomp_trans_pbs
, &st->st_connection->spd
, tunnel_mode && inner_proto == IPPROTO_COMP);
close_output_pbs(r_sa_pbs);
}
/* save decoded version of winning SA in state */
st->st_ah.present = ah_seen;
if (ah_seen)
st->st_ah.attrs = ah_attrs;
st->st_esp.present = esp_seen;
if (esp_seen)
st->st_esp.attrs = esp_attrs;
st->st_ipcomp.present = ipcomp_seen;
if (ipcomp_seen)
st->st_ipcomp.attrs = ipcomp_attrs;
return NOTHING_WRONG;
}
loglog(RC_LOG_SERIOUS, "no acceptable Proposal in IPsec SA");
return NO_PROPOSAL_CHOSEN;
}
|