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
|
/* demultiplex incoming IKE messages
* Copyright (C) 1997 Angelos D. Keromytis.
* Copyright (C) 1998-2002 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: demux.c,v 1.148 2003/08/19 21:08:34 mcr Exp $
*/
/* Ordering Constraints on Payloads
*
* rfc2409: The Internet Key Exchange (IKE)
*
* 5 Exchanges:
* "The SA payload MUST precede all other payloads in a phase 1 exchange."
*
* "Except where otherwise noted, there are no requirements for ISAKMP
* payloads in any message to be in any particular order."
*
* 5.3 Phase 1 Authenticated With a Revised Mode of Public Key Encryption:
*
* "If the HASH payload is sent it MUST be the first payload of the
* second message exchange and MUST be followed by the encrypted
* nonce. If the HASH payload is not sent, the first payload of the
* second message exchange MUST be the encrypted nonce."
*
* "Save the requirements on the location of the optional HASH payload
* and the mandatory nonce payload there are no further payload
* requirements. All payloads-- in whatever order-- following the
* encrypted nonce MUST be encrypted with Ke_i or Ke_r depending on the
* direction."
*
* 5.5 Phase 2 - Quick Mode
*
* "In Quick Mode, a HASH payload MUST immediately follow the ISAKMP
* header and a SA payload MUST immediately follow the HASH."
* [NOTE: there may be more than one SA payload, so this is not
* totally reasonable. Probably all SAs should be so constrained.]
*
* "If ISAKMP is acting as a client negotiator on behalf of another
* party, the identities of the parties MUST be passed as IDci and
* then IDcr."
*
* "With the exception of the HASH, SA, and the optional ID payloads,
* there are no payload ordering restrictions on Quick Mode."
*/
/* Unfolding of Identity -- a central mystery
*
* This concerns Phase 1 identities, those of the IKE hosts.
* These are the only ones that are authenticated. Phase 2
* identities are for IPsec SAs.
*
* There are three case of interest:
*
* (1) We initiate, based on a whack command specifying a Connection.
* We know the identity of the peer from the Connection.
*
* (2) (to be implemented) we initiate based on a flow from our client
* to some IP address.
* We immediately know one of the peer's client IP addresses from
* the flow. We must use this to figure out the peer's IP address
* and Id. To be solved.
*
* (3) We respond to an IKE negotiation.
* We immediately know the peer's IP address.
* We get an ID Payload in Main I2.
*
* Unfortunately, this is too late for a number of things:
* - the ISAKMP SA proposals have already been made (Main I1)
* AND one accepted (Main R1)
* - the SA includes a specification of the type of ID
* authentication so this is negotiated without being told the ID.
* - with Preshared Key authentication, Main I2 is encrypted
* using the key, so it cannot be decoded to reveal the ID
* without knowing (or guessing) which key to use.
*
* There are three reasonable choices here for the responder:
* + assume that the initiator is making wise offers since it
* knows the IDs involved. We can balk later (but not gracefully)
* when we find the actual initiator ID
* + attempt to infer identity by IP address. Again, we can balk
* when the true identity is revealed. Actually, it is enough
* to infer properties of the identity (eg. SA properties and
* PSK, if needed).
* + make all properties universal so discrimination based on
* identity isn't required. For example, always accept the same
* kinds of encryption. Accept Public Key Id authentication
* since the Initiator presumably has our public key and thinks
* we must have / can find his. This approach is weakest
* for preshared key since the actual key must be known to
* decrypt the Initiator's ID Payload.
* These choices can be blended. For example, a class of Identities
* can be inferred, sufficient to select a preshared key but not
* sufficient to infer a unique identity.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/time.h> /* only used for belt-and-suspenders select call */
#include <sys/poll.h> /* only used for forensic poll call */
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/queue.h>
#if defined(IP_RECVERR) && defined(MSG_ERRQUEUE)
# include <asm/types.h> /* for __u8, __u32 */
# include <linux/errqueue.h>
# include <sys/uio.h> /* struct iovec */
#endif
#include <freeswan.h>
#include "constants.h"
#include "defs.h"
#include "cookie.h"
#include "id.h"
#include "connections.h" /* needs id.h */
#include "state.h"
#include "packet.h"
#include "md5.h"
#include "sha1.h"
#include "crypto.h" /* requires sha1.h and md5.h */
#include "log.h"
#include "demux.h" /* needs packet.h */
#include "ipsec_doi.h" /* needs demux.h and state.h */
#include "timer.h"
#include "whack.h" /* requires connections.h */
#include "server.h"
/* This file does basic header checking and demux of
* incoming packets.
*/
/* forward declarations */
static bool read_packet(struct msg_digest *md);
static void process_packet(struct msg_digest **mdp);
/* Reply messages are built in this buffer.
* Only one state transition function can be using it at a time
* so suspended STFs must save and restore it.
* It could be an auto variable of complete_state_transition except for the fact
* that when a suspended STF resumes, its reply message buffer
* must be at the same location -- there are pointers into it.
*/
u_int8_t reply_buffer[MAX_OUTPUT_UDP_SIZE];
/* state_microcode is a tuple of information parameterizing certain
* centralized processing of a packet. For example, it roughly
* specifies what payloads are expected in this message.
* The microcode is selected primarily based on the state.
* In Phase 1, the payload structure often depends on the
* authentication technique, so that too plays a part in selecting
* the state_microcode to use.
*/
struct state_microcode {
enum state_kind state, next_state;
lset_t flags;
lset_t req_payloads; /* required payloads (allows just one) */
lset_t opt_payloads; /* optional payloads (any mumber) */
/* if not ISAKMP_NEXT_NONE, process_packet will emit HDR with this as np */
u_int8_t first_out_payload;
enum event_type timeout_event;
state_transition_fn *processor;
};
/* State Microcode Flags, in several groups */
/* Oakley Auth values: to which auth values does this entry apply?
* Most entries will use SMF_ALL_AUTH because they apply to all.
* Note: SMF_ALL_AUTH matches 0 for those circumstances when no auth
* has been set.
*/
#define SMF_ALL_AUTH LRANGE(0, OAKLEY_AUTH_ROOF-1)
#define SMF_PSK_AUTH LELEM(OAKLEY_PRESHARED_KEY)
#define SMF_DS_AUTH (LELEM(OAKLEY_DSS_SIG) | LELEM(OAKLEY_RSA_SIG))
#define SMF_PKE_AUTH (LELEM(OAKLEY_RSA_ENC) | LELEM(OAKLEY_ELGAMAL_ENC))
#define SMF_RPKE_AUTH (LELEM(OAKLEY_RSA_ENC_REV) | LELEM(OAKLEY_ELGAMAL_ENC_REV))
/* misc flags */
#define SMF_INITIATOR LELEM(OAKLEY_AUTH_ROOF + 0)
#define SMF_FIRST_ENCRYPTED_INPUT LELEM(OAKLEY_AUTH_ROOF + 1)
#define SMF_INPUT_ENCRYPTED LELEM(OAKLEY_AUTH_ROOF + 2)
#define SMF_OUTPUT_ENCRYPTED LELEM(OAKLEY_AUTH_ROOF + 3)
#define SMF_RETRANSMIT_ON_DUPLICATE LELEM(OAKLEY_AUTH_ROOF + 4)
#define SMF_ENCRYPTED (SMF_INPUT_ENCRYPTED | SMF_OUTPUT_ENCRYPTED)
/* this state generates a reply message */
#define SMF_REPLY LELEM(OAKLEY_AUTH_ROOF + 5)
/* this state completes P1, so any pending P2 negotiations should start */
#define SMF_RELEASE_PENDING_P2 LELEM(OAKLEY_AUTH_ROOF + 6)
/* end of flags */
static state_transition_fn /* forward declaration */
unexpected,
informational;
/* state_microcode_table is a table of all state_microcode tuples.
* It must be in order of state (the first element).
* After initialization, ike_microcode_index[s] points to the
* first entry in state_microcode_table for state s.
* Remember that each state name in Main or Quick Mode describes
* what has happened in the past, not what this message is.
*/
static const struct state_microcode
*ike_microcode_index[STATE_IKE_ROOF - STATE_IKE_FLOOR];
static const struct state_microcode state_microcode_table[] = {
#define PT(n) ISAKMP_NEXT_##n
#define P(n) LELEM(PT(n))
/***** Phase 1 Main Mode *****/
/* No state for main_outI1: --> HDR, SA */
/* STATE_MAIN_R0: I1 --> R1
* HDR, SA --> HDR, SA
*/
{ STATE_MAIN_R0, STATE_MAIN_R1
, SMF_ALL_AUTH | SMF_REPLY
, P(SA), P(VID) | P(CR), PT(NONE)
, EVENT_RETRANSMIT, main_inI1_outR1},
/* STATE_MAIN_I1: R1 --> I2
* HDR, SA --> auth dependent
* SMF_PSK_AUTH, SMF_DS_AUTH: --> HDR, KE, Ni
* SMF_PKE_AUTH:
* --> HDR, KE, [ HASH(1), ] <IDi1_b>PubKey_r, <Ni_b>PubKey_r
* SMF_RPKE_AUTH:
* --> HDR, [ HASH(1), ] <Ni_b>Pubkey_r, <KE_b>Ke_i, <IDi1_b>Ke_i [,<<Cert-I_b>Ke_i]
* Note: since we don't know auth at start, we cannot differentiate
* microcode entries based on it.
*/
{ STATE_MAIN_I1, STATE_MAIN_I2
, SMF_ALL_AUTH | SMF_INITIATOR | SMF_REPLY
, P(SA), P(VID) | P(CR), PT(NONE) /* don't know yet */
, EVENT_RETRANSMIT, main_inR1_outI2 },
/* STATE_MAIN_R1: I2 --> R2
* SMF_PSK_AUTH, SMF_DS_AUTH: HDR, KE, Ni --> HDR, KE, Nr
* SMF_PKE_AUTH: HDR, KE, [ HASH(1), ] <IDi1_b>PubKey_r, <Ni_b>PubKey_r
* --> HDR, KE, <IDr1_b>PubKey_i, <Nr_b>PubKey_i
* SMF_RPKE_AUTH:
* HDR, [ HASH(1), ] <Ni_b>Pubkey_r, <KE_b>Ke_i, <IDi1_b>Ke_i [,<<Cert-I_b>Ke_i]
* --> HDR, <Nr_b>PubKey_i, <KE_b>Ke_r, <IDr1_b>Ke_r
*/
{ STATE_MAIN_R1, STATE_MAIN_R2
, SMF_PSK_AUTH | SMF_DS_AUTH | SMF_REPLY
, P(KE) | P(NONCE), P(VID) | P(CR), PT(KE)
, EVENT_RETRANSMIT, main_inI2_outR2 },
{ STATE_MAIN_R1, STATE_UNDEFINED
, SMF_PKE_AUTH | SMF_REPLY
, P(KE) | P(ID) | P(NONCE), P(VID) | P(CR) | P(HASH), PT(KE)
, EVENT_RETRANSMIT, unexpected /* ??? not yet implemented */ },
{ STATE_MAIN_R1, STATE_UNDEFINED
, SMF_RPKE_AUTH | SMF_REPLY
, P(NONCE) | P(KE) | P(ID), P(VID) | P(CR) | P(HASH) | P(CERT), PT(NONCE)
, EVENT_RETRANSMIT, unexpected /* ??? not yet implemented */ },
/* for states from here on, output message must be encrypted */
/* STATE_MAIN_I2: R2 --> I3
* SMF_PSK_AUTH: HDR, KE, Nr --> HDR*, IDi1, HASH_I
* SMF_DS_AUTH: HDR, KE, Nr --> HDR*, IDi1, [ CERT, ] SIG_I
* SMF_PKE_AUTH: HDR, KE, <IDr1_b>PubKey_i, <Nr_b>PubKey_i
* --> HDR*, HASH_I
* SMF_RPKE_AUTH: HDR, <Nr_b>PubKey_i, <KE_b>Ke_r, <IDr1_b>Ke_r
* --> HDR*, HASH_I
*/
{ STATE_MAIN_I2, STATE_MAIN_I3
, SMF_PSK_AUTH | SMF_DS_AUTH | SMF_INITIATOR | SMF_OUTPUT_ENCRYPTED | SMF_REPLY
, P(KE) | P(NONCE), P(VID) | P(CR), PT(ID)
, EVENT_RETRANSMIT, main_inR2_outI3 },
{ STATE_MAIN_I2, STATE_UNDEFINED
, SMF_PKE_AUTH | SMF_INITIATOR | SMF_OUTPUT_ENCRYPTED | SMF_REPLY
, P(KE) | P(ID) | P(NONCE), P(VID) | P(CR), PT(HASH)
, EVENT_RETRANSMIT, unexpected /* ??? not yet implemented */ },
{ STATE_MAIN_I2, STATE_UNDEFINED
, SMF_ALL_AUTH | SMF_INITIATOR | SMF_OUTPUT_ENCRYPTED | SMF_REPLY
, P(NONCE) | P(KE) | P(ID), P(VID) | P(CR), PT(HASH)
, EVENT_RETRANSMIT, unexpected /* ??? not yet implemented */ },
/* for states from here on, input message must be encrypted */
/* STATE_MAIN_R2: I3 --> R3
* SMF_PSK_AUTH: HDR*, IDi1, HASH_I --> HDR*, IDr1, HASH_R
* SMF_DS_AUTH: HDR*, IDi1, [ CERT, ] SIG_I --> HDR*, IDr1, [ CERT, ] SIG_R
* SMF_PKE_AUTH, SMF_RPKE_AUTH: HDR*, HASH_I --> HDR*, HASH_R
*/
{ STATE_MAIN_R2, STATE_MAIN_R3
, SMF_PSK_AUTH | SMF_FIRST_ENCRYPTED_INPUT | SMF_ENCRYPTED
| SMF_REPLY | SMF_RELEASE_PENDING_P2
, P(ID) | P(HASH), P(VID) | P(CR), PT(NONE)
, EVENT_SA_REPLACE, main_inI3_outR3 },
{ STATE_MAIN_R2, STATE_MAIN_R3
, SMF_DS_AUTH | SMF_FIRST_ENCRYPTED_INPUT | SMF_ENCRYPTED
| SMF_REPLY | SMF_RELEASE_PENDING_P2
, P(ID) | P(SIG), P(VID) | P(CR) | P(CERT), PT(NONE)
, EVENT_SA_REPLACE, main_inI3_outR3 },
{ STATE_MAIN_R2, STATE_UNDEFINED
, SMF_PKE_AUTH | SMF_RPKE_AUTH | SMF_FIRST_ENCRYPTED_INPUT | SMF_ENCRYPTED
| SMF_REPLY | SMF_RELEASE_PENDING_P2
, P(HASH), P(VID) | P(CR), PT(NONE)
, EVENT_SA_REPLACE, unexpected /* ??? not yet implemented */ },
/* STATE_MAIN_I3: R3 --> done
* SMF_PSK_AUTH: HDR*, IDr1, HASH_R --> done
* SMF_DS_AUTH: HDR*, IDr1, [ CERT, ] SIG_R --> done
* SMF_PKE_AUTH, SMF_RPKE_AUTH: HDR*, HASH_R --> done
* May initiate quick mode by calling quick_outI1
*/
{ STATE_MAIN_I3, STATE_MAIN_I4
, SMF_PSK_AUTH | SMF_INITIATOR
| SMF_FIRST_ENCRYPTED_INPUT | SMF_ENCRYPTED | SMF_RELEASE_PENDING_P2
, P(ID) | P(HASH), P(VID) | P(CR), PT(NONE)
, EVENT_SA_REPLACE, main_inR3 },
{ STATE_MAIN_I3, STATE_MAIN_I4
, SMF_DS_AUTH | SMF_INITIATOR
| SMF_FIRST_ENCRYPTED_INPUT | SMF_ENCRYPTED | SMF_RELEASE_PENDING_P2
, P(ID) | P(SIG), P(VID) | P(CR) | P(CERT), PT(NONE)
, EVENT_SA_REPLACE, main_inR3 },
{ STATE_MAIN_I3, STATE_UNDEFINED
, SMF_PKE_AUTH | SMF_RPKE_AUTH | SMF_INITIATOR
| SMF_FIRST_ENCRYPTED_INPUT | SMF_ENCRYPTED | SMF_RELEASE_PENDING_P2
, P(HASH), P(VID) | P(CR), PT(NONE)
, EVENT_SA_REPLACE, unexpected /* ??? not yet implemented */ },
/* STATE_MAIN_R3: can only get here due to packet loss */
{ STATE_MAIN_R3, STATE_UNDEFINED
, SMF_ALL_AUTH | SMF_ENCRYPTED | SMF_RETRANSMIT_ON_DUPLICATE
, LEMPTY, LEMPTY
, PT(NONE), EVENT_NULL, unexpected },
/* STATE_MAIN_I4: can only get here due to packet loss */
{ STATE_MAIN_I4, STATE_UNDEFINED
, SMF_ALL_AUTH | SMF_INITIATOR | SMF_ENCRYPTED
, LEMPTY, LEMPTY
, PT(NONE), EVENT_NULL, unexpected },
/***** Phase 2 Quick Mode *****/
/* No state for quick_outI1:
* --> HDR*, HASH(1), SA, Nr [, KE ] [, IDci, IDcr ]
*/
/* STATE_QUICK_R0:
* HDR*, HASH(1), SA, Ni [, KE ] [, IDci, IDcr ] -->
* HDR*, HASH(2), SA, Nr [, KE ] [, IDci, IDcr ]
* Installs inbound IPsec SAs.
* Because it may suspend for asynchronous DNS, first_out_payload
* is set to NONE to suppress early emission of HDR*.
* ??? it is legal to have multiple SAs, but we don't support it yet.
*/
{ STATE_QUICK_R0, STATE_QUICK_R1
, SMF_ALL_AUTH | SMF_ENCRYPTED | SMF_REPLY
, P(HASH) | P(SA) | P(NONCE), /* P(SA) | */ P(KE) | P(ID), PT(NONE)
, EVENT_RETRANSMIT, quick_inI1_outR1 },
/* STATE_QUICK_I1:
* HDR*, HASH(2), SA, Nr [, KE ] [, IDci, IDcr ] -->
* HDR*, HASH(3)
* Installs inbound and outbound IPsec SAs, routing, etc.
* ??? it is legal to have multiple SAs, but we don't support it yet.
*/
{ STATE_QUICK_I1, STATE_QUICK_I2
, SMF_ALL_AUTH | SMF_INITIATOR | SMF_ENCRYPTED | SMF_REPLY
, P(HASH) | P(SA) | P(NONCE), /* P(SA) | */ P(KE) | P(ID), PT(HASH)
, EVENT_SA_REPLACE, quick_inR1_outI2 },
/* STATE_QUICK_R1: HDR*, HASH(3) --> done
* Installs outbound IPsec SAs, routing, etc.
*/
{ STATE_QUICK_R1, STATE_QUICK_R2
, SMF_ALL_AUTH | SMF_ENCRYPTED
, P(HASH), LEMPTY, PT(NONE)
, EVENT_SA_REPLACE, quick_inI2 },
/* STATE_QUICK_I2: can only happen due to lost packet */
{ STATE_QUICK_I2, STATE_UNDEFINED
, SMF_ALL_AUTH | SMF_INITIATOR | SMF_ENCRYPTED | SMF_RETRANSMIT_ON_DUPLICATE
, LEMPTY, LEMPTY, PT(NONE)
, EVENT_NULL, unexpected },
/* STATE_QUICK_R2: can only happen due to lost packet */
{ STATE_QUICK_R2, STATE_UNDEFINED
, SMF_ALL_AUTH | SMF_ENCRYPTED
, LEMPTY, LEMPTY, PT(NONE)
, EVENT_NULL, unexpected },
/***** informational messages *****/
/* STATE_INFO: */
{ STATE_INFO, STATE_UNDEFINED
, SMF_ALL_AUTH
, LEMPTY, LEMPTY, PT(NONE)
, EVENT_NULL, informational },
/* STATE_INFO_PROTECTED: */
{ STATE_INFO_PROTECTED, STATE_UNDEFINED
, SMF_ALL_AUTH | SMF_ENCRYPTED
, P(HASH), LEMPTY, PT(NONE)
, EVENT_NULL, informational },
#undef P
#undef PT
};
void
init_demux(void)
{
/* fill ike_microcode_index:
* make ike_microcode_index[s] point to first entry in
* state_microcode_table for state s (backward scan makes this easier).
* Check that table is in order -- catch coding errors.
* For what it's worth, this routine is idempotent.
*/
const struct state_microcode *t;
for (t = &state_microcode_table[elemsof(state_microcode_table) - 1];;)
{
passert(STATE_IKE_FLOOR <= t->state && t->state < STATE_IKE_ROOF);
ike_microcode_index[t->state - STATE_IKE_FLOOR] = t;
if (t == state_microcode_table)
break;
t--;
passert(t[0].state <= t[1].state);
}
}
/* Process any message on the MSG_ERRQUEUE
*
* This information is generated because of the IP_RECVERR socket option.
* The API is sparsely documented, and may be LINUX-only, and only on
* fairly recent versions at that (hence the conditional compilation).
*
* - ip(7) describes IP_RECVERR
* - recvmsg(2) describes MSG_ERRQUEUE
* - readv(2) describes iovec
* - cmsg(3) describes how to process auxilliary messages
*
* ??? we should link this message with one we've sent
* so that the diagnostic can refer to that negotiation.
*
* ??? how long can the messge be?
*
* ??? poll(2) has a very incomplete description of the POLL* events.
* We assume that POLLIN, POLLOUT, and POLLERR are all we need to deal with
* and that POLLERR will be on iff there is a MSG_ERRQUEUE message.
*
* We have to code around a couple of surprises:
*
* - Select can say that a socket is ready to read from, and
* yet a read will hang. It turns out that a message available on the
* MSG_ERRQUEUE will cause select to say something is pending, but
* a normal read will hang. poll(2) can tell when a MSG_ERRQUEUE
* message is pending.
*
* This is dealt with by calling check_msg_errqueue after select
* has indicated that there is something to read, but before the
* read is performed. check_msg_errqueue will return TRUE if there
* is something left to read.
*
* - A write to a socket may fail because there is a pending MSG_ERRQUEUE
* message, without there being anything wrong with the write. This
* makes for confusing diagnostics.
*
* To avoid this, we call check_msg_errqueue before a write. True,
* there is a race condition (a MSG_ERRQUEUE message might arrive
* between the check and the write), but we should eliminate many
* of the problematic events. To narrow the window, the poll(2)
* will await until an event happens (in the case or a write,
* POLLOUT; this should be benign for POLLIN).
*/
#if defined(IP_RECVERR) && defined(MSG_ERRQUEUE)
static bool
check_msg_errqueue(const struct iface *ifp, short interest)
{
struct pollfd pfd;
pfd.fd = ifp->fd;
pfd.events = interest | POLLPRI | POLLOUT;
while (pfd.revents = 0
, poll(&pfd, 1, -1) > 0 && (pfd.revents & POLLERR))
{
u_int8_t buffer[3000]; /* hope that this is big enough */
union
{
struct sockaddr sa;
struct sockaddr_in sa_in4;
struct sockaddr_in6 sa_in6;
} from;
int from_len = sizeof(from);
int packet_len;
struct msghdr emh;
struct iovec eiov;
union {
/* force alignment (not documented as necessary) */
struct cmsghdr ecms;
/* how much space is enough? */
unsigned char space[256];
} ecms_buf;
struct cmsghdr *cm;
char fromstr[sizeof(" for message to port 65536") + INET6_ADDRSTRLEN];
struct state *sender = NULL;
zero(&from.sa);
from_len = sizeof(from);
emh.msg_name = &from.sa; /* ??? filled in? */
emh.msg_namelen = sizeof(from);
emh.msg_iov = &eiov;
emh.msg_iovlen = 1;
emh.msg_control = &ecms_buf;
emh.msg_controllen = sizeof(ecms_buf);
emh.msg_flags = 0;
eiov.iov_base = buffer; /* see readv(2) */
eiov.iov_len = sizeof(buffer);
packet_len = recvmsg(ifp->fd, &emh, MSG_ERRQUEUE);
if (packet_len == -1)
{
log_errno((e, "recvmsg(,, MSG_ERRQUEUE) on %s failed in comm_handle"
, ifp->rname));
break;
}
else if (packet_len == sizeof(buffer))
{
plog("MSG_ERRQUEUE message longer than %lu bytes; truncated"
, (unsigned long) sizeof(buffer));
}
else
{
sender = find_sender((size_t) packet_len, buffer);
}
DBG_cond_dump(DBG_ALL, "rejected packet:\n", buffer, packet_len);
DBG_cond_dump(DBG_ALL, "control:\n", emh.msg_control, emh.msg_controllen);
/* ??? Andi Kleen <ak@suse.de> and misc documentation
* suggests that name will have the original destination
* of the packet. We seem to see msg_namelen == 0.
* Andi says that this is a kernel bug and has fixed it.
* Perhaps in 2.2.18/2.4.0.
*/
passert(emh.msg_name == &from.sa);
DBG_cond_dump(DBG_ALL, "name:\n", emh.msg_name
, emh.msg_namelen);
fromstr[0] = '\0'; /* usual case :-( */
switch (from.sa.sa_family)
{
char as[INET6_ADDRSTRLEN];
case AF_INET:
if (emh.msg_namelen == sizeof(struct sockaddr_in))
snprintf(fromstr, sizeof(fromstr)
, " for message to %s port %u"
, inet_ntop(from.sa.sa_family
, &from.sa_in4.sin_addr, as, sizeof(as))
, ntohs(from.sa_in4.sin_port));
break;
case AF_INET6:
if (emh.msg_namelen == sizeof(struct sockaddr_in6))
snprintf(fromstr, sizeof(fromstr)
, " for message to %s port %u"
, inet_ntop(from.sa.sa_family
, &from.sa_in6.sin6_addr, as, sizeof(as))
, ntohs(from.sa_in6.sin6_port));
break;
}
for (cm = CMSG_FIRSTHDR(&emh)
; cm != NULL
; cm = CMSG_NXTHDR(&emh,cm))
{
if (cm->cmsg_level == SOL_IP
&& cm->cmsg_type == IP_RECVERR)
{
/* ip(7) and recvmsg(2) specify:
* ee_origin is SO_EE_ORIGIN_ICMP for ICMP
* or SO_EE_ORIGIN_LOCAL for locally generated errors.
* ee_type and ee_code are from the ICMP header.
* ee_info is the discovered MTU for EMSGSIZE errors
* ee_data is not used.
*
* ??? recvmsg(2) says "SOCK_EE_OFFENDER" but
* means "SO_EE_OFFENDER". The OFFENDER is really
* the router that complained. As such, the port
* is meaningless.
*/
/* ??? cmsg(3) claims that CMSG_DATA returns
* void *, but RFC 2292 and /usr/include/bits/socket.h
* say unsigned char *. The manual is being fixed.
*/
struct sock_extended_err *ee = (void *)CMSG_DATA(cm);
const char *offstr = "unspecified";
char offstrspace[INET6_ADDRSTRLEN];
char orname[50];
if (cm->cmsg_len > CMSG_LEN(sizeof(struct sock_extended_err)))
{
const struct sockaddr *offender = SO_EE_OFFENDER(ee);
switch (offender->sa_family)
{
case AF_INET:
offstr = inet_ntop(offender->sa_family
, &((const struct sockaddr_in *)offender)->sin_addr
, offstrspace, sizeof(offstrspace));
break;
case AF_INET6:
offstr = inet_ntop(offender->sa_family
, &((const struct sockaddr_in6 *)offender)->sin6_addr
, offstrspace, sizeof(offstrspace));
break;
default:
offstr = "unknown";
break;
}
}
switch (ee->ee_origin)
{
case SO_EE_ORIGIN_NONE:
snprintf(orname, sizeof(orname), "none");
break;
case SO_EE_ORIGIN_LOCAL:
snprintf(orname, sizeof(orname), "local");
break;
case SO_EE_ORIGIN_ICMP:
snprintf(orname, sizeof(orname)
, "ICMP type %d code %d (not authenticated)"
, ee->ee_type, ee->ee_code
);
break;
case SO_EE_ORIGIN_ICMP6:
snprintf(orname, sizeof(orname)
, "ICMP6 type %d code %d (not authenticated)"
, ee->ee_type, ee->ee_code
);
break;
default:
snprintf(orname, sizeof(orname), "invalid origin %lu"
, (unsigned long) ee->ee_origin);
break;
}
{
struct state *old_state = cur_state;
cur_state = sender;
/* note dirty trick to suppress ~ at start of format
* if we know what state to blame.
*/
plog((sender != NULL) + "~"
"ERROR: asynchronous network error report on %s"
"%s"
", complainant %s"
": %s"
" [errno %lu, origin %s"
/* ", pad %d, info %ld" */
/* ", data %ld" */
"]"
, ifp->rname
, fromstr
, offstr
, strerror(ee->ee_errno)
, (unsigned long) ee->ee_errno
, orname
/* , ee->ee_pad, (unsigned long)ee->ee_info */
/* , (unsigned long)ee->ee_data */
);
cur_state = old_state;
}
}
else
{
/* .cmsg_len is a kernel_size_t(!), but the value
* certainly ought to fit in an unsigned long.
*/
plog("unknown cmsg: level %d, type %d, len %lu"
, cm->cmsg_level, cm->cmsg_type
, (unsigned long) cm->cmsg_len);
}
}
}
return (pfd.revents & interest) != 0;
}
#endif /* defined(IP_RECVERR) && defined(MSG_ERRQUEUE) */
bool
send_packet(struct state *st, const char *where)
{
struct connection *c = st->st_connection;
DBG(DBG_RAW,
{
DBG_log("sending %lu bytes for %s through %s to %s:%u:"
, (unsigned long) st->st_tpacket.len
, where
, c->interface->rname
, ip_str(&c->spd.that.host_addr)
, (unsigned)c->spd.that.host_port);
DBG_dump_chunk(NULL, st->st_tpacket);
});
/* XXX: Not very clean. We manipulate the port of the ip_address to
* have a port in the sockaddr*
*/
setportof(htons(c->spd.that.host_port), &c->spd.that.host_addr);
#if defined(IP_RECVERR) && defined(MSG_ERRQUEUE)
(void) check_msg_errqueue(c->interface, POLLOUT);
#endif /* defined(IP_RECVERR) && defined(MSG_ERRQUEUE) */
if (sendto(c->interface->fd
, st->st_tpacket.ptr, st->st_tpacket.len, 0
, sockaddrof(&c->spd.that.host_addr)
, sockaddrlenof(&c->spd.that.host_addr)) != (ssize_t)st->st_tpacket.len)
{
log_errno((e, "sendto on %s to %s:%u failed in %s"
, c->interface->rname
, ip_str(&c->spd.that.host_addr)
, (unsigned)c->spd.that.host_port
, where));
return FALSE;
}
else
{
return TRUE;
}
}
static stf_status
unexpected(struct msg_digest *md)
{
loglog(RC_LOG_SERIOUS, "unexpected message received in state %s"
, enum_name(&state_names, md->st->st_state));
return STF_IGNORE;
}
static stf_status
informational(struct msg_digest *md UNUSED)
{
return STF_IGNORE;
}
/* message digest allocation and deallocation */
static struct msg_digest *md_pool = NULL;
/* free_md_pool is only used to avoid leak reports */
void
free_md_pool(void)
{
for (;;)
{
struct msg_digest *md = md_pool;
if (md == NULL)
break;
md_pool = md->next;
pfree(md);
}
}
static struct msg_digest *
alloc_md(void)
{
struct msg_digest *md = md_pool;
/* convenient initializer:
* - all pointers NULL
* - .note = NOTHING_WRONG
* - .encrypted = FALSE
*/
static const struct msg_digest blank_md;
if (md == NULL)
md = alloc_thing(struct msg_digest, "msg_digest");
else
md_pool = md->next;
*md = blank_md;
md->digest_roof = md->digest;
/* note: although there may be multiple msg_digests at once
* (due to suspended state transitions), there is a single
* global reply_buffer. It will need to be saved and restored.
*/
init_pbs(&md->reply, reply_buffer, sizeof(reply_buffer), "reply packet");
return md;
}
void
release_md(struct msg_digest *md)
{
freeanychunk(md->raw_packet);
pfreeany(md->packet_pbs.start);
md->packet_pbs.start = NULL;
md->next = md_pool;
md_pool = md;
}
/* wrapper for read_packet and process_packet
*
* The main purpose of this wrapper is to factor out teardown code
* from the many return points in process_packet. This amounts to
* releasing the msg_digest and resetting global variables.
*
* When processing of a packet is suspended (STF_SUSPEND),
* process_packet sets md to NULL to prevent the msg_digest being freed.
* Someone else must ensure that msg_digest is freed eventually.
*
* read_packet is broken out to minimize the lifetime of the
* enormous input packet buffer, an auto.
*/
void
comm_handle(const struct iface *ifp)
{
static struct msg_digest *md;
#if defined(IP_RECVERR) && defined(MSG_ERRQUEUE)
/* Even though select(2) says that there is a message,
* it might only be a MSG_ERRQUEUE message. At least
* sometimes that leads to a hanging recvfrom. To avoid
* what appears to be a kernel bug, check_msg_errqueue
* uses poll(2) and tells us if there is anything for us
* to read.
*
* This is early enough that teardown isn't required:
* just return on failure.
*/
if (!check_msg_errqueue(ifp, POLLIN))
return; /* no normal message to read */
#endif /* defined(IP_RECVERR) && defined(MSG_ERRQUEUE) */
md = alloc_md();
md->iface = ifp;
if (read_packet(md))
process_packet(&md);
if (md != NULL)
release_md(md);
cur_state = NULL;
reset_cur_connection();
cur_from = NULL;
}
/* read the message.
* Since we don't know its size, we read it into
* an overly large buffer and then copy it to a
* new, properly sized buffer.
*/
static bool
read_packet(struct msg_digest *md)
{
const struct iface *ifp = md->iface;
int packet_len;
/* ??? this buffer seems *way* too big */
u_int8_t bigbuffer[MAX_INPUT_UDP_SIZE];
union
{
struct sockaddr sa;
struct sockaddr_in sa_in4;
struct sockaddr_in6 sa_in6;
} from;
int from_len = sizeof(from);
err_t from_ugh = NULL;
static const char undisclosed[] = "unknown source";
happy(anyaddr(addrtypeof(&ifp->addr), &md->sender));
zero(&from.sa);
packet_len = recvfrom(ifp->fd, bigbuffer, sizeof(bigbuffer), 0
, &from.sa, &from_len);
/* First: digest the from address.
* We presume that nothing here disturbs errno.
*/
if (packet_len == -1
&& from_len == sizeof(from)
&& all_zero((const void *)&from.sa, sizeof(from)))
{
/* "from" is untouched -- not set by recvfrom */
from_ugh = undisclosed;
}
else if (from_len
< (int) (offsetof(struct sockaddr, sa_family) + sizeof(from.sa.sa_family)))
{
from_ugh = "truncated";
}
else
{
const struct af_info *afi = aftoinfo(from.sa.sa_family);
if (afi == NULL)
{
from_ugh = "unexpected Address Family";
}
else if (from_len != (int)afi->sa_sz)
{
from_ugh = "wrong length";
}
else
{
switch (from.sa.sa_family)
{
case AF_INET:
from_ugh = initaddr((void *) &from.sa_in4.sin_addr
, sizeof(from.sa_in4.sin_addr), AF_INET, &md->sender);
md->sender_port = ntohs(from.sa_in4.sin_port);
break;
case AF_INET6:
from_ugh = initaddr((void *) &from.sa_in6.sin6_addr
, sizeof(from.sa_in6.sin6_addr), AF_INET6, &md->sender);
md->sender_port = ntohs(from.sa_in6.sin6_port);
break;
}
}
}
/* now we report any actual I/O error */
if (packet_len == -1)
{
if (from_ugh == undisclosed
&& errno == ECONNREFUSED)
{
/* Tone down scary message for vague event:
* We get "connection refused" in response to some
* datagram we sent, but we cannot tell which one.
*/
plog("some IKE message we sent has been rejected with ECONNREFUSED (kernel supplied no details)");
}
else if (from_ugh != NULL)
{
log_errno((e, "recvfrom on %s failed; Pluto cannot decode source sockaddr in rejection: %s"
, ifp->rname, from_ugh));
}
else
{
log_errno((e, "recvfrom on %s from %s:%u failed"
, ifp->rname
, ip_str(&md->sender), (unsigned)md->sender_port));
}
return FALSE;
}
else if (from_ugh != NULL)
{
plog("recvfrom on %s returned misformed source sockaddr: %s"
, ifp->rname, from_ugh);
return FALSE;
}
cur_from = &md->sender;
cur_from_port = md->sender_port;
/* Clone actual message contents
* and set up md->packet_pbs to describe it.
*/
init_pbs(&md->packet_pbs
, clone_bytes(bigbuffer, packet_len, "message buffer in comm_handle()")
, packet_len, "packet");
DBG(DBG_RAW | DBG_CRYPT | DBG_PARSING | DBG_CONTROL,
{
DBG_log(BLANK_FORMAT);
DBG_log("*received %d bytes from %s:%u on %s"
, (int) pbs_room(&md->packet_pbs)
, ip_str(cur_from), (unsigned) cur_from_port
, ifp->rname);
});
DBG(DBG_RAW,
DBG_dump("", md->packet_pbs.start, pbs_room(&md->packet_pbs)));
return TRUE;
}
/* process an input packet, possibly generating a reply.
*
* If all goes well, this routine eventually calls a state-specific
* transition function.
*/
static void
process_packet(struct msg_digest **mdp)
{
struct msg_digest *md = *mdp;
const struct state_microcode *smc;
bool new_iv_set = FALSE;
struct state *st = NULL;
enum state_kind from_state = STATE_UNDEFINED; /* state we started in */
if (!in_struct(&md->hdr, &isakmp_hdr_desc, &md->packet_pbs, &md->message_pbs))
{
/* XXX specific failures (special notification?):
* - bad ISAKMP major/minor version numbers
* - size of packet vs size of message
*/
return;
}
if (md->packet_pbs.roof != md->message_pbs.roof)
{
plog("size (%u) differs from size specified in ISAKMP HDR (%u)"
, (unsigned) pbs_room(&md->packet_pbs), md->hdr.isa_length);
return;
}
switch (md->hdr.isa_xchg)
{
#ifdef NOTYET
case ISAKMP_XCHG_NONE:
case ISAKMP_XCHG_BASE:
#endif
case ISAKMP_XCHG_IDPROT: /* part of a Main Mode exchange */
if (md->hdr.isa_msgid != MAINMODE_MSGID)
{
plog("Message ID was 0x%08lx but should be zero in Main Mode",
(unsigned long) md->hdr.isa_msgid);
/* XXX Could send notification back */
return;
}
if (is_zero_cookie(md->hdr.isa_icookie))
{
plog("Initiator Cookie must not be zero in Main Mode message");
/* XXX Could send notification back */
return;
}
if (is_zero_cookie(md->hdr.isa_rcookie))
{
/* initial message from initiator
* ??? what if this is a duplicate of another message?
*/
if (md->hdr.isa_flags & ISAKMP_FLAG_ENCRYPTION)
{
plog("initial Main Mode message is invalid:"
" its Encrypted Flag is on");
return;
}
/* don't build a state until the message looks tasty */
from_state = STATE_MAIN_R0;
}
else
{
/* not an initial message */
st = find_state(md->hdr.isa_icookie, md->hdr.isa_rcookie
, &md->sender, md->hdr.isa_msgid);
if (st == NULL)
{
/* perhaps this is a first message from the responder
* and contains a responder cookie that we've not yet seen.
*/
st = find_state(md->hdr.isa_icookie, zero_cookie
, &md->sender, md->hdr.isa_msgid);
if (st == NULL)
{
plog("Main Mode message is part of an unknown exchange");
/* XXX Could send notification back */
return;
}
}
set_cur_state(st);
from_state = st->st_state;
}
break;
#ifdef NOTYET
case ISAKMP_XCHG_AO:
case ISAKMP_XCHG_AGGR:
#endif
case ISAKMP_XCHG_INFO: /* an informational exchange */
st = find_state(md->hdr.isa_icookie, md->hdr.isa_rcookie
, &md->sender, MAINMODE_MSGID);
if (st != NULL)
set_cur_state(st);
if (md->hdr.isa_flags & ISAKMP_FLAG_ENCRYPTION)
{
if (st == NULL)
{
plog("Informational Exchange is for an unknown (expired?) SA");
/* XXX Could send notification back */
return;
}
if (!IS_ISAKMP_SA_ESTABLISHED(st->st_state))
{
loglog(RC_LOG_SERIOUS, "encrypted Informational Exchange message is invalid"
" because it is for incomplete ISAKMP SA");
/* XXX Could send notification back */
return;
}
if (md->hdr.isa_msgid == MAINMODE_MSGID)
{
loglog(RC_LOG_SERIOUS, "Informational Exchange message is invalid because"
" it has a Message ID of 0");
/* XXX Could send notification back */
return;
}
if (!reserve_msgid(st, md->hdr.isa_msgid))
{
loglog(RC_LOG_SERIOUS, "Informational Exchange message is invalid because"
" it has a previously used Message ID (0x%08lx)"
, (unsigned long)md->hdr.isa_msgid);
/* XXX Could send notification back */
return;
}
init_phase2_iv(st, &md->hdr.isa_msgid);
new_iv_set = TRUE;
from_state = STATE_INFO_PROTECTED;
}
else
{
if (st != NULL && IS_ISAKMP_SA_ESTABLISHED(st->st_state))
{
loglog(RC_LOG_SERIOUS, "Informational Exchange message for"
" an established ISAKMP SA must be encrypted");
/* XXX Could send notification back */
return;
}
from_state = STATE_INFO;
}
break;
case ISAKMP_XCHG_QUICK: /* part of a Quick Mode exchange */
if (is_zero_cookie(md->hdr.isa_icookie))
{
plog("Quick Mode message is invalid because"
" it has an Initiator Cookie of 0");
/* XXX Could send notification back */
return;
}
if (is_zero_cookie(md->hdr.isa_rcookie))
{
plog("Quick Mode message is invalid because"
" it has a Responder Cookie of 0");
/* XXX Could send notification back */
return;
}
if (md->hdr.isa_msgid == MAINMODE_MSGID)
{
plog("Quick Mode message is invalid because"
" it has a Message ID of 0");
/* XXX Could send notification back */
return;
}
st = find_state(md->hdr.isa_icookie, md->hdr.isa_rcookie
, &md->sender, md->hdr.isa_msgid);
if (st == NULL)
{
/* No appropriate Quick Mode state.
* See if we have a Main Mode state.
* ??? what if this is a duplicate of another message?
*/
st = find_state(md->hdr.isa_icookie, md->hdr.isa_rcookie
, &md->sender, MAINMODE_MSGID);
if (st == NULL)
{
plog("Quick Mode message is for a non-existent (expired?)"
" ISAKMP SA");
/* XXX Could send notification back */
return;
}
set_cur_state(st);
if (!IS_ISAKMP_SA_ESTABLISHED(st->st_state))
{
loglog(RC_LOG_SERIOUS, "Quick Mode message is unacceptable because"
" it is for an incomplete ISAKMP SA");
/* XXX Could send notification back */
return;
}
/* only accept this new Quick Mode exchange if it has a unique message ID */
if (!reserve_msgid(st, md->hdr.isa_msgid))
{
loglog(RC_LOG_SERIOUS, "Quick Mode I1 message is unacceptable because"
" it uses a previously used Message ID 0x%08lx"
" (perhaps this is a duplicated packet)"
, (unsigned long) md->hdr.isa_msgid);
/* XXX Could send notification INVALID_MESSAGE_ID back */
return;
}
/* Quick Mode Initial IV */
init_phase2_iv(st, &md->hdr.isa_msgid);
new_iv_set = TRUE;
from_state = STATE_QUICK_R0;
}
else
{
set_cur_state(st);
from_state = st->st_state;
}
break;
#ifdef NOTYET
case ISAKMP_XCHG_NGRP:
case ISAKMP_XCHG_ACK_INFO:
#endif
default:
plog("unsupported exchange type %s in message"
, enum_show(&exchange_names, md->hdr.isa_xchg));
return;
}
/* We have found a from_state, and perhaps a state object.
* If we need to build a new state object,
* we wait until the packet has been sanity checked.
*/
/* We don't support the Commit Flag. It is such a bad feature.
* It isn't protected -- neither encrypted nor authenticated.
* A man in the middle turns it on, leading to DoS.
* We just ignore it, with a warning.
* By placing the check here, we could easily add a policy bit
* to a connection to suppress the warning. This might be useful
* because the Commit Flag is expected from some peers.
*/
if (md->hdr.isa_flags & ISAKMP_FLAG_COMMIT)
{
plog("IKE message has the Commit Flag set but Pluto doesn't implement this feature; ignoring flag");
}
/* Set smc to describe this state's properties.
* Look up the appropriate microcode based on state and
* possibly Oakley Auth type.
*/
passert(STATE_IKE_FLOOR <= from_state && from_state <= STATE_IKE_ROOF);
smc = ike_microcode_index[from_state - STATE_IKE_FLOOR];
if (st != NULL)
{
while (!LHAS(smc->flags, st->st_oakley.auth))
{
smc++;
passert(smc->state == from_state);
}
}
/* Ignore a packet if the state has a suspended state transition
* Probably a duplicated packet but the original packet is not yet
* recorded in st->st_rpacket, so duplicate checking won't catch.
* ??? Should the packet be recorded earlier to improve diagnosis?
*/
if (st != NULL && st->st_suspended_md != NULL)
{
loglog(RC_LOG, "discarding packet received during DNS lookup in %s"
, enum_name(&state_names, st->st_state));
return;
}
/* Detect and handle duplicated packets.
* This won't work for the initial packet of an exchange
* because we won't have a state object to remember it.
* If we are in a non-receiving state (terminal), and the preceding
* state did transmit, then the duplicate may indicate that that
* transmission wasn't received -- retransmit it.
* Otherwise, just discard it.
* ??? Notification packets are like exchanges -- I hope that
* they are idempotent!
*/
if (st != NULL
&& st->st_rpacket.ptr != NULL
&& st->st_rpacket.len == pbs_room(&md->packet_pbs)
&& memcmp(st->st_rpacket.ptr, md->packet_pbs.start, st->st_rpacket.len) == 0)
{
if (smc->flags & SMF_RETRANSMIT_ON_DUPLICATE)
{
if (st->st_retransmit < MAXIMUM_RETRANSMISSIONS)
{
st->st_retransmit++;
loglog(RC_RETRANSMISSION
, "retransmitting in response to duplicate packet; already %s"
, enum_name(&state_names, st->st_state));
send_packet(st, "retransmit in response to duplicate");
}
else
{
loglog(RC_LOG_SERIOUS, "discarding duplicate packet -- exhausted retransmission; already %s"
, enum_name(&state_names, st->st_state));
}
}
else
{
loglog(RC_LOG_SERIOUS, "discarding duplicate packet; already %s"
, enum_name(&state_names, st->st_state));
}
return;
}
if (md->hdr.isa_flags & ISAKMP_FLAG_ENCRYPTION)
{
DBG(DBG_CRYPT, DBG_log("received encrypted packet from %s:%u"
, ip_str(&md->sender), (unsigned)md->sender_port));
if (st == NULL)
{
plog("discarding encrypted message for an unknown ISAKMP SA");
/* XXX Could send notification back */
return;
}
if (st->st_skeyid_e.ptr == (u_char *) NULL)
{
loglog(RC_LOG_SERIOUS, "discarding encrypted message"
" because we haven't yet negotiated keying materiel");
/* XXX Could send notification back */
return;
}
/* Mark as encrypted */
md->encrypted = TRUE;
DBG(DBG_CRYPT, DBG_log("decrypting %u bytes using algorithm %s"
, (unsigned) pbs_left(&md->message_pbs)
, enum_show(&oakley_enc_names, st->st_oakley.encrypt)));
/* do the specified decryption
*
* IV is from st->st_iv or (if new_iv_set) st->st_new_iv.
* The new IV is placed in st->st_new_iv
*
* See RFC 2409 "IKE" Appendix B
*
* XXX The IV should only be updated really if the packet
* is successfully processed.
* We should keep this value, check for a success return
* value from the parsing routines and then replace.
*
* Each post phase 1 exchange generates IVs from
* the last phase 1 block, not the last block sent.
*/
{
const struct encrypt_desc *e = st->st_oakley.encrypter;
if (pbs_left(&md->message_pbs) % e->blocksize != 0)
{
loglog(RC_LOG_SERIOUS, "malformed message: not a multiple of encryption blocksize");
/* XXX Could send notification back */
return;
}
/* XXX Detect weak keys */
/* grab a copy of raw packet (for duplicate packet detection) */
clonetochunk(md->raw_packet, md->packet_pbs.start
, pbs_room(&md->packet_pbs), "raw packet");
/* Decrypt everything after header */
if (!new_iv_set)
{
/* use old IV */
passert(st->st_iv_len <= sizeof(st->st_new_iv));
st->st_new_iv_len = st->st_iv_len;
memcpy(st->st_new_iv, st->st_iv, st->st_new_iv_len);
}
e->crypt(FALSE, md->message_pbs.cur, pbs_left(&md->message_pbs)
, st);
}
DBG_cond_dump(DBG_CRYPT, "decrypted:\n", md->message_pbs.cur
, md->message_pbs.roof - md->message_pbs.cur);
DBG_cond_dump(DBG_CRYPT, "next IV:"
, st->st_new_iv, st->st_new_iv_len);
}
else
{
/* packet was not encryped -- should it have been? */
if (smc->flags & SMF_INPUT_ENCRYPTED)
{
loglog(RC_LOG_SERIOUS, "packet rejected: should have been encrypted");
/* XXX Could send notification back */
return;
}
}
/* Digest the message.
* Padding must be removed to make hashing work.
* Padding comes from encryption (so this code must be after decryption).
* Padding rules are described before the definition of
* struct isakmp_hdr in packet.h.
*/
{
struct payload_digest *pd = md->digest;
int np = md->hdr.isa_np;
lset_t needed = smc->req_payloads;
const char *excuse
= LIN(SMF_PSK_AUTH | SMF_FIRST_ENCRYPTED_INPUT, smc->flags)
? "probable authentication failure (mismatch of preshared secrets?): "
: "";
while (np != ISAKMP_NEXT_NONE)
{
struct_desc *sd = np < ISAKMP_NEXT_ROOF? payload_descs[np] : NULL;
if (pd == &md->digest[PAYLIMIT])
{
loglog(RC_LOG_SERIOUS, "more than %d payloads in message; ignored", PAYLIMIT);
return;
}
if (sd == NULL)
{
/* payload type is out of range or requires special handling */
switch (np)
{
case ISAKMP_NEXT_ID:
sd = IS_PHASE1(from_state)
? &isakmp_identification_desc : &isakmp_ipsec_identification_desc;
break;
default:
loglog(RC_LOG_SERIOUS, "%smessage ignored because it contains an unknown or"
" unexpected payload type (%s) at the outermost level"
, excuse, enum_show(&payload_names, np));
return;
}
}
{
lset_t s = LELEM(np);
if (LDISJOINT(s
, needed | smc->opt_payloads| LELEM(ISAKMP_NEXT_N) | LELEM(ISAKMP_NEXT_D)))
{
loglog(RC_LOG_SERIOUS, "%smessage ignored because it "
"contains an unexpected payload type (%s)"
, excuse, enum_show(&payload_names, np));
return;
}
needed &= ~s;
}
if (!in_struct(&pd->payload, sd, &md->message_pbs, &pd->pbs))
{
loglog(RC_LOG_SERIOUS, "%smalformed payload in packet", excuse);
return;
}
/* place this payload at the end of the chain for this type */
{
struct payload_digest **p;
for (p = &md->chain[np]; *p != NULL; p = &(*p)->next)
;
*p = pd;
pd->next = NULL;
}
np = pd->payload.generic.isag_np;
pd++;
/* since we've digested one payload happily, it is probably
* the case that any decryption worked. So we will not suggest
* encryption failure as an excuse for subsequent payload
* problems.
*/
excuse = "";
}
md->digest_roof = pd;
DBG(DBG_PARSING,
if (pbs_left(&md->message_pbs) != 0)
DBG_log("removing %d bytes of padding", (int) pbs_left(&md->message_pbs)));
md->message_pbs.roof = md->message_pbs.cur;
/* check that all mandatory payloads appeared */
if (needed != 0)
{
loglog(RC_LOG_SERIOUS, "message for %s is missing payloads %s"
, enum_show(&state_names, from_state)
, bitnamesof(payload_name, needed));
return;
}
}
/* more sanity checking: enforce most ordering constraints */
if (IS_PHASE1(from_state))
{
/* rfc2409: The Internet Key Exchange (IKE), 5 Exchanges:
* "The SA payload MUST precede all other payloads in a phase 1 exchange."
*/
if (md->chain[ISAKMP_NEXT_SA] != NULL
&& md->hdr.isa_np != ISAKMP_NEXT_SA)
{
loglog(RC_LOG_SERIOUS, "malformed Phase 1 message: does not start with an SA payload");
return;
}
}
else if (IS_QUICK(from_state))
{
/* rfc2409: The Internet Key Exchange (IKE), 5.5 Phase 2 - Quick Mode
*
* "In Quick Mode, a HASH payload MUST immediately follow the ISAKMP
* header and a SA payload MUST immediately follow the HASH."
* [NOTE: there may be more than one SA payload, so this is not
* totally reasonable. Probably all SAs should be so constrained.]
*
* "If ISAKMP is acting as a client negotiator on behalf of another
* party, the identities of the parties MUST be passed as IDci and
* then IDcr."
*
* "With the exception of the HASH, SA, and the optional ID payloads,
* there are no payload ordering restrictions on Quick Mode."
*/
if (md->hdr.isa_np != ISAKMP_NEXT_HASH)
{
loglog(RC_LOG_SERIOUS, "malformed Quick Mode message: does not start with a HASH payload");
return;
}
{
struct payload_digest *p;
int i;
for (p = md->chain[ISAKMP_NEXT_SA], i = 1; p != NULL
; p = p->next, i++)
{
if (p != &md->digest[i])
{
loglog(RC_LOG_SERIOUS, "malformed Quick Mode message: SA payload is in wrong position");
return;
}
}
}
/* rfc2409: The Internet Key Exchange (IKE), 5.5 Phase 2 - Quick Mode:
* "If ISAKMP is acting as a client negotiator on behalf of another
* party, the identities of the parties MUST be passed as IDci and
* then IDcr."
*/
{
struct payload_digest *id = md->chain[ISAKMP_NEXT_ID];
if (id != NULL)
{
if (id->next == NULL || id->next->next != NULL)
{
loglog(RC_LOG_SERIOUS, "malformed Quick Mode message:"
" if any ID payload is present,"
" there must be exactly two");
return;
}
if (id+1 != id->next)
{
loglog(RC_LOG_SERIOUS, "malformed Quick Mode message:"
" the ID payloads are not adjacent");
return;
}
}
}
}
/* Ignore payloads that we don't handle:
* Delete, Notification, VendorID, Certificate Request, Certificate.
*/
/* XXX Handle deletions */
/* XXX Handle Notifications */
/* XXX Handle VID payloads */
{
struct payload_digest *p;
for (p = md->chain[ISAKMP_NEXT_N]; p != NULL; p = p->next)
{
loglog(RC_LOG_SERIOUS, "ignoring informational payload, type %s"
, enum_show(&ipsec_notification_names, p->payload.notification.isan_type));
DBG_cond_dump(DBG_PARSING, "info:", p->pbs.cur, pbs_left(&p->pbs));
}
for (p = md->chain[ISAKMP_NEXT_D]; p != NULL; p = p->next)
{
accept_delete(st, md, p);
DBG_cond_dump(DBG_PARSING, "del:", p->pbs.cur, pbs_left(&p->pbs));
}
for (p = md->chain[ISAKMP_NEXT_VID]; p != NULL; p = p->next)
{
char vid_string[48];
size_t vid_len = sizeof(vid_string) - 1 < pbs_left(&p->pbs)
? sizeof(vid_string) - 1 : pbs_left(&p->pbs);
size_t i;
/* make it printable by forcing bits; truncate if long */
for (i = 0; i < vid_len; i++)
vid_string[i] = (p->pbs.cur[i] & 0x7f) | 0x40;
vid_string[vid_len] = '\0';
loglog(RC_LOG, "received Vendor ID Payload; ASCII hash: %s"
, vid_string);
DBG_cond_dump(DBG_PARSING, "VID:", p->pbs.cur, pbs_left(&p->pbs));
}
for (p = md->chain[ISAKMP_NEXT_CR]; p != NULL; p = p->next)
{
loglog(RC_LOG_SERIOUS, "ignoring Certificate Request payload");
DBG_cond_dump(DBG_PARSING, "CR:", p->pbs.cur, pbs_left(&p->pbs));
}
for (p = md->chain[ISAKMP_NEXT_CERT]; p != NULL; p = p->next)
{
loglog(RC_LOG_SERIOUS, "ignoring Certificate payload");
DBG_cond_dump(DBG_PARSING, "CERT:", p->pbs.cur, pbs_left(&p->pbs));
}
}
md->from_state = from_state;
md->smc = smc;
md->st = st;
/* possibly fill in hdr */
if (smc->first_out_payload != ISAKMP_NEXT_NONE)
echo_hdr(md, (smc->flags & SMF_OUTPUT_ENCRYPTED) != 0
, smc->first_out_payload);
complete_state_transition(mdp, smc->processor(md));
}
/* complete job started by the state-specific state transition function */
void
complete_state_transition(struct msg_digest **mdp, stf_status result)
{
struct msg_digest *md = *mdp;
const struct state_microcode *smc = md->smc;
enum state_kind from_state = md->from_state;
struct state *st;
cur_state = st = md->st; /* might have changed */
switch (result)
{
case STF_IGNORE:
break;
case STF_SUSPEND:
/* the stf didn't complete its job: don't relase md */
*mdp = NULL;
break;
case STF_OK:
/* advance the state */
st->st_state = smc->next_state;
/* Delete previous retransmission event.
* New event will be scheduled below.
*/
delete_event(st);
/* replace previous receive packet with latest */
pfreeany(st->st_rpacket.ptr);
if (md->encrypted)
{
/* if encrypted, duplication already done */
st->st_rpacket = md->raw_packet;
md->raw_packet.ptr = NULL;
}
else
{
clonetochunk(st->st_rpacket
, md->packet_pbs.start
, pbs_room(&md->packet_pbs), "raw packet");
}
/* free previous transmit packet */
freeanychunk(st->st_tpacket);
/* if requested, send the new reply packet */
if (smc->flags & SMF_REPLY)
{
close_output_pbs(&md->reply); /* good form, but actually a no-op */
clonetochunk(st->st_tpacket, md->reply.start
, pbs_offset(&md->reply), "reply packet");
/* actually send the packet
* Note: this is a great place to implement "impairments"
* for testing purposes. Suppress or duplicate the
* send_packet call depending on st->st_state.
*/
send_packet(st, enum_name(&state_names, from_state));
}
/* Schedule for whatever timeout is specified */
{
time_t delay;
enum event_type kind = smc->timeout_event;
bool agreed_time = FALSE;
struct connection *c = st->st_connection;
switch (kind)
{
case EVENT_RETRANSMIT: /* Retransmit packet */
delay = EVENT_RETRANSMIT_DELAY_0;
break;
case EVENT_SA_REPLACE: /* SA replacement event */
if (IS_PHASE1(st->st_state))
{
/* Note: we will defer to the "negotiated" (dictated)
* lifetime if we are POLICY_DONT_REKEY.
* This allows the other side to dictate
* a time we would not otherwise accept
* but it prevents us from having to initiate
* rekeying. The negative consequences seem
* minor.
*/
delay = c->sa_ike_life_seconds;
if ((c->policy & POLICY_DONT_REKEY)
|| delay >= st->st_oakley.life_seconds)
{
agreed_time = TRUE;
delay = st->st_oakley.life_seconds;
}
}
else
{
/* Delay is min of up to four things:
* each can limit the lifetime.
*/
delay = c->sa_ipsec_life_seconds;
if (st->st_ah.present
&& delay >= st->st_ah.attrs.life_seconds)
{
agreed_time = TRUE;
delay = st->st_ah.attrs.life_seconds;
}
if (st->st_esp.present
&& delay >= st->st_esp.attrs.life_seconds)
{
agreed_time = TRUE;
delay = st->st_esp.attrs.life_seconds;
}
if (st->st_ipcomp.present
&& delay >= st->st_ipcomp.attrs.life_seconds)
{
agreed_time = TRUE;
delay = st->st_ipcomp.attrs.life_seconds;
}
}
/* By default, we plan to rekey.
*
* If there isn't enough time to rekey, plan to
* expire.
*
* If we are --dontrekey, a lot more rules apply.
* If we are the Initiator, use REPLACE_IF_USED.
* If we are the Responder, and the dictated time
* was unacceptable (too large), plan to REPLACE
* (the only way to ratchet down the time).
* If we are the Responder, and the dictated time
* is acceptable, plan to EXPIRE.
*
* Important policy lies buried here.
* For example, we favour the initiator over the
* responder by making the initiator start rekeying
* sooner. Also, fuzz is only added to the
* initiator's margin.
*
* Note: for ISAKMP SA, we let the negotiated
* time stand (implemented by earlier logic).
*/
if (agreed_time
&& (c->policy & POLICY_DONT_REKEY))
{
kind = (smc->flags & SMF_INITIATOR)
? EVENT_SA_REPLACE_IF_USED
: EVENT_SA_EXPIRE;
}
if (kind != EVENT_SA_EXPIRE)
{
unsigned long marg = c->sa_rekey_margin;
if (smc->flags & SMF_INITIATOR)
marg += marg
* c->sa_rekey_fuzz / 100.E0
* (rand() / (RAND_MAX + 1.E0));
else
marg /= 2;
if ((unsigned long)delay > marg)
{
delay -= marg;
st->st_margin = marg;
}
else
{
kind = EVENT_SA_EXPIRE;
}
}
break;
case EVENT_NULL: /* non-event */
case EVENT_REINIT_SECRET: /* Refresh cookie secret */
default:
bad_case(kind);
}
event_schedule(kind, delay, st);
}
/* tell whack and log of progress */
{
const char *story = state_story[st->st_state - STATE_MAIN_R0];
enum rc_type w = RC_NEW_STATE + st->st_state;
char sadetails[128];
sadetails[0]='\0';
if(IS_IPSEC_SA_ESTABLISHED(st->st_state))
{
char *b = sadetails;
const char *ini = " {";
const char *fin = "";
/* -1 is to leave space for "fin" */
if(st->st_esp.present)
{
snprintf(b, sizeof(sadetails)-(b-sadetails)-1
, "%sESP=>0x%08x <0x%08x"
, ini
, ntohl(st->st_esp.attrs.spi)
, ntohl(st->st_esp.our_spi));
ini = " ";
fin = "}";
}
/* advance b to end of string */
b = b + strlen(b);
if(st->st_ah.present)
{
snprintf(b, sizeof(sadetails)-(b-sadetails)-1
, "%sAH=>0x%08x <0x%08x"
, ini
, ntohl(st->st_ah.attrs.spi)
, ntohl(st->st_ah.our_spi));
ini = " ";
fin = "}";
}
/* advance b to end of string */
b = b + strlen(b);
if(st->st_ipcomp.present)
{
snprintf(b, sizeof(sadetails)-(b-sadetails)-1
, "%sIPCOMP=>0x%08x <0x%08x"
, ini
, ntohl(st->st_ipcomp.attrs.spi)
, ntohl(st->st_ipcomp.our_spi));
ini = " ";
fin = "}";
}
strcat(b, fin);
}
if (IS_ISAKMP_SA_ESTABLISHED(st->st_state)
|| IS_IPSEC_SA_ESTABLISHED(st->st_state))
{
/* log our success */
plog("%s%s", story, sadetails);
w = RC_SUCCESS;
}
/* tell whack our progress */
whack_log(w
, "%s: %s%s"
, enum_name(&state_names, st->st_state)
, story, sadetails);
}
if (smc->flags & SMF_RELEASE_PENDING_P2)
{
/* Initiate any Quick Mode negotiations that
* were waiting to piggyback on this Keying Channel.
*
* ??? there is a potential race condition
* if we are the responder: the initial Phase 2
* message might outrun the final Phase 1 message.
* I think that retransmission will recover.
*/
unpend(st);
}
if (IS_ISAKMP_SA_ESTABLISHED(st->st_state)
|| IS_IPSEC_SA_ESTABLISHED(st->st_state))
release_whack(st);
break;
case STF_INTERNAL_ERROR:
whack_log(RC_INTERNALERR + md->note
, "%s: internal error"
, enum_name(&state_names, st->st_state));
DBG(DBG_CONTROL,
DBG_log("state transition function for %s had internal error"
, enum_name(&state_names, from_state)));
break;
default: /* a shortcut to STF_FAIL, setting md->note */
passert(result > STF_FAIL);
md->note = result - STF_FAIL;
result = STF_FAIL;
/* FALL THROUGH ... */
case STF_FAIL:
/* XXX Could send notification back
* As it is, we act as if this message never happened:
* whatever retrying was in place, remains in place.
*/
whack_log(RC_NOTIFICATION + md->note
, "%s: %s", enum_name(&state_names, st->st_state)
, enum_name(&ipsec_notification_names, md->note));
DBG(DBG_CONTROL,
DBG_log("state transition function for %s failed: %s"
, enum_name(&state_names, from_state)
, enum_name(&ipsec_notification_names, md->note)));
break;
}
}
|