Skip to content

Commit

Permalink
Always prefer group from initial KE payload as responder if supported.
Browse files Browse the repository at this point in the history
from markus@
  • Loading branch information
tobhe committed Nov 17, 2023
1 parent 14699d8 commit a56a2d1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
14 changes: 8 additions & 6 deletions iked/ikev2.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $OpenBSD: ikev2.c,v 1.378 2023/08/11 11:24:55 tobhe Exp $ */
/* $OpenBSD: ikev2.c,v 1.379 2023/11/10 08:03:02 tobhe Exp $ */

/*
* Copyright (c) 2019 Tobias Heider <[email protected]>
Expand Down Expand Up @@ -124,7 +124,8 @@ void ikev2_ike_sa_rekey_schedule_fast(struct iked *, struct iked_sa *);
void ikev2_ike_sa_alive(struct iked *, void *);
void ikev2_ike_sa_keepalive(struct iked *, void *);

int ikev2_sa_negotiate_common(struct iked *, struct iked_sa *, struct iked_message *);
int ikev2_sa_negotiate_common(struct iked *, struct iked_sa *,
struct iked_message *, int);
int ikev2_sa_initiator(struct iked *, struct iked_sa *,
struct iked_sa *, struct iked_message *);
int ikev2_sa_responder(struct iked *, struct iked_sa *, struct iked_sa *,
Expand Down Expand Up @@ -5470,13 +5471,14 @@ ikev2_sa_initiator_dh(struct iked_sa *sa, struct iked_message *msg,
}

int
ikev2_sa_negotiate_common(struct iked *env, struct iked_sa *sa, struct iked_message *msg)
ikev2_sa_negotiate_common(struct iked *env, struct iked_sa *sa,
struct iked_message *msg, int groupid)
{
struct iked_transform *xform;

/* XXX we need a better way to get this */
if (proposals_negotiate(&sa->sa_proposals,
&msg->msg_policy->pol_proposals, &msg->msg_proposals, 0, -1) != 0) {
&msg->msg_policy->pol_proposals, &msg->msg_proposals, 0, groupid) != 0) {
log_info("%s: proposals_negotiate", __func__);
ikestat_inc(env, ikes_sa_proposals_negotiate_failures);
return (-1);
Expand Down Expand Up @@ -5570,7 +5572,7 @@ ikev2_sa_initiator(struct iked *env, struct iked_sa *sa,
msg->msg_nonce = NULL;
}

if (ikev2_sa_negotiate_common(env, sa, msg) != 0)
if (ikev2_sa_negotiate_common(env, sa, msg, -1) != 0)
return (-1);

ibuf_free(sa->sa_2ndmsg);
Expand Down Expand Up @@ -5682,7 +5684,7 @@ ikev2_sa_responder(struct iked *env, struct iked_sa *sa, struct iked_sa *osa,
sa->sa_inonce = msg->msg_nonce;
msg->msg_nonce = NULL;

if (ikev2_sa_negotiate_common(env, sa, msg) != 0)
if (ikev2_sa_negotiate_common(env, sa, msg, msg->msg_dhgroup) != 0)
return (-1);

if (ikev2_sa_responder_dh(&sa->sa_kex, &sa->sa_proposals, msg, 0) < 0)
Expand Down
5 changes: 2 additions & 3 deletions iked/policy.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $OpenBSD: policy.c,v 1.96 2023/08/14 11:55:03 tobhe Exp $ */
/* $OpenBSD: policy.c,v 1.97 2023/11/10 08:03:02 tobhe Exp $ */

/*
* Copyright (c) 2020-2021 Tobias Heider <[email protected]>
Expand Down Expand Up @@ -1135,8 +1135,7 @@ proposals_match(struct iked_proposal *local, struct iked_proposal *peer,
continue;
type = tpeer->xform_type;

if (rekey && nodh == 0 && dhgroup >= 0 &&
protoid == IKEV2_SAPROTO_ESP &&
if (nodh == 0 && dhgroup >= 0 &&
type == IKEV2_XFORMTYPE_DH) {
if (dhforced)
continue;
Expand Down

0 comments on commit a56a2d1

Please sign in to comment.