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
|
/* IPsec DOI and Oakley resolution routines
* Copyright (C) 1997 Angelos D. Keromytis.
* Copyright (C) 1998-2002,2013 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2003-2005 Michael Richardson <mcr@xelerance.com>
* Copyright (C) 2011 Avesh Agarwal <avagarwa@redhat.com>
* Copyright (C) 2012 Philippe Vouters <philippe.vouters@laposte.net>
* Copyright (C) 2012 Paul Wouters <paul@libreswan.org>
* Copyright (C) 2013-2019 Paul Wouters <pwouters@redhat.com>
* Copyright (C) 2013 David McCullough <ucdevel@gmail.com>
* Copyright (C) 2019 Andrew Cagney <cagney@gnu.org>
*
* 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 <https://www.gnu.org/licenses/gpl2.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.
*
*/
#include <unistd.h>
#include "constants.h"
#include "defs.h"
#include "state.h"
#include "connections.h" /* needs id.h */
#include "packet.h"
#include "demux.h" /* needs packet.h */
#include "log.h"
#include "ike_spi.h"
#include "ikev1_spdb.h"
#include "ipsec_doi.h" /* needs demux.h and state.h */
#include "ikev1_send.h"
#include "ikev1.h"
#include "nat_traversal.h"
#include "ikev1_nat.h"
#include "pluto_x509.h"
#include "fd.h"
#include "ikev1_message.h"
#include "pending.h"
#include "iface.h"
#include "secrets.h"
#include "crypt_ke.h"
#include "crypt_dh.h"
#include "unpack.h"
#include "ikev1_host_pair.h"
#include "ikev1_peer_id.h"
#include "peer_id.h" /* for update_peer_id_cert() */
#include "ikev1_vendorid.h"
#include "ikev1_cert.h"
/* STATE_AGGR_R0: HDR, SA, KE, Ni, IDii
* --> HDR, SA, KE, Nr, IDir, HASH_R/SIG_R
*/
/*
* Control flow is very confusing.
*
* Entry points:
* aggr_outI1: called to initiate
* aggr_inI1_outR1
* aggr_inR1_outI2
* aggr_inI2
*
* Called by:
* aggr_inI1_outR1_continue1: ke(aggr_inI1_outR1)
* aggr_inI1_outR1_continue2: dh(aggr_inI1_outR1_continue1)
* aggr_inI1_outR1_tail: aggr_inI1_outR1_continue2
*/
static dh_shared_secret_cb aggr_inI1_outR1_continue2; /* type assertion */
static ke_and_nonce_cb aggr_inI1_outR1_continue1; /* type assertion */
static dh_shared_secret_cb aggr_inR1_outI2_crypto_continue; /* forward decl and type assertion */
static ke_and_nonce_cb aggr_outI1_continue; /* type assertion */
static ke_and_nonce_cb aggr_outI1_continue_tail;
/*
* Initiate an Oakley Aggressive Mode exchange.
* --> HDR, SA, KE, Ni, IDii
*/
/* No initial state for aggr_outI1:
* SMF_DS_AUTH (RFC 2409 5.1) and SMF_PSK_AUTH (RFC 2409 5.4):
* -->HDR, SA, KE, Ni, IDii
*
* Not implemented:
* RFC 2409 5.2: --> HDR, SA, [ HASH(1),] KE, <IDii_b>Pubkey_r, <Ni_b>Pubkey_r
* RFC 2409 5.3: --> HDR, SA, [ HASH(1),] <Ni_b>Pubkey_r, <KE_b>Ke_i, <IDii_b>Ke_i [, <Cert-I_b>Ke_i ]
*/
struct ike_sa *aggr_outI1(struct connection *c,
struct ike_sa *predecessor,
const struct child_policy *policy,
const threadtime_t *inception,
bool detach_whack)
{
/* set up new state */
struct ike_sa *ike = new_v1_istate(c, STATE_AGGR_I1);
if (ike == NULL) {
return NULL;
}
statetime_t start = statetime_backdate(&ike->sa, inception);
if (c->local->host.config->auth == AUTH_PSK &&
c->config->aggressive) {
llog_sa(RC_LOG, ike,
"IKEv1 Aggressive Mode with PSK is vulnerable to dictionary attacks and is cracked on large scale by TLA's");
}
if (!init_aggr_st_oakley(ike)) {
/*
* This is only the case if NO IKE proposal was specified in the
* configuration file. It's not the case if there were multiple
* configurations, even conflicting multiple DH groups. So this
* should tell the user to add a proper proposal policy
*/
llog_sa(RC_AGGRALGO, ike,
"no IKE proposal policy specified in config! Cannot initiate aggressive mode. A policy must be specified in the configuration and should contain at most one DH group (mod1024, mod1536, mod2048). Only the first DH group will be honored.");
return NULL;
}
if (has_child_policy(policy)) {
/*
* When replacing the IKE (ISAKMP) SA, policy=LEMPTY
* so that a Child SA isn't also initiated and this
* code is skipped.
*/
append_pending(ike, c, policy,
(predecessor == NULL ? SOS_NOBODY : predecessor->sa.st_serialno),
null_shunk, true /*part of initiate*/,
detach_whack);
}
if (predecessor == NULL) {
llog_sa(RC_LOG, ike, "initiating IKEv1 Aggressive Mode connection");
} else {
move_pending(predecessor, ike);
llog_sa(RC_LOG, ike,
"initiating IKEv1 Aggressive Mode connection "PRI_SO" to replace "PRI_SO,
pri_so(ike->sa.st_serialno),
pri_so(predecessor->sa.st_serialno));
}
/*
* Calculate KE and Nonce.
*/
submit_ke_and_nonce(/*callback*/&ike->sa, /*task*/&ike->sa, /*no-md*/NULL,
ike->sa.st_oakley.ta_dh,
aggr_outI1_continue,
/*detach_whack*/false, HERE);
statetime_stop(&start, "%s()", __func__);
PEXPECT(ike->sa.logger, ike->sa.st_v1_phase_1_iv.len == 0); /*aggr_outI1*/
return ike;
}
static stf_status aggr_outI1_continue(struct state *ike_sa,
struct msg_digest *unused_md,
struct dh_local_secret *local_secret,
chunk_t *nonce)
{
struct ike_sa *ike = pexpect_ike_sa(ike_sa);
if (ike == NULL) {
return STF_INTERNAL_ERROR;
}
ldbg(ike->sa.logger, "%s() for "PRI_SO, __func__, pri_so(ike->sa.st_serialno));
stf_status e = aggr_outI1_continue_tail(&ike->sa, unused_md,
local_secret, nonce); /* may return FAIL */
PEXPECT(ike->sa.logger, ike->sa.st_v1_phase_1_iv.len == 0); /*aggr_outI1_continue*/
pexpect(e == STF_IGNORE); /* ??? what would be better? */
complete_v1_state_transition(&ike->sa, NULL, STF_IGNORE);
return STF_SKIP_COMPLETE_STATE_TRANSITION;
}
static stf_status aggr_outI1_continue_tail(struct state *ike_sa,
struct msg_digest *null_md,
struct dh_local_secret *local_secret,
chunk_t *nonce)
{
struct ike_sa *ike = pexpect_ike_sa(ike_sa);
if (ike == NULL) {
return STF_INTERNAL_ERROR;
}
ldbg(ike->sa.logger, "%s() for "PRI_SO, __func__, pri_so(ike->sa.st_serialno));
PASSERT(ike->sa.logger, null_md == NULL); /* no packet */
struct connection *c = ike->sa.st_connection;
const struct cert *mycert = c->local->host.config->cert.nss_cert != NULL ? &c->local->host.config->cert : NULL;
bool send_cr = (mycert != NULL &&
!remote_has_preloaded_pubkey(ike) &&
(c->local->host.config->sendcert == CERT_SENDIFASKED ||
c->local->host.config->sendcert == CERT_ALWAYSSEND));
dbg("aggr_outI1_tail for #%lu", ike->sa.st_serialno);
/* make sure HDR is at start of a clean buffer */
reply_stream = open_pbs_out("reply packet", reply_buffer, sizeof(reply_buffer), ike->sa.logger);
/* HDR out */
struct pbs_out rbody;
{
struct isakmp_hdr hdr = {
.isa_version = ISAKMP_MAJOR_VERSION << ISA_MAJ_SHIFT |
ISAKMP_MINOR_VERSION,
.isa_xchg = ISAKMP_XCHG_AGGR,
};
hdr.isa_ike_initiator_spi = ike->sa.st_ike_spis.initiator;
/* R-cookie, flags and MessageID are left zero */
if (!out_struct(&hdr, &isakmp_hdr_desc, &reply_stream,
&rbody)) {
return STF_INTERNAL_ERROR;
}
}
/* SA out */
{
uint8_t *sa_start = rbody.cur;
if (!ikev1_out_aggr_sa(&rbody, ike)) {
return STF_INTERNAL_ERROR;
}
/* save initiator SA for later HASH */
passert(ike->sa.st_p1isa.ptr == NULL); /* no leak! */
ike->sa.st_p1isa = clone_bytes_as_chunk(sa_start, rbody.cur - sa_start,
"sa in aggr_outI1");
}
/* KE out */
if (!ikev1_ship_KE(&ike->sa, local_secret, &ike->sa.st_gi, &rbody))
return STF_INTERNAL_ERROR;
/* Ni out */
if (!ikev1_ship_nonce(&ike->sa.st_ni, nonce, &rbody, "Ni"))
return STF_INTERNAL_ERROR;
/* IDii out */
{
shunk_t id_b;
struct isakmp_ipsec_id id_hd = build_v1_id_payload(&c->local->host, &id_b);
struct pbs_out id_pbs;
if (!out_struct(&id_hd, &isakmp_ipsec_identification_desc,
&rbody, &id_pbs) ||
!out_hunk(id_b, &id_pbs, "my identity"))
return STF_INTERNAL_ERROR;
close_output_pbs(&id_pbs);
}
/* CERTREQ out */
if (send_cr) {
llog(RC_LOG, ike->sa.logger, "I am sending a certificate request");
if (!ikev1_build_and_ship_CR(cert_ike_type(mycert), c->remote->host.config->ca, &rbody))
return STF_INTERNAL_ERROR;
}
/* send Vendor IDs */
if (!out_v1VID_set(&rbody, c))
return STF_INTERNAL_ERROR;
/* as Initiator, spray NAT VIDs */
if (!emit_nat_traversal_vid(&rbody, c))
return STF_INTERNAL_ERROR;
/* finish message */
if (!close_v1_message(&rbody, ike))
return STF_INTERNAL_ERROR;
close_output_pbs(&reply_stream);
/* Transmit */
record_and_send_v1_ike_msg(&ike->sa, &reply_stream, "aggr_outI1");
/* Set up a retransmission event, half a minute hence */
delete_v1_event(&ike->sa);
clear_retransmits(&ike->sa);
start_retransmits(&ike->sa);
llog(RC_LOG, ike->sa.logger, "%s", ike->sa.st_state->story);
PEXPECT(ike->sa.logger, ike->sa.st_v1_phase_1_iv.len == 0); /*aggr_outI1_tail*/
return STF_IGNORE;
}
/* STATE_AGGR_R0:
* SMF_PSK_AUTH: HDR, SA, KE, Ni, IDii
* --> HDR, SA, KE, Nr, IDir, HASH_R
* SMF_DS_AUTH: HDR, SA, KE, Nr, IDii
* --> HDR, SA, KE, Nr, IDir, [CERT,] SIG_R
*/
stf_status aggr_inI1_outR1(struct state *null_st UNUSED,
struct msg_digest *md)
{
diag_t d;
/*
* With Aggressive Mode, we get an ID payload in this, the
* first message, so we can use it to index the
* preshared-secrets when the IP address would not be
* meaningful (i.e. Road Warrior). That's the one
* justification for Aggressive Mode.
*/
struct payload_digest *const sa_pd = md->chain[ISAKMP_NEXT_SA];
if (drop_new_exchanges(md->logger) != NULL) {
/* already debug-logged; log would fill disk */
return STF_IGNORE;
}
bool xauth = false;
struct authby authby = {0};
d = preparse_isakmp_sa_body(sa_pd->pbs, &authby, &xauth);
if (d != NULL) {
llog(RC_LOG, md->logger,
"initial Aggressive Mode message has corrupt SA payload: %s",
str_diag(d));
pfree_diag(&d);
return STF_IGNORE;
}
const struct payload_digest *const id_pld = md->chain[ISAKMP_NEXT_ID];
const struct isakmp_id *const id = &id_pld->payload.id;
struct id peer_id;
struct id *ppeer_id = NULL;
d = unpack_id(id->isaid_idtype, &peer_id, &id_pld->pbs);
if (d != NULL) {
dbg("IKEv1 aggressive mode peer ID unpacking failed - ignored peer ID to find connection");
} else {
ppeer_id = &peer_id;
}
struct connection *c = find_v1_aggr_mode_connection(md, authby, xauth, ppeer_id); /* must delref */
if (c == NULL) {
/* XXX: already logged */
/* XXX notification is in order! */
return STF_IGNORE;
}
/* Set up state */
struct ike_sa *ike = new_v1_rstate(c, md);
/* delref stack connection pointer */
connection_delref(&c, md->logger);
c = ike->sa.st_connection;
md->v1_st = &ike->sa; /* (caller will reset cur_state) */
change_v1_state(&ike->sa, STATE_AGGR_R0);
/*
* Warn when peer is expected to use especially dangerous
* Aggressive Mode and PSK (IKEv1 authentication is symmetric
* so also applies to this end).
*/
if (c->remote->host.config->auth == AUTH_PSK &&
c->config->aggressive) {
llog_sa(RC_LOG, ike,
"IKEv1 Aggressive Mode with PSK is vulnerable to dictionary attacks and is cracked on large scale by TLA's");
}
/*
* ??? not sure what's needed here.
*
* Use remote's allowed authentication; since IKEv1 is
* symmetric this also applies to us. Strangely this
* preference for PSK over RSASIG is the reverse of
* auth_from_authby() which is used to set host.auth.
*/
ike->sa.st_oakley.auth = (c->remote->host.config->auth == AUTH_PSK ? OAKLEY_PRESHARED_KEY :
c->remote->host.config->auth == AUTH_RSASIG ? OAKLEY_RSA_SIG :
0); /* we don't really know */
if (!v1_decode_certs(md)) {
llog_sa(RC_LOG, ike, "X509: CERT payload bogus or revoked");
/* XXX notification is in order! */
return STF_FAIL_v1N + v1N_INVALID_ID_INFORMATION;
}
/*
* Note: Aggressive mode so this cannot change the connection.
*/
if (!ikev1_decode_peer_id_aggr_mode_responder(ike, md)) {
id_buf buf;
endpoint_buf b;
llog_sa(RC_LOG, ike,
"initial Aggressive Mode packet claiming to be from %s on %s but no matching connection has been authorized",
str_id(&ike->sa.st_connection->remote->host.id, &buf),
str_endpoint(&md->sender, &b));
/* XXX notification is in order! */
return STF_FAIL_v1N + v1N_INVALID_ID_INFORMATION;
}
passert(c == ike->sa.st_connection); /* no switch */
ike->sa.st_policy = (struct child_policy){0}; /* only as accurate as connection */
binlog_refresh_state(&ike->sa);
{
address_buf b;
connection_buf cib;
llog_sa(RC_LOG, ike,
"responding to Aggressive Mode, state #%lu, connection "PRI_CONNECTION" from %s",
ike->sa.st_serialno,
pri_connection(c, &cib),
str_address_sensitive(&c->remote->host.addr, &b));
}
merge_quirks(ike, md);
check_nat_traversal_vid(ike, md);
/* save initiator SA for HASH */
/*
* ??? how would st->st_p1isa.ptr != NULL?
* This routine creates *st itself so how would this field
* be already filled-in.
*/
pexpect(ike->sa.st_p1isa.ptr == NULL);
ike->sa.st_p1isa = clone_pbs_in_all(&sa_pd->pbs, "sa in aggr_inI1_outR1()");
/*
* parse_isakmp_sa picks the right group, which we need to know
* before we do any calculations. We will call it again to have it
* emit the winning SA into the output.
*/
/* SA body in */
{
struct pbs_in sabs = sa_pd->pbs;
RETURN_STF_FAIL_v1NURE(parse_isakmp_sa_body(&sabs,
&sa_pd->payload.sa,
NULL, false, ike));
}
/* KE in */
if (!unpack_KE(&ike->sa.st_gi, "Gi", ike->sa.st_oakley.ta_dh,
md->chain[ISAKMP_NEXT_KE], ike->sa.logger)) {
return STF_FAIL_v1N + v1N_INVALID_KEY_INFORMATION;
}
/* Ni in */
RETURN_STF_FAIL_v1NURE(accept_v1_nonce(ike->sa.logger, md, &ike->sa.st_ni, "Ni"));
/* calculate KE and Nonce */
submit_ke_and_nonce(/*callback*/&ike->sa, /*task*/&ike->sa, md,
ike->sa.st_oakley.ta_dh,
aggr_inI1_outR1_continue1,
/*detach_whack*/false, HERE);
PEXPECT(ike->sa.logger, ike->sa.st_v1_phase_1_iv.len == 0); /*aggr_outI1_outR1*/
return STF_SUSPEND;
}
/*
* for aggressive mode, this is sub-optimal, since we should have
* had the crypto helper actually do everything, but we need to do
* some additional work to set that all up, so this is fine for now.
*/
static stf_status aggr_inI1_outR1_continue1(struct state *ike_sa,
struct msg_digest *md,
struct dh_local_secret *local_secret,
chunk_t *nonce)
{
struct ike_sa *ike = pexpect_ike_sa(ike_sa);
if (ike == NULL) {
return STF_INTERNAL_ERROR;
}
ldbg(ike->sa.logger, "%s() for "PRI_SO, __func__, pri_so(ike->sa.st_serialno));
/* unpack first calculation */
unpack_KE_from_helper(&ike->sa, local_secret, &ike->sa.st_gr);
/* unpack nonce too */
unpack_nonce(&ike->sa.st_nr, nonce);
/* set up second calculation */
submit_dh_shared_secret(/*callback*/&ike->sa, /*task*/&ike->sa, md,
ike->sa.st_gi/*initiator's KE*/,
aggr_inI1_outR1_continue2, HERE);
/*
* XXX: Since more crypto has been requested, MD needs to be re
* suspended. If the original crypto request did everything
* this wouldn't be needed.
*/
PEXPECT(ike->sa.logger, ike->sa.st_v1_phase_1_iv.len == 0); /*aggr_outI1_outR1_continue1*/
return STF_SUSPEND;
}
static stf_status aggr_inI1_outR1_continue2(struct state *ike_sa,
struct msg_digest *md)
{
struct ike_sa *ike = pexpect_ike_sa(ike_sa);
if (ike == NULL) {
return STF_INTERNAL_ERROR;
}
ldbg(ike->sa.logger, "%s() for "PRI_SO, __func__, pri_so(ike->sa.st_serialno));
passert(md != NULL);
const struct connection *c = ike->sa.st_connection;
struct payload_digest *const sa_pd = md->chain[ISAKMP_NEXT_SA];
const struct cert *mycert = c->local->host.config->cert.nss_cert != NULL ? &c->local->host.config->cert : NULL;
/* parse_isakmp_sa also spits out a winning SA into our reply,
* so we have to build our reply_stream and emit HDR before calling it.
*/
if (ike->sa.st_dh_shared_secret == NULL) {
return STF_FAIL_v1N + v1N_INVALID_KEY_INFORMATION;
}
/*
* Save the IV ready for decrypting inR2 in ikev2.c. Note
* that inI1_outR1 doesn't encrypt the outR1 response (so no
* point looking for a close_and_encrypt_v1_message() call).
*/
update_v1_phase_1_iv(ike, calc_v1_skeyid_and_iv(ike), HERE); /* inI1-outR1 */
/* decode certificate requests */
decode_v1_certificate_requests(ike, md);
bool cert_requested = (ike->sa.st_v1_requested_ca != NULL);
/*
* send certificate if we have one and auth is RSA, and we were
* told we can send one if asked, and we were asked, or we were told
* to always send one.
*/
bool send_cert = (ike->sa.st_oakley.auth == OAKLEY_RSA_SIG && mycert != NULL &&
((c->local->host.config->sendcert == CERT_SENDIFASKED && cert_requested) ||
(c->local->host.config->sendcert == CERT_ALWAYSSEND)));
bool send_authcerts = (send_cert && c->config->send_ca != CA_SEND_NONE);
/*****
* From here on, if send_authcerts, we are obligated to:
* free_auth_chain(auth_chain, chain_len);
*****/
chunk_t auth_chain[MAX_CA_PATH_LEN] = { { NULL, 0 } };
int chain_len = 0;
if (send_authcerts) {
chain_len = get_auth_chain(auth_chain, MAX_CA_PATH_LEN, mycert,
c->config->send_ca == CA_SEND_ALL);
if (chain_len == 0)
send_authcerts = false;
}
doi_log_cert_thinking(ike->sa.st_oakley.auth, cert_ike_type(mycert),
c->local->host.config->sendcert, cert_requested,
send_cert, send_authcerts);
/* send certificate request, if we don't have a preloaded RSA public key */
bool send_cr = send_cert && !remote_has_preloaded_pubkey(ike);
dbg(" I am %ssending a certificate request",
send_cr ? "" : "not ");
/* done parsing; initialize crypto */
reply_stream = open_pbs_out("reply packet", reply_buffer, sizeof(reply_buffer), ike->sa.logger);
/* HDR out */
struct pbs_out rbody;
{
struct isakmp_hdr hdr = md->hdr;
hdr.isa_flags = 0; /* clear reserved fields */
hdr.isa_ike_responder_spi = ike->sa.st_ike_spis.responder;
hdr.isa_np = ISAKMP_NEXT_NONE; /* clear NP */
if (impair.send_bogus_isakmp_flag) {
hdr.isa_flags |= ISAKMP_FLAGS_RESERVED_BIT6;
}
if (!out_struct(&hdr, &isakmp_hdr_desc, &reply_stream,
&rbody)) {
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
}
/* start of SA out */
{
struct isakmp_sa r_sa = {
.isasa_doi = ISAKMP_DOI_IPSEC,
};
struct pbs_out r_sa_pbs;
if (!out_struct(&r_sa, &isakmp_sa_desc, &rbody,
&r_sa_pbs)) {
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
/* SA body in and out */
v1_notification_t rn = parse_isakmp_sa_body(&sa_pd->pbs,
&sa_pd->payload.sa,
&r_sa_pbs, false, ike);
if (rn != v1N_NOTHING_WRONG) {
free_auth_chain(auth_chain, chain_len);
return STF_FAIL_v1N + rn;
}
}
/* don't know until after SA body has been parsed */
enum next_payload_types_ikev1 auth_payload =
ike->sa.st_oakley.auth == OAKLEY_PRESHARED_KEY ?
ISAKMP_NEXT_HASH : ISAKMP_NEXT_SIG;
/************** build rest of output: KE, Nr, IDir, HASH_R/SIG_R ********/
/* KE */
if (!ikev1_justship_KE(ike->sa.logger, &ike->sa.st_gr, &rbody)) {
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
/* Nr */
if (!ikev1_justship_nonce(&ike->sa.st_nr, &rbody, "Nr")) {
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
/* IDir out */
struct pbs_out r_id_pbs; /* ID Payload; used later for hash calculation; XXX: use ID_B instead? */
{
shunk_t id_b;
struct isakmp_ipsec_id id_hd = build_v1_id_payload(&c->local->host, &id_b);
if (!out_struct(&id_hd, &isakmp_ipsec_identification_desc,
&rbody, &r_id_pbs) ||
!out_hunk(id_b, &r_id_pbs, "my identity")) {
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
close_output_pbs(&r_id_pbs);
}
/* CERT out */
if (send_cert) {
struct pbs_out cert_pbs;
struct isakmp_cert cert_hd = {
.isacert_type = cert_ike_type(mycert),
};
llog(RC_LOG, ike->sa.logger, "I am sending my certificate");
if (!out_struct(&cert_hd,
&isakmp_ipsec_certificate_desc,
&rbody,
&cert_pbs) ||
!out_hunk(cert_der(mycert), &cert_pbs, "CERT")) {
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
close_output_pbs(&cert_pbs);
}
free_auth_chain(auth_chain, chain_len);
/***** obligation to free_auth_chain has been discharged *****/
/* CERTREQ out */
if (send_cr) {
llog(RC_LOG, ike->sa.logger, "I am sending a certificate request");
if (!ikev1_build_and_ship_CR(cert_ike_type(mycert), c->remote->host.config->ca, &rbody))
return STF_INTERNAL_ERROR;
}
/* HASH_R or SIG_R out */
{
struct crypt_mac hash = main_mode_hash(ike, SA_RESPONDER,
pbs_out_all(&r_id_pbs));
if (auth_payload == ISAKMP_NEXT_HASH) {
/* HASH_R out */
if (!ikev1_out_generic_raw(&isakmp_hash_desc,
&rbody,
hash.ptr,
hash.len,
"HASH_R"))
return STF_INTERNAL_ERROR;
} else {
/* SIG_R out */
struct hash_signature sig = v1_sign_hash_RSA(c, &hash,
ike->sa.logger);
if (sig.len == 0) {
/* already logged */
return STF_FAIL_v1N + v1N_AUTHENTICATION_FAILED;
}
if (!ikev1_out_generic_raw(&isakmp_signature_desc,
&rbody, sig.ptr, sig.len,
"SIG_R"))
return STF_INTERNAL_ERROR;
}
}
/* send Vendor IDs */
if (!out_v1VID_set(&rbody, c))
return STF_INTERNAL_ERROR;
if (ike->sa.hidden_variables.st_nat_traversal != LEMPTY) {
/* as Responder, send best NAT VID we received */
if (!out_v1VID(&rbody, md->v1_quirks.qnat_traversal_vid))
return STF_INTERNAL_ERROR;
/* send two ISAKMP_NEXT_NATD_RFC* hash payloads to support NAT */
if (!ikev1_nat_traversal_add_natd(&rbody, md))
return STF_INTERNAL_ERROR;
}
/* finish message */
if (!close_v1_message(&rbody, ike))
return STF_INTERNAL_ERROR;
PEXPECT(ike->sa.logger, ike->sa.st_v1_phase_1_iv.len > 0); /*aggr_outI1_outR1_continue2*/
return STF_OK;
}
/* STATE_AGGR_I1:
* SMF_PSK_AUTH: HDR, SA, KE, Nr, IDir, HASH_R
* --> HDR*, HASH_I
* SMF_DS_AUTH: HDR, SA, KE, Nr, IDir, [CERT,] SIG_R
* --> HDR*, [CERT,] SIG_I
*/
stf_status aggr_inR1_outI2(struct state *ike_sa, struct msg_digest *md)
{
struct ike_sa *ike = pexpect_ike_sa(ike_sa);
if (ike == NULL) {
return STF_INTERNAL_ERROR;
}
ldbg(ike->sa.logger, "%s() for "PRI_SO, __func__, pri_so(ike->sa.st_serialno));
/*
* With Aggressive Mode, we get an ID payload in this, the
* second message (first response), so we can use it to index
* the preshared-secrets when the IP address would not be
* meaningful (i.e. Road Warrior). So our first task is to
* unravel the ID payload.
*/
if (impair.drop_i2) {
dbg("dropping Aggressive Mode I2 packet as per impair");
return STF_IGNORE;
}
if (!v1_decode_certs(md)) {
llog(RC_LOG, ike->sa.logger, "X509: CERT payload bogus or revoked");
return false;
}
/*
* Note: Initiator (and Aggressive Mode) so this cannot change
* the connection.
*/
struct connection *c = ike->sa.st_connection;
if (!ikev1_decode_peer_id_initiator(ike, md)) {
id_buf buf;
endpoint_buf b;
llog(RC_LOG, ike->sa.logger,
"initial Aggressive Mode packet claiming to be from %s on %s but no connection has been authorized",
str_id(&ike->sa.st_connection->remote->host.id, &buf),
str_endpoint(&md->sender, &b));
/* XXX notification is in order! */
return STF_FAIL_v1N + v1N_INVALID_ID_INFORMATION;
}
passert(c == ike->sa.st_connection); /* no switch */
/* verify echoed SA */
{
struct payload_digest *const sapd = md->chain[ISAKMP_NEXT_SA];
v1_notification_t r =
parse_isakmp_sa_body(&sapd->pbs, &sapd->payload.sa,
NULL, true, ike);
if (r != v1N_NOTHING_WRONG)
return STF_FAIL_v1N + r;
}
merge_quirks(ike, md);
check_nat_traversal_vid(ike, md);
/* KE in */
if (!unpack_KE(&ike->sa.st_gr, "Gr", ike->sa.st_oakley.ta_dh,
md->chain[ISAKMP_NEXT_KE], ike->sa.logger)) {
return STF_FAIL_v1N + v1N_INVALID_KEY_INFORMATION;
}
/* Ni in */
RETURN_STF_FAIL_v1NURE(accept_v1_nonce(ike->sa.logger, md, &ike->sa.st_nr, "Nr"));
/*
* Moved the following up as we need Rcookie for hash,
* skeyids.
*
* Reinsert the state, using the responder cookie we just
* received.
*/
update_st_ike_spis_responder(ike, &md->hdr.isa_ike_responder_spi);
ikev1_natd_init(ike, md);
/* set up second calculation */
submit_dh_shared_secret(/*callback*/&ike->sa, /*task*/&ike->sa, md,
ike->sa.st_gr/*initiator needs responder's KE*/,
aggr_inR1_outI2_crypto_continue, HERE);
PEXPECT(ike->sa.logger, ike->sa.st_v1_phase_1_iv.len == 0); /*aggr_inR1_outI2*/
return STF_SUSPEND;
}
static stf_status aggr_inR1_outI2_crypto_continue(struct state *ike_sa,
struct msg_digest *md)
{
struct ike_sa *ike = pexpect_ike_sa(ike_sa);
if (ike == NULL) {
return STF_INTERNAL_ERROR;
}
ldbg(ike->sa.logger, "%s() for "PRI_SO, __func__, pri_so(ike->sa.st_serialno));
struct connection *c = ike->sa.st_connection;
passert(md != NULL);
passert(md->v1_st == &ike->sa);
if (ike->sa.st_dh_shared_secret == NULL) {
return STF_FAIL_v1N + v1N_INVALID_KEY_INFORMATION;
}
update_v1_phase_1_iv(ike, calc_v1_skeyid_and_iv(ike), HERE); /* inR1-outI2 */
/* HASH_R or SIG_R in */
/* initiator authenticating responder */
stf_status r = oakley_auth(ike, md, SA_RESPONDER, pbs_in_all(&md->chain[ISAKMP_NEXT_ID]->pbs));
if (r != STF_OK) {
return r;
}
const struct cert *mycert = c->local->host.config->cert.nss_cert != NULL ? &c->local->host.config->cert : NULL;
enum next_payload_types_ikev1 auth_payload =
ike->sa.st_oakley.auth == OAKLEY_PRESHARED_KEY ?
ISAKMP_NEXT_HASH : ISAKMP_NEXT_SIG;
/* decode certificate requests */
decode_v1_certificate_requests(ike, md);
bool cert_requested = (ike->sa.st_v1_requested_ca != NULL);
/*
* send certificate if we have one and auth is RSA, and we were
* told we can send one if asked, and we were asked, or we were told
* to always send one.
*/
bool send_cert = (ike->sa.st_oakley.auth == OAKLEY_RSA_SIG && mycert != NULL &&
((c->local->host.config->sendcert == CERT_SENDIFASKED && cert_requested) ||
(c->local->host.config->sendcert == CERT_ALWAYSSEND)));
bool send_authcerts = (send_cert && c->config->send_ca != CA_SEND_NONE);
/*****
* From here on, if send_authcerts, we are obligated to:
* free_auth_chain(auth_chain, chain_len);
*****/
chunk_t auth_chain[MAX_CA_PATH_LEN] = { { NULL, 0 } };
int chain_len = 0;
if (send_authcerts) {
chain_len = get_auth_chain(auth_chain, MAX_CA_PATH_LEN, mycert,
c->config->send_ca == CA_SEND_ALL);
if (chain_len == 0)
send_authcerts = false;
}
doi_log_cert_thinking(ike->sa.st_oakley.auth, cert_ike_type(mycert),
c->local->host.config->sendcert, cert_requested,
send_cert, send_authcerts);
/**************** build output packet: HDR, HASH_I/SIG_I **************/
/* make sure HDR is at start of a clean buffer */
reply_stream = open_pbs_out("reply packet", reply_buffer, sizeof(reply_buffer), ike->sa.logger);
struct pbs_out rbody;
/* HDR out */
{
struct isakmp_hdr hdr = md->hdr;
hdr.isa_flags = 0; /* clear reserved fields */
hdr.isa_ike_responder_spi = ike->sa.st_ike_spis.responder;
hdr.isa_np = ISAKMP_NEXT_NONE, /* clear NP */
hdr.isa_flags |= ISAKMP_FLAGS_v1_ENCRYPTION;
if (impair.send_bogus_isakmp_flag) {
hdr.isa_flags |= ISAKMP_FLAGS_RESERVED_BIT6;
}
if (!out_struct(&hdr, &isakmp_hdr_desc, &reply_stream,
&rbody)) {
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
}
/* [ CERT out ] */
if (send_cert) {
struct pbs_out cert_pbs;
struct isakmp_cert cert_hd = {
.isacert_type = cert_ike_type(mycert),
.isacert_reserved = 0,
.isacert_length = 0 /* XXX unused on sending ? */
};
llog(RC_LOG, ike->sa.logger, "I am sending my cert");
if (!out_struct(&cert_hd,
&isakmp_ipsec_certificate_desc,
&rbody,
&cert_pbs) ||
!out_hunk(cert_der(mycert), &cert_pbs, "CERT")) {
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
close_output_pbs(&cert_pbs);
}
free_auth_chain(auth_chain, chain_len);
/***** obligation to free_auth_chain has been discharged *****/
/* [ NAT-D, NAT-D ] */
/* ??? why does this come before AUTH payload? */
if (ike->sa.hidden_variables.st_nat_traversal != LEMPTY) {
/* send two ISAKMP_NEXT_NATD_RFC* hash payloads to support NAT */
if (!ikev1_nat_traversal_add_natd(&rbody, md)) {
return STF_INTERNAL_ERROR;
}
}
/* HASH_I or SIG_I out */
{
dbg("next payload chain: creating a fake payload for hashing identity");
/* first build an ID payload as a raw material */
shunk_t id_b;
struct isakmp_ipsec_id id_hd = build_v1_id_payload(&c->local->host, &id_b);
uint8_t idbuf[1024]; /* fits all possible identity payloads? */
struct pbs_out id_pbs = open_pbs_out("identity payload", idbuf, sizeof(idbuf), ike->sa.logger);
struct pbs_out r_id_pbs;
if (!out_struct(&id_hd, &isakmp_ipsec_identification_desc,
&id_pbs, &r_id_pbs) ||
!out_hunk(id_b, &r_id_pbs, "my identity")) {
return STF_INTERNAL_ERROR;
}
close_output_pbs(&r_id_pbs);
close_output_pbs(&id_pbs);
struct crypt_mac hash = main_mode_hash(ike, SA_INITIATOR,
pbs_out_all(&id_pbs));
if (auth_payload == ISAKMP_NEXT_HASH) {
/* HASH_I out */
if (!ikev1_out_generic_raw(&isakmp_hash_desc, &rbody,
hash.ptr, hash.len, "HASH_I"))
return STF_INTERNAL_ERROR;
} else {
/* SIG_I out */
struct hash_signature sig = v1_sign_hash_RSA(ike->sa.st_connection, &hash,
ike->sa.logger);
if (sig.len == 0) {
/* already logged */
return STF_FAIL_v1N + v1N_AUTHENTICATION_FAILED;
}
if (!ikev1_out_generic_raw(&isakmp_signature_desc,
&rbody, sig.ptr, sig.len,
"SIG_I"))
return STF_INTERNAL_ERROR;
}
}
/* RFC2408 says we must encrypt at this point */
/* stores updated IV in .st_v1_phase_1_iv */
if (!close_and_encrypt_v1_message(ike, &rbody, &ike->sa.st_v1_phase_1_iv)) {
return STF_INTERNAL_ERROR; /* ??? we may be partly committed */
}
ldbg(ike->sa.logger, "phase 1 IV completed");
/* It seems as per Cisco implementation, XAUTH and MODECFG
* are not supposed to be performed again during rekey
*/
if (c->established_ike_sa != SOS_NOBODY && c->local->host.config->xauth.client &&
c->config->remote_peer_cisco) {
dbg("skipping XAUTH for rekey for Cisco Peer compatibility.");
ike->sa.hidden_variables.st_xauth_client_done = true;
ike->sa.st_oakley.doing_xauth = false;
if (c->local->host.config->modecfg.client) {
dbg("skipping XAUTH for rekey for Cisco Peer compatibility.");
ike->sa.hidden_variables.st_modecfg_vars_set = true;
ike->sa.hidden_variables.st_modecfg_started = true;
}
}
if (c->established_ike_sa != SOS_NOBODY && c->local->host.config->xauth.client &&
c->config->remote_peer_cisco) {
dbg("this seems to be rekey, and XAUTH is not supposed to be done again");
ike->sa.hidden_variables.st_xauth_client_done = true;
ike->sa.st_oakley.doing_xauth = false;
if (c->local->host.config->modecfg.client) {
dbg("this seems to be rekey, and MODECFG is not supposed to be done again");
ike->sa.hidden_variables.st_modecfg_vars_set = true;
ike->sa.hidden_variables.st_modecfg_started = true;
}
}
ISAKMP_SA_established(ike);
PEXPECT(ike->sa.logger, ike->sa.st_v1_phase_1_iv.len > 0); /*aggr_inR1_outI2_crypto_continue*/
return STF_OK;
}
/* STATE_AGGR_R1:
* SMF_PSK_AUTH: HDR*, HASH_I --> done
* SMF_DS_AUTH: HDR*, SIG_I --> done
*/
stf_status aggr_inI2(struct state *ike_sa, struct msg_digest *md)
{
struct ike_sa *ike = pexpect_ike_sa(ike_sa);
if (ike == NULL) {
return STF_INTERNAL_ERROR;
}
ldbg(ike->sa.logger, "%s() for "PRI_SO, __func__, pri_so(ike->sa.st_serialno));
PEXPECT(ike->sa.logger, ike->sa.st_v1_phase_1_iv.len > 0); /*aggr_inI2*/
/*
* Save last IV from phase 1 so it can be restored later so
* anything between the end of phase 1 and the start of phase
* 2 i.e. mode config payloads etc. will not lose our IV
*/
update_v1_phase_1_iv(ike, md->v1_decrypt_iv, HERE); /* inI2() */
ldbg(ike->sa.logger, "phase 1 IV finalized");
struct connection *c = ike->sa.st_connection;
ikev1_natd_init(ike, md);
/*
* In aggressive mode, the initiator sends its ID in the first
* message (I1). Need to reconstruct it so that it can be
* used to authenticate this, the third message (I2).
*
* XXX: IDBUF must be same scope as peer_id!
*
* ??? enough room for reconstructed peer ID payload?
*/
uint8_t initiator_id_buf[1024];
shunk_t initiator_id;
{
dbg("next payload chain: creating a fake payload for hashing identity");
shunk_t id_body;
struct isakmp_ipsec_id id_header = build_v1_id_payload(&c->remote->host, &id_body);
/* interop ID for SoftRemote & maybe others ? */
id_header.isaiid_protoid = ike->sa.st_peeridentity_protocol;
id_header.isaiid_port = htons(ike->sa.st_peeridentity_port);
struct pbs_out idout_pbs = open_pbs_out("identity payload",
initiator_id_buf, sizeof(initiator_id_buf),
ike->sa.logger);
struct pbs_out id_pbs;
if (!pbs_out_struct(&idout_pbs, &isakmp_ipsec_identification_desc,
&id_header, sizeof(id_header), &id_pbs)) {
return STF_INTERNAL_ERROR;
}
if (!pbs_out_hunk(&id_pbs, id_body, "my identity")) {
return STF_INTERNAL_ERROR;
}
close_output_pbs(&id_pbs);
close_output_pbs(&idout_pbs);
initiator_id = pbs_out_to_cursor(&idout_pbs);
}
/*
* If the first message contained verified certs then
* .verified!=NULL; and when .verified!=NULL the certs either
* passed muster or the exchange was rejected.
*
* The first message has already tried to unpack certs, hence
* .st_remote_certs.processed is expected to be true.
*/
pexpect(ike->sa.st_remote_certs.processed); /* not our first time */
bool new_certs_to_verify = false;
if (ike->sa.st_remote_certs.verified == NULL) {
if (!v1_decode_certs(md)) {
llog(RC_LOG, ike->sa.logger, "X509: CERT payload bogus or revoked");
return STF_FAIL_v1N + v1N_INVALID_ID_INFORMATION;
}
new_certs_to_verify = (ike->sa.st_remote_certs.verified != NULL);
}
/*
* ID Payload in.
*
* Note: won't switch connections because we are in Aggressive
* Mode (responder).
*/
if (new_certs_to_verify) {
diag_t d = update_peer_id_certs(ike);
if (d != NULL) {
llog(RC_LOG, ike->sa.logger, "%s", str_diag(d));
pfree_diag(&d);
return STF_FAIL_v1N + v1N_INVALID_ID_INFORMATION;
}
}
passert(c == ike->sa.st_connection); /* no switch */
/* HASH_I or SIG_I in */
/*
* responder authenticating initiator
*
* Use ID sent over in I1.
*/
stf_status r = oakley_auth(ike, md, SA_INITIATOR, initiator_id);
if (r != STF_OK) {
return r;
}
/**************** done input ****************/
/* It seems as per Cisco implementation, XAUTH and MODECFG
* are not supposed to be performed again during rekey
*/
if (c->established_ike_sa != SOS_NOBODY &&
ike->sa.st_connection->local->host.config->xauth.client &&
ike->sa.st_connection->config->remote_peer_cisco) {
dbg("skipping XAUTH for rekey for Cisco Peer compatibility.");
ike->sa.hidden_variables.st_xauth_client_done = true;
ike->sa.st_oakley.doing_xauth = false;
if (ike->sa.st_connection->local->host.config->modecfg.client) {
dbg("skipping ModeCFG for rekey for Cisco Peer compatibility.");
ike->sa.hidden_variables.st_modecfg_vars_set = true;
ike->sa.hidden_variables.st_modecfg_started = true;
}
}
if (c->established_ike_sa != SOS_NOBODY &&
ike->sa.st_connection->local->host.config->xauth.client &&
ike->sa.st_connection->config->remote_peer_cisco) {
dbg("this seems to be rekey, and XAUTH is not supposed to be done again");
ike->sa.hidden_variables.st_xauth_client_done = true;
ike->sa.st_oakley.doing_xauth = false;
if (ike->sa.st_connection->local->host.config->modecfg.client) {
dbg("this seems to be rekey, and MODECFG is not supposed to be done again");
ike->sa.hidden_variables.st_modecfg_vars_set = true;
ike->sa.hidden_variables.st_modecfg_started = true;
}
}
ISAKMP_SA_established(ike);
return STF_OK;
}
|