diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-12-09 21:55:21 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-01-10 16:16:38 -0500 |
commit | 12dc5e62b4f93f1d399fd81e35be3f9ea0027712 (patch) | |
tree | 413a29344ae74030c2ef27d34dd70b396c51a1e1 /crypto/authenc.c | |
parent | c2c61f513db395ddd8d67690bf3301ebe1e8155a (diff) |
[CRYPTO] authenc: Use RTA_OK to check length
This patch changes setkey to use RTA_OK to check the validity of the
setkey request.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/authenc.c')
-rw-r--r-- | crypto/authenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/authenc.c b/crypto/authenc.c index 80d9d0b18c13..aa442dea5c43 100644 --- a/crypto/authenc.c +++ b/crypto/authenc.c | |||
@@ -44,7 +44,7 @@ static int crypto_authenc_setkey(struct crypto_aead *authenc, const u8 *key, | |||
44 | struct crypto_authenc_key_param *param; | 44 | struct crypto_authenc_key_param *param; |
45 | int err = -EINVAL; | 45 | int err = -EINVAL; |
46 | 46 | ||
47 | if (keylen < sizeof(*rta)) | 47 | if (!RTA_OK(rta, keylen)) |
48 | goto badkey; | 48 | goto badkey; |
49 | if (rta->rta_type != CRYPTO_AUTHENC_KEYA_PARAM) | 49 | if (rta->rta_type != CRYPTO_AUTHENC_KEYA_PARAM) |
50 | goto badkey; | 50 | goto badkey; |