]> granicus.if.org Git - libnl/commitdiff
xfrm: check length of alg_name before strcpying it
authorThomas Egerer <thomas.egerer@secunet.com>
Tue, 31 May 2016 15:30:03 +0000 (17:30 +0200)
committerThomas Haller <thaller@redhat.com>
Sat, 25 Jun 2016 11:54:28 +0000 (13:54 +0200)
If the parameter alg_name points to a string longer then what libnl
accepts as alg_name, the call to strcpy may write far beyond the
particular data structure.
Instead of truncating the string (using strncpy) this patch adds a check
and returns -1 for strings being longer than 63 bytes.

Signed-off-by: Thomas Egerer <thomas.egerer@secunet.com>
Signed-off-by: Thomas Haller <thaller@redhat.com>
Fixes: 917154470895520a77f527343f3a0cc1605934b0
http://lists.infradead.org/pipermail/libnl/2016-May/002133.html

lib/xfrm/sa.c

index 69bcfd6a39746d0d6f0be42b89d8196e202f36f6..1cd6edd4ffa3309973e2e183404fecfbf96f751b 100644 (file)
@@ -1635,7 +1635,7 @@ int xfrmnl_sa_set_aead_params (struct xfrmnl_sa* sa, char* alg_name, unsigned in
        /* Free up the old key and allocate memory to hold new key */
        if (sa->aead)
                free (sa->aead);
-       if ((sa->aead = calloc (1, newlen)) == NULL)
+       if (strlen (alg_name) >= sizeof (sa->aead->alg_name) || (sa->aead = calloc (1, newlen)) == NULL)
                return -1;
 
        /* Save the new info */
@@ -1672,7 +1672,7 @@ int xfrmnl_sa_set_auth_params (struct xfrmnl_sa* sa, char* alg_name, unsigned in
        /* Free up the old auth data and allocate new one */
        if (sa->auth)
                free (sa->auth);
-       if ((sa->auth = calloc (1, newlen)) == NULL)
+       if (strlen (alg_name) >= sizeof (sa->auth->alg_name) || (sa->auth = calloc (1, newlen)) == NULL)
                return -1;
 
        /* Save the new info */
@@ -1708,7 +1708,7 @@ int xfrmnl_sa_set_crypto_params (struct xfrmnl_sa* sa, char* alg_name, unsigned
        /* Free up the old crypto and allocate new one */
        if (sa->crypt)
                free (sa->crypt);
-       if ((sa->crypt = calloc (1, newlen)) == NULL)
+       if (strlen (alg_name) >= sizeof (sa->crypt->alg_name) || (sa->crypt = calloc (1, newlen)) == NULL)
                return -1;
 
        /* Save the new info */
@@ -1743,7 +1743,7 @@ int xfrmnl_sa_set_comp_params (struct xfrmnl_sa* sa, char* alg_name, unsigned in
        /* Free up the old compression algo params and allocate new one */
        if (sa->comp)
                free (sa->comp);
-       if ((sa->comp = calloc (1, newlen)) == NULL)
+       if (strlen (alg_name) >= sizeof (sa->comp->alg_name) || (sa->comp = calloc (1, newlen)) == NULL)
                return -1;
 
        /* Save the new info */