diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-07-05 08:37:23 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-07-05 08:37:23 +0000 |
commit | 2c9bd23f3cdb5b5181c44a15ce0db19024a6e8b2 (patch) | |
tree | ea47fb247ac9dd6b8173b32e545d66972ae967b1 /sbin | |
parent | ab648330833e96932900cae995106a021d452b6c (diff) |
when rekeying ike sa copy more info from the old one;
fixes the last known iked inter-op problem with windows 7.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/iked/ikev2.c | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/sbin/iked/ikev2.c b/sbin/iked/ikev2.c index 56f8cecfaa2..045395d7542 100644 --- a/sbin/iked/ikev2.c +++ b/sbin/iked/ikev2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ikev2.c,v 1.75 2012/07/03 11:19:27 mikeb Exp $ */ +/* $OpenBSD: ikev2.c,v 1.76 2012/07/05 08:37:22 mikeb Exp $ */ /* $vantronix: ikev2.c,v 1.101 2010/06/03 07:57:33 reyk Exp $ */ /* @@ -2272,7 +2272,7 @@ ikev2_resp_create_child_sa(struct iked *env, struct iked_message *msg) { struct iked_childsa *csa, *nextcsa; struct iked_flow *flow, *nextflow; - struct iked_proposal *prop; + struct iked_proposal *prop, *nextprop; struct iked_sa *nsa = NULL, *sa = msg->msg_sa; struct iked_spi *spi, *rekey = &msg->msg_rekey; struct ikev2_keyexchange *ke; @@ -2488,9 +2488,25 @@ ikev2_resp_create_child_sa(struct iked *env, struct iked_message *msg) csa_entry); csa->csa_ikesa = nsa; } + /* Transfer all non-IKE proposals */ + for (prop = TAILQ_FIRST(&sa->sa_proposals); prop != NULL; + prop = nextprop) { + nextprop = TAILQ_NEXT(prop, prop_entry); + if (prop->prop_protoid == IKEV2_SAPROTO_IKE) + continue; + TAILQ_REMOVE(&sa->sa_proposals, prop, prop_entry); + TAILQ_INSERT_TAIL(&nsa->sa_proposals, prop, + prop_entry); + } + /* Preserve ID information */ + nsa->sa_iid = sa->sa_iid; + nsa->sa_iid.id_buf = ibuf_dup(sa->sa_iid.id_buf); + nsa->sa_rid = sa->sa_rid; + nsa->sa_rid.id_buf = ibuf_dup(sa->sa_rid.id_buf); log_debug("%s: activating new IKE SA", __func__); sa_state(env, nsa, IKEV2_STATE_ESTABLISHED); + nsa->sa_stateflags = sa->sa_statevalid; /* XXX */ timer_initialize(env, &sa->sa_timer, ikev2_ike_sa_timeout, sa); timer_register(env, &sa->sa_timer, IKED_IKE_SA_REKEY_TIMEOUT); |