]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
child-sa: Remove temporary DROP policy using same parameters as when added
authorCarl Smith <carl.smith@alliedtelesis.co.nz>
Mon, 4 Mar 2019 01:43:00 +0000 (14:43 +1300)
committerTobias Brunner <tobias@strongswan.org>
Mon, 4 Mar 2019 08:38:35 +0000 (09:38 +0100)
A temporary DROP policy is added to avoid traffic leak
while the SA is being updated. It is added with
manual_prio set but when the temporary policy is removed
it is removed with manual_prio parameter set to 0.
The call to del_policies_outbound does not match the original
policy and we end up with an ever increasing refcount.

If we try to manually remove the policy, it is not removed
due to the positive refcount. Then new SA requests fail with
"unable to install policy out for reqid 1618,
the same policy for reqid 1528 exists"

Fixes: 35ef1b032d24 ("child-sa: Install drop policies while updating IPsec SAs and policies")
Closes strongswan/strongswan#129.

src/libcharon/sa/child_sa.c

index bdc96a4bc2491c44a317819f974f9b0c45b744a4..a341f29bd551884ee62aaac0d56c85c7a690a091 100644 (file)
@@ -1592,7 +1592,7 @@ METHOD(child_sa_t, update, status_t,
                                del_policies_outbound(this, this->my_addr, this->other_addr,
                                                old_my_ts ?: my_ts, old_other_ts ?: other_ts,
                                                &my_sa, &other_sa, POLICY_DROP,
-                                               POLICY_PRIORITY_DEFAULT, 0);
+                                               POLICY_PRIORITY_DEFAULT, manual_prio);
                        }
 
                        DESTROY_IF(old_my_ts);