]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
charon-tkm: Properly reset CC context in listener
authorReto Buerki <reet@codelabs.ch>
Thu, 30 Oct 2014 15:16:40 +0000 (16:16 +0100)
committerTobias Brunner <tobias@strongswan.org>
Fri, 31 Oct 2014 12:49:40 +0000 (13:49 +0100)
Make sure that the acquired CC context is correctly reset and the
associated ID released in the authorize() function of the TKM bus
listener.

src/charon-tkm/src/tkm/tkm_listener.c

index b2692a586f2a2f95d817ef2436b1bdebf525d46e..bb12182665e0f7f2d124ca8c15899f88a7eb07fa 100644 (file)
@@ -240,6 +240,8 @@ METHOD(listener_t, authorize, bool,
                return TRUE;
        }
 
+       *success = FALSE;
+
        keymat = (tkm_keymat_t*)ike_sa->get_keymat(ike_sa);
        isa_id = keymat->get_isa_id(keymat);
        DBG1(DBG_IKE, "TKM authorize listener called for ISA context %llu", isa_id);
@@ -248,28 +250,26 @@ METHOD(listener_t, authorize, bool,
        if (!cc_id)
        {
                DBG1(DBG_IKE, "unable to acquire CC context id");
-               *success = FALSE;
                return TRUE;
        }
        if (!build_cert_chain(ike_sa, cc_id))
        {
                DBG1(DBG_IKE, "unable to build certificate chain");
-               *success = FALSE;
-               return TRUE;
+               goto cc_reset;
        }
 
        auth = keymat->get_auth_payload(keymat);
        if (!auth->ptr)
        {
                DBG1(DBG_IKE, "no AUTHENTICATION data available");
-               *success = FALSE;
+               goto cc_reset;
        }
 
        other_init_msg = keymat->get_peer_init_msg(keymat);
        if (!other_init_msg->ptr)
        {
                DBG1(DBG_IKE, "no peer init message available");
-               *success = FALSE;
+               goto cc_reset;
        }
 
        chunk_to_sequence(auth, &signature, sizeof(signature_type));
@@ -279,7 +279,7 @@ METHOD(listener_t, authorize, bool,
        {
                DBG1(DBG_IKE, "TKM based authentication failed"
                         " for ISA context %llu", isa_id);
-               *success = FALSE;
+               goto cc_reset;
        }
        else
        {
@@ -288,7 +288,13 @@ METHOD(listener_t, authorize, bool,
                *success = TRUE;
        }
 
-       return TRUE;
+cc_reset:
+       if (ike_cc_reset(cc_id) != TKM_OK)
+       {
+               DBG1(DBG_IKE, "unable to reset CC context %llu", cc_id);
+       }
+       tkm->idmgr->release_id(tkm->idmgr, TKM_CTX_CC, cc_id);
+       return TRUE; /* stay registered */
 }
 
 METHOD(listener_t, message, bool,