]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
eap-radius: Remove cache entries for expired SAs during ike/child_rekey
authorTobias Brunner <tobias@strongswan.org>
Wed, 25 Mar 2015 15:47:24 +0000 (16:47 +0100)
committerTobias Brunner <tobias@strongswan.org>
Thu, 21 May 2015 13:38:31 +0000 (15:38 +0200)
src/libcharon/plugins/eap_radius/eap_radius_accounting.c

index 80d01d4567d6fc4a452ab536210ed28d554b5dbe..b486ba4dcac36be38cb6331eeafb1602ada9b342 100644 (file)
@@ -225,6 +225,48 @@ static void update_usage(private_eap_radius_accounting_t *this,
        this->mutex->unlock(this->mutex);
 }
 
+/**
+ * Cleanup cached SAs
+ */
+static void cleanup_sas(private_eap_radius_accounting_t *this, ike_sa_t *ike_sa,
+                                               entry_t *entry)
+{
+       enumerator_t *enumerator;
+       child_sa_t *child_sa;
+       sa_entry_t *sa, *found;
+       array_t *sas;
+
+       sas = array_create(0, 0);
+       enumerator = ike_sa->create_child_sa_enumerator(ike_sa);
+       while (enumerator->enumerate(enumerator, &child_sa))
+       {
+               INIT(sa,
+                       .id = child_sa->get_unique_id(child_sa),
+               );
+               array_insert(sas, ARRAY_TAIL, sa);
+               array_sort(sas, sa_sort, NULL);
+       }
+       enumerator->destroy(enumerator);
+
+       enumerator = array_create_enumerator(entry->cached);
+       while (enumerator->enumerate(enumerator, &sa))
+       {
+               if (array_bsearch(sas, sa, sa_find, &found) == -1)
+               {
+                       /* SA is gone, add its latest stats to the total for this IKE_SA
+                        * and remove the cache entry */
+                       entry->bytes.sent += sa->bytes.sent;
+                       entry->bytes.received += sa->bytes.received;
+                       entry->packets.sent += sa->packets.sent;
+                       entry->packets.received += sa->packets.received;
+                       array_remove_at(entry->cached, enumerator);
+                       free(sa);
+               }
+       }
+       enumerator->destroy(enumerator);
+       array_destroy_function(sas, (void*)free, NULL);
+}
+
 /**
  * Send a RADIUS message, wait for response
  */
@@ -757,6 +799,8 @@ METHOD(listener_t, ike_rekey, bool,
                /* fire new interim update job, old gets invalid */
                schedule_interim(this, entry);
 
+               cleanup_sas(this, new, entry);
+
                entry = this->sessions->put(this->sessions, entry->id, entry);
                if (entry)
                {
@@ -772,7 +816,16 @@ METHOD(listener_t, child_rekey, bool,
        private_eap_radius_accounting_t *this, ike_sa_t *ike_sa,
        child_sa_t *old, child_sa_t *new)
 {
+       entry_t *entry;
+
        update_usage(this, ike_sa, old);
+       this->mutex->lock(this->mutex);
+       entry = this->sessions->get(this->sessions, ike_sa->get_id(ike_sa));
+       if (entry)
+       {
+               cleanup_sas(this, ike_sa, entry);
+       }
+       this->mutex->unlock(this->mutex);
        return TRUE;
 }