summaryrefslogtreecommitdiffstats
path: root/crypto/gcm.c
diff options
context:
space:
mode:
authorIuliana Prodan <iuliana.prodan@nxp.com>2019-08-02 04:47:33 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2019-08-09 01:11:58 -0400
commit74bf81d0968c2262926dc2a690e671ebb768f2ec (patch)
tree1b0c2a235dcd354b689b427653a0361cf7bcc083 /crypto/gcm.c
parentad3f0a93b639c342abbe8982cc34a3370169c464 (diff)
crypto: gcm - restrict assoclen for rfc4543
Based on seqiv, IPsec ESP and rfc4543/rfc4106 the assoclen can be 16 or 20 bytes. From esp4/esp6, assoclen is sizeof IP Header. This includes spi, seq_no and extended seq_no, that is 8 or 12 bytes. In seqiv, to asscolen is added the IV size (8 bytes). Therefore, the assoclen, for rfc4543, should be restricted to 16 or 20 bytes, as for rfc4106. Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com> Reviewed-by: Horia Geanta <horia.geanta@nxp.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/gcm.c')
-rw-r--r--crypto/gcm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/gcm.c b/crypto/gcm.c
index 2f3b50f8f3e0..73884208f075 100644
--- a/crypto/gcm.c
+++ b/crypto/gcm.c
@@ -1034,12 +1034,14 @@ static int crypto_rfc4543_copy_src_to_dst(struct aead_request *req, bool enc)
1034 1034
1035static int crypto_rfc4543_encrypt(struct aead_request *req) 1035static int crypto_rfc4543_encrypt(struct aead_request *req)
1036{ 1036{
1037 return crypto_rfc4543_crypt(req, true); 1037 return crypto_ipsec_check_assoclen(req->assoclen) ?:
1038 crypto_rfc4543_crypt(req, true);
1038} 1039}
1039 1040
1040static int crypto_rfc4543_decrypt(struct aead_request *req) 1041static int crypto_rfc4543_decrypt(struct aead_request *req)
1041{ 1042{
1042 return crypto_rfc4543_crypt(req, false); 1043 return crypto_ipsec_check_assoclen(req->assoclen) ?:
1044 crypto_rfc4543_crypt(req, false);
1043} 1045}
1044 1046
1045static int crypto_rfc4543_init_tfm(struct crypto_aead *tfm) 1047static int crypto_rfc4543_init_tfm(struct crypto_aead *tfm)