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
|
/*
* IKEv2 parent SA creation routines, for Libreswan
*
* Copyright (C) 2007-2008 Michael Richardson <mcr@xelerance.com>
* Copyright (C) 2008-2011 Paul Wouters <paul@xelerance.com>
* Copyright (C) 2008 Antony Antony <antony@xelerance.com>
* Copyright (C) 2008-2009 David McCullough <david_mccullough@securecomputing.com>
* Copyright (C) 2010,2012 Avesh Agarwal <avagarwa@redhat.com>
* Copyright (C) 2010-2019 Tuomo Soini <tis@foobar.fi
* Copyright (C) 2012-2019 Paul Wouters <pwouters@redhat.com>
* Copyright (C) 2012-2018 Antony Antony <antony@phenome.org>
* Copyright (C) 2013-2019 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2013 David McCullough <ucdevel@gmail.com>
* Copyright (C) 2013 Matt Rogers <mrogers@redhat.com>
* Copyright (C) 2015-2019 Andrew Cagney <cagney@gnu.org>
* Copyright (C) 2017-2018 Sahana Prasad <sahana.prasad07@gmail.com>
* Copyright (C) 2017-2018 Vukasin Karadzic <vukasin.karadzic@gmail.com>
* Copyright (C) 2017 Mayank Totale <mtotale@gmail.com>
* Copyright (C) 2020 Yulia Kuzovkova <ukuzovkova@gmail.com>
* Copyright (C) 2020 Nupur Agrawal <nupur202000@gmail.com>
*
* 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 "sysdep.h"
#include "constants.h"
#include "defs.h"
#include "demux.h"
#include "ikev2_parent.h"
#include "state.h"
#include "keys.h" /* needs state.h */
#include "id.h"
#include "connections.h"
#include "crypt_prf.h"
#include "crypto.h"
#include "x509.h"
#include "pluto_x509.h"
#include "ike_alg.h"
#include "ike_alg_hash.h"
#include "ike_alg_dh.h"
#include "kernel_alg.h"
#include "plutoalg.h"
#include "packet.h"
#include "ikev2.h"
#include "log.h"
#include "ipsec_doi.h"
#include "ikev2_replace.h"
#include "timer.h"
#include "ike_spi.h"
#include "rnd.h"
#include "pending.h"
#include "kernel.h"
#include "nat_traversal.h"
#include "keyhi.h" /* for SECKEY_DestroyPublicKey */
#include "crypt_hash.h"
#include "ikev2_ipseckey.h"
#include "ikev2_ppk.h"
#include "ikev2_redirect.h"
#include "crypt_dh.h"
#include "crypt_prf.h"
#include "ietf_constants.h"
#include "ip_address.h"
#include "send.h"
#include "ikev2_send.h"
#include "pluto_stats.h"
#include "ipsecconf/confread.h" /* for struct starter_end */
#include "addr_lookup.h"
#include "impair.h"
#include "ikev2_message.h"
#include "ikev2_notification.h"
#include "ikev2_ts.h"
#include "ikev2_msgid.h"
#include "crypt_ke.h"
#include "crypt_symkey.h" /* for release_symkey */
#include "ip_info.h"
#include "iface.h"
#include "ikev2_auth.h"
#include "secrets.h"
#include "cert_decode_helper.h"
#include "addresspool.h"
#include "unpack.h"
#include "ikev2_peer_id.h"
#include "ikev2_cp.h"
#include "ikev2_child.h"
#include "ikev2_child.h"
#include "ikev2_create_child_sa.h" /* for ikev2_rekey_ike_start() */
#include "rekeyfuzz.h"
#include "ikev2_ike_sa_init.h" /* for initiate_v2_IKE_SA_INIT_request() */
#include "ikev2_states.h"
bool accept_v2_nonce(struct logger *logger, struct msg_digest *md,
chunk_t *dest, const char *name)
{
/*
* note ISAKMP_NEXT_v2Ni == ISAKMP_NEXT_v2Nr
* so when we refer to ISAKMP_NEXT_v2Ni, it might be ISAKMP_NEXT_v2Nr
*/
struct pbs_in *nonce_pbs = &md->chain[ISAKMP_NEXT_v2Ni]->pbs;
shunk_t nonce = pbs_in_left(nonce_pbs);
/*
* RFC 7296 Section 2.10:
* Nonces used in IKEv2 MUST be randomly chosen, MUST be at least 128
* bits in size, and MUST be at least half the key size of the
* negotiated pseudorandom function (PRF). However, the initiator
* chooses the nonce before the outcome of the negotiation is known.
* Because of that, the nonce has to be long enough for all the PRFs
* being proposed.
*
* We will check for a minimum/maximum here - not meeting that
* requirement is a syntax error(?). Once the PRF is
* selected, we verify the nonce is big enough.
*/
if (nonce.len < IKEv2_MINIMUM_NONCE_SIZE || nonce.len > IKEv2_MAXIMUM_NONCE_SIZE) {
llog(RC_LOG, logger, "%s length %zu not between %d and %d",
name, nonce.len, IKEv2_MINIMUM_NONCE_SIZE, IKEv2_MAXIMUM_NONCE_SIZE);
return false;
}
replace_chunk(dest, nonce, name);
return true;
}
bool negotiate_hash_algo_from_notification(const struct pbs_in *payload_pbs,
struct ike_sa *ike)
{
lset_t sighash_policy = ike->sa.st_connection->config->sighash_policy;
struct pbs_in pbs = *payload_pbs;
while (pbs_left(&pbs) > 0) {
uint16_t nh_value;
passert(sizeof(nh_value) == RFC_7427_HASH_ALGORITHM_IDENTIFIER_SIZE);
diag_t d = pbs_in_thing(&pbs, nh_value,
"hash algorithm identifier (network ordered)");
if (d != NULL) {
llog(RC_LOG, ike->sa.logger, "%s", str_diag(d));
pfree_diag(&d);
return false;
}
enum ikev2_hash_algorithm h_value = ntohs(nh_value);
enum_buf b;
const struct hash_desc *hash = ikev2_hash_desc(h_value, &b);
if (hash == NULL) {
llog_sa(RC_LOG, ike, "received and ignored unknown hash algorithm %s", b.buf);
continue;
}
lset_t hash_bit = LELEM(h_value);
if (!(sighash_policy & hash_bit)) {
dbg("digsig: received and ignored unacceptable hash algorithm %s", hash->common.fqn);
continue;
}
dbg("digsig: received and accepted hash algorithm %s", hash->common.fqn);
ike->sa.st_v2_digsig.negotiated_hashes |= hash_bit;
}
return true;
}
void llog_v2_ike_sa_established(struct ike_sa *ike, struct child_sa *larval)
{
LLOG_JAMBUF(RC_SUCCESS, larval->sa.logger, buf) {
switch (larval->sa.st_sa_role) {
case SA_INITIATOR: jam_string(buf, "initiator"); break;
case SA_RESPONDER: jam_string(buf, "responder"); break;
}
if (larval->sa.st_v2_rekey_pred != SOS_NOBODY) {
pexpect(ike->sa.st_serialno == larval->sa.st_v2_rekey_pred);
jam(buf, " rekeyed IKE SA "PRI_SO"",
pri_so(larval->sa.st_v2_rekey_pred));
} else {
jam(buf, " established IKE SA");
}
jam(buf, " ");
jam_parent_sa_details(buf, &larval->sa);
}
}
void v2_ike_sa_established(struct ike_sa *ike, where_t where)
{
connection_establish_ike(ike, where);
schedule_v2_nat_keepalive(ike, where);
pstat_sa_established(&ike->sa);
}
/*
* Check that the bundled keying material (KE) matches the accepted
* proposal and if it doesn't record a response and return false.
*/
bool v2_accept_ke_for_proposal(struct ike_sa *ike,
struct state *st,
struct msg_digest *md,
const struct dh_desc *accepted_dh,
enum payload_security security)
{
passert(md->chain[ISAKMP_NEXT_v2KE] != NULL);
int ke_group = md->chain[ISAKMP_NEXT_v2KE]->payload.v2ke.isak_group;
if (accepted_dh->common.id[IKEv2_ALG_ID] != ke_group) {
enum_buf ke_esb;
llog(RC_LOG, st->logger,
"initiator guessed wrong keying material group (%s); responding with INVALID_KE_PAYLOAD requesting %s",
str_enum_short(&oakley_group_names, ke_group, &ke_esb),
accepted_dh->common.fqn);
pstats(invalidke_sent_u, ke_group);
pstats(invalidke_sent_s, accepted_dh->common.id[IKEv2_ALG_ID]);
/* convert group to a raw buffer */
uint16_t gr = htons(accepted_dh->group);
record_v2N_response(st->logger, ike, md,
v2N_INVALID_KE_PAYLOAD, THING_AS_SHUNK(gr),
security);
return false;
}
/* ike sa init */
if (!unpack_KE(&st->st_gi, "Gi", accepted_dh,
md->chain[ISAKMP_NEXT_v2KE], st->logger)) {
/* already logged? */
record_v2N_response(st->logger, ike, md,
v2N_INVALID_SYNTAX, empty_shunk,
security);
return false;
}
return true;
}
bool id_ipseckey_allowed(struct ike_sa *ike, enum ikev2_auth_method atype)
{
const struct connection *c = ike->sa.st_connection;
struct id id = c->remote->host.id;
if (!c->remote->host.config->key_from_DNS_on_demand)
return false;
if (c->remote->host.config->auth == AUTH_RSASIG &&
(id.kind == ID_FQDN || id_is_ipaddr(&id)))
{
switch (atype) {
case IKEv2_AUTH_RESERVED:
case IKEv2_AUTH_DIGITAL_SIGNATURE:
case IKEv2_AUTH_RSA_DIGITAL_SIGNATURE:
return true; /* success */
default:
break; /* failure */
}
}
if (DBGP(DBG_BASE)) {
/* eb2 and err2 must have same scope */
esb_buf eb2;
const char *err1 = "%dnsondemand";
const char *err2 = "";
if (atype != IKEv2_AUTH_RESERVED && !(atype == IKEv2_AUTH_RSA_DIGITAL_SIGNATURE ||
atype == IKEv2_AUTH_DIGITAL_SIGNATURE)) {
err1 = " initiator IKEv2 Auth Method mismatched ";
err2 = str_enum(&ikev2_auth_method_names, atype, &eb2);
}
if (id.kind != ID_FQDN &&
id.kind != ID_IPV4_ADDR &&
id.kind != ID_IPV6_ADDR) {
err1 = " mismatched ID type, that ID is not a FQDN, IPV4_ADDR, or IPV6_ADDR id type=";
err2 = str_enum(&ike_id_type_names, id.kind, &eb2);
}
id_buf thatid;
endpoint_buf ra;
DBG_log("%s #%lu not fetching ipseckey %s%s remote=%s thatid=%s",
c->name, ike->sa.st_serialno,
err1, err2,
str_endpoint(&ike->sa.st_remote_endpoint, &ra),
str_id(&id, &thatid));
}
return false;
}
/*
* package up the calculated KE value, and emit it as a KE payload.
* used by IKEv2: parent, child (PFS)
*/
bool emit_v2KE(chunk_t g, const struct dh_desc *group,
struct pbs_out *outs)
{
if (impair.ke_payload == IMPAIR_EMIT_OMIT) {
llog(RC_LOG, outs->logger, "IMPAIR: omitting KE payload");
return true;
}
struct pbs_out kepbs;
struct ikev2_ke v2ke = {
.isak_group = group->common.id[IKEv2_ALG_ID],
};
if (!out_struct(&v2ke, &ikev2_ke_desc, outs, &kepbs))
return false;
if (impair.ke_payload >= IMPAIR_EMIT_ROOF) {
uint8_t byte = impair.ke_payload - IMPAIR_EMIT_ROOF;
llog(RC_LOG, outs->logger,
"IMPAIR: sending bogus KE (g^x) == %u value to break DH calculations", byte);
/* Only used to test sending/receiving bogus g^x */
if (!pbs_out_repeated_byte(&kepbs, byte, g.len, "ikev2 impair KE (g^x) == 0")) {
/* already logged */
return false; /*fatal*/
}
} else if (impair.ke_payload == IMPAIR_EMIT_EMPTY) {
llog(RC_LOG, outs->logger, "IMPAIR: sending an empty KE value");
if (!pbs_out_zero(&kepbs, 0, "ikev2 impair KE (g^x) == empty")) {
/* already logged */
return false; /*fatal*/
}
} else {
if (!out_hunk(g, &kepbs, "ikev2 g^x"))
return false;
}
close_output_pbs(&kepbs);
return true;
}
void ikev2_rekey_expire_predecessor(const struct child_sa *larval, so_serial_t pred)
{
struct state *rst = state_by_serialno(pred);
if (rst == NULL) {
ldbg_sa(larval, "rekeyed #%lu; the state is already is gone", pred);
return;
}
/*
* Only established states have a lifetime scheduled.
*/
const struct state_event *lifetime_event = st_v2_lifetime_event(rst);
deltatime_t lifetime = deltatime(0);
if (lifetime_event != NULL) {
lifetime = monotime_diff(lifetime_event->ev_time, mononow());
}
deltatime_buf lb;
ldbg_sa(larval, "rekeyed #%lu; expire it remaining life %ss",
pred, (lifetime_event == NULL ? "<never>" : str_deltatime(lifetime, &lb)));
if (deltatime_cmp(lifetime, >, EXPIRE_OLD_SA_DELAY)) {
/* replace the REPLACE/EXPIRE event */
if (lifetime_event != NULL) {
event_delete(lifetime_event->ev_type, rst);
}
event_schedule(EVENT_v2_EXPIRE, EXPIRE_OLD_SA_DELAY, rst);
pexpect(st_v2_lifetime_event(rst)->ev_type == EVENT_v2_EXPIRE);
}
/*
* else it should be on its way to expire, no need to kick
* dead state when it is down
*/
}
void schedule_v2_replace_event(struct state *st)
{
/*
* Time to rekey/replace/discard; scheduled only once
* during a state's lifetime.
*/
pexpect(st->st_v2_rekey_event == NULL);
pexpect(st_v2_lifetime_event(st) == NULL);
struct connection *c = st->st_connection;
/*
* Determine the SA's lifetime (in seconds).
*
* Use .st_sa_type_when_established, because, for an IKE SA, it may not
* have been emancipated (so IS_IKE_SA() would still be
* false).
*/
deltatime_t lifetime;
switch (st->st_sa_type_when_established) {
case IKE_SA: lifetime = c->config->sa_ike_max_lifetime; break;
case CHILD_SA: lifetime = c->config->sa_ipsec_max_lifetime; break;
default: bad_case(st->st_sa_type_when_established);
}
enum event_type kind;
const char *story;
if (is_opportunistic(c) &&
nr_child_leases(st->st_connection->remote) > 0) {
kind = EVENT_v2_EXPIRE;
story = "always expire opportunistic SA with lease";
} else if (!c->config->rekey) {
kind = EVENT_v2_EXPIRE;
story = "policy doesn't allow re-key";
} else if (IS_IKE_SA(st) && st->st_connection->config->reauth) {
kind = EVENT_v2_REPLACE;
story = "IKE SA with policy re-authenticate";
} else {
deltatime_t marg = fuzz_rekey_margin(st->st_sa_role,
c->config->sa_rekey_margin,
c->config->sa_rekey_fuzz/*percent*/);
deltatime_t rekey_delay;
if (deltatime_cmp(lifetime, >, marg)) {
rekey_delay = deltatime_sub(lifetime, marg);
} else {
rekey_delay = lifetime;
marg = deltatime(0);
}
st->st_replace_margin = marg;
/* Time to rekey/reauth; scheduled once during a state's lifetime.*/
deltatime_buf rdb, lb;
dbg(PRI_SO" will start re-keying in %s seconds (replace in %s seconds)",
st->st_serialno,
str_deltatime(rekey_delay, &rdb),
str_deltatime(lifetime, &lb));
event_schedule(EVENT_v2_REKEY, rekey_delay, st);
pexpect(st->st_v2_rekey_event->ev_type == EVENT_v2_REKEY);
story = "attempting re-key";
kind = EVENT_v2_REPLACE;
}
/*
* This is the drop-dead event.
*/
passert(kind == EVENT_v2_REPLACE || kind == EVENT_v2_EXPIRE);
deltatime_buf lb;
dbg(PRI_SO" will %s in %s seconds (%s)",
st->st_serialno,
kind == EVENT_v2_EXPIRE ? "expire" : "be replaced",
str_deltatime(lifetime, &lb), story);
/*
* Schedule the lifetime (death) event. Only happens once
* when the state is established.
*/
event_schedule(kind, lifetime, st);
pexpect(st_v2_lifetime_event(st)->ev_type == kind);
}
static stf_status process_v2_request_no_skeyseed_continue(struct state *ike_st,
struct msg_digest *unused_md)
{
struct ike_sa *ike = pexpect_ike_sa(ike_st);
pexpect(ike->sa.st_sa_role == SA_RESPONDER);
pexpect(v2_msg_role(unused_md) == NO_MESSAGE);
pexpect(ike->sa.st_state == &state_v2_IKE_SA_INIT_R);
dbg("%s() for #%lu %s: calculating g^{xy}, sending R2",
__func__, ike->sa.st_serialno, ike->sa.st_state->name);
/* * Since UNUSED_MD is a request. */
struct v2_incoming_fragments **frags = &ike->sa.st_v2_msgid_windows.responder.incoming_fragments;
if (!pexpect((*frags) != NULL)) {
return STF_INTERNAL_ERROR;
}
if (ike->sa.st_dh_shared_secret == NULL) {
/*
* Since dh failed, the channel isn't end-to-end
* encrypted. Try to send back a clear text notify
* and then abandon the connection.
*/
dbg("aborting IKE SA: DH failed (EXPECTATION FAILED valid as no transition?)");
send_v2N_response_from_md((*frags)->md, v2N_INVALID_SYNTAX, NULL,
"DH failed");
return STF_FATAL;
}
if (!calc_v2_new_ike_keymat(ike, &ike->sa.st_ike_spis, HERE)) {
/* already logged */
return STF_FATAL;
}
/*
* Try to decrypt the fragments; the result could be no
* fragments, and hence, no exchange.
*/
struct msg_digest *md;
if ((*frags)->total == 0) {
if (!ikev2_decrypt_msg(ike, (*frags)->md)) {
free_v2_incoming_fragments(frags);
return STF_SKIP_COMPLETE_STATE_TRANSITION;
}
md = md_addref((*frags)->md);
free_v2_incoming_fragments(frags);
} else {
if (!decrypt_v2_incoming_fragments(ike, frags)) {
/* could free FRAGS */
return STF_SKIP_COMPLETE_STATE_TRANSITION;
}
md = reassemble_v2_incoming_fragments(frags);
}
process_protected_v2_message(ike, md);
md_delref(&md);
return STF_SKIP_COMPLETE_STATE_TRANSITION;
}
void process_v2_request_no_skeyseed(struct ike_sa *ike, struct msg_digest *md)
{
if (!PEXPECT(md->logger, v2_msg_role(md) == MESSAGE_REQUEST)) {
/*
* Responder only: on the initiator, SKEYSEED is
* computed by the IKE_SA_INIT response processor.
*/
return;
}
const enum ikev2_exchange ix = md->hdr.isa_xchg;
if (!PEXPECT(md->logger, (ix == ISAKMP_v2_IKE_INTERMEDIATE ||
ix == ISAKMP_v2_IKE_AUTH))) {
/*
* IKE_INTERMEDIATE and IKE_AUTH requests only.
*/
return;
}
if (!PEXPECT(ike->sa.logger, (ike->sa.st_state == &state_v2_IKE_SA_INIT_R ||
ike->sa.st_state == &state_v2_IKE_SESSION_RESUME_R))) {
/*
* Still in IKE_SA_INIT responder state.
*/
return;
}
/*
* Not yet officially started on next message.
*/
if (!PEXPECT(ike->sa.logger, (ike->sa.st_v2_msgid_windows.responder.recv == 0 &&
ike->sa.st_v2_msgid_windows.responder.sent == 0 &&
ike->sa.st_v2_msgid_windows.responder.wip == -1))) {
return;
}
/*
* Accumulate (or ignore) the message requests.
*
* If the message seems reasonable and is consistent with
* previous messages, save it.
*
* However, if there's something suspect such as flip-flopping
* between SK and SKF, repeated fragment; wrong or bad total;
* ... then let it drop. End result could be that no messages
* accumulate and .st_v2_incomming remains NULL.
*/
struct v2_incoming_fragments **frags = &ike->sa.st_v2_msgid_windows.responder.incoming_fragments;
if ((*frags) != NULL) {
/*
* Already accumulating fragments, keep going?
*/
if (md->chain[ISAKMP_NEXT_v2SK] != NULL) {
dbg("received IKE encrypted message");
if ((*frags)->total == 0) {
dbg(" ignoring message; collecting fragments");
} else {
dbg(" ignoring message; already collected");
}
pexpect((*frags)->md != NULL);
} else if (md->chain[ISAKMP_NEXT_v2SKF] != NULL) {
collect_v2_incoming_fragment(ike, md, frags);
} else {
llog_pexpect(ike->sa.logger, HERE,
"message has neither SK nor SKF payload");
}
return;
}
/*
* First fragment (SKF) or payload (SK), start accumulating it
* as fragments and start crypto (for SK there's only one
* fragment).
*/
if (md->chain[ISAKMP_NEXT_v2SK] != NULL) {
/* save message */
*frags = alloc_thing(struct v2_incoming_fragments, "incoming v2_ike_rfrags");
(*frags)->md = md_addref(md);
enum_buf xb;
llog(RC_LOG, ike->sa.logger,
"received %s request, computing DH in the background",
str_enum_short(&ikev2_exchange_names, ix, &xb));
} else if (md->chain[ISAKMP_NEXT_v2SKF] != NULL) {
struct ikev2_skf *skf = &md->chain[ISAKMP_NEXT_v2SKF]->payload.v2skf;
switch (collect_v2_incoming_fragment(ike, md, frags)) {
case FRAGMENT_IGNORED:
dbg("no fragments accumulated; skipping SKEYSEED");
return;
case FRAGMENTS_MISSING:
case FRAGMENTS_COMPLETE:
break;
}
enum_buf xb;
llog(RC_LOG, ike->sa.logger,
"received %s request fragment %u (1 of %u), computing DH in the background",
str_enum_short(&ikev2_exchange_names, ix, &xb),
skf->isaskf_number, (*frags)->total);
} else {
llog_pexpect(ike->sa.logger, HERE,
"message has neither SK nor SKF payload");
return;
}
if ((*frags) == NULL) {
llog_pexpect(ike->sa.logger, HERE, "no fragments");
return;
}
/*
* Now that the first fragment or payload to arrive, kick of
* the SKEYSEED calculation.
*/
submit_dh_shared_secret(/*callback*/&ike->sa, /*task*/&ike->sa,
/*no-md:in-background*/NULL,
ike->sa.st_gi/*responder needs initiator KE*/,
process_v2_request_no_skeyseed_continue, HERE);
}
void record_first_v2_packet(struct ike_sa *ike, struct msg_digest *md,
where_t where)
{
/*
* Record first packet for later checking of signature.
*
* XXX:
*
* Should this code use pbs_in_all() which uses
* [.start...roof)? The original code used:
*
* clonetochunk(st->st_firstpacket_peer, md->message_pbs.start,
* md->message_pbs(.cur-start),
* "saved first received packet");
*
* and pbs_in_to_cursor() both use (.cur-.start).
*
* Suspect it doesn't matter as the code initializing
* .message_pbs forces .roof==.cur - look for the comment
* "trim padding (not actually legit)".
*/
PEXPECT(ike->sa.logger, md->message_pbs.cur == md->message_pbs.roof);
replace_chunk(&ike->sa.st_firstpacket_peer,
pbs_in_to_cursor(&md->message_pbs),
where->func);
}
|