From: Dmitry Eremin-Solenikov <dmitry.ereminsoleni...@linaro.org>

Some paths during odp_ipsec_sa_create() can lead to SA leakage. Fix
them by always releasing SA in error case.

Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsoleni...@linaro.org>
---
/** Email created from pull request 288 (lumag:gmac)
 ** https://github.com/Linaro/odp/pull/288
 ** Patch: https://github.com/Linaro/odp/pull/288.patch
 ** Base sha: a908a4dead95321e84d6a8a23de060051dcd8969
 ** Merge commit sha: 9fff58cf77d87306efed89f77e84f957850623d5
 **/
 platform/linux-generic/odp_ipsec_sad.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/platform/linux-generic/odp_ipsec_sad.c 
b/platform/linux-generic/odp_ipsec_sad.c
index dc338bfcd..b2d12eada 100644
--- a/platform/linux-generic/odp_ipsec_sad.c
+++ b/platform/linux-generic/odp_ipsec_sad.c
@@ -292,7 +292,7 @@ odp_ipsec_sa_t odp_ipsec_sa_create(const 
odp_ipsec_sa_param_t *param)
                ipsec_sa->icv_len = 16;
                break;
        default:
-               return ODP_IPSEC_SA_INVALID;
+               goto error;
        }
 
        switch (crypto_param.cipher_alg) {
@@ -325,7 +325,7 @@ odp_ipsec_sa_t odp_ipsec_sa_create(const 
odp_ipsec_sa_param_t *param)
                crypto_param.iv.length = 12;
                break;
        default:
-               return ODP_IPSEC_SA_INVALID;
+               goto error;
        }
 
        if (1 == ipsec_sa->use_counter_iv &&

Reply via email to