mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto fixes from Herbert Xu: "This fixes a couple of crypto drivers that were using memcmp to verify authentication tags. They now use crypto_memneq instead" * 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: crypto: talitos - Fix timing leak in ESP ICV verification crypto: nx - Fix timing leak in GCM and CCM decryption
This commit is contained in:
commit
9cfe521274
3 changed files with 4 additions and 3 deletions
|
@ -409,7 +409,7 @@ static int ccm_nx_decrypt(struct aead_request *req,
|
||||||
processed += to_process;
|
processed += to_process;
|
||||||
} while (processed < nbytes);
|
} while (processed < nbytes);
|
||||||
|
|
||||||
rc = memcmp(csbcpb->cpb.aes_ccm.out_pat_or_mac, priv->oauth_tag,
|
rc = crypto_memneq(csbcpb->cpb.aes_ccm.out_pat_or_mac, priv->oauth_tag,
|
||||||
authsize) ? -EBADMSG : 0;
|
authsize) ? -EBADMSG : 0;
|
||||||
out:
|
out:
|
||||||
spin_unlock_irqrestore(&nx_ctx->lock, irq_flags);
|
spin_unlock_irqrestore(&nx_ctx->lock, irq_flags);
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
|
|
||||||
#include <crypto/internal/aead.h>
|
#include <crypto/internal/aead.h>
|
||||||
#include <crypto/aes.h>
|
#include <crypto/aes.h>
|
||||||
|
#include <crypto/algapi.h>
|
||||||
#include <crypto/scatterwalk.h>
|
#include <crypto/scatterwalk.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
@ -418,7 +419,7 @@ mac:
|
||||||
itag, req->src, req->assoclen + nbytes,
|
itag, req->src, req->assoclen + nbytes,
|
||||||
crypto_aead_authsize(crypto_aead_reqtfm(req)),
|
crypto_aead_authsize(crypto_aead_reqtfm(req)),
|
||||||
SCATTERWALK_FROM_SG);
|
SCATTERWALK_FROM_SG);
|
||||||
rc = memcmp(itag, otag,
|
rc = crypto_memneq(itag, otag,
|
||||||
crypto_aead_authsize(crypto_aead_reqtfm(req))) ?
|
crypto_aead_authsize(crypto_aead_reqtfm(req))) ?
|
||||||
-EBADMSG : 0;
|
-EBADMSG : 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -977,7 +977,7 @@ static void ipsec_esp_decrypt_swauth_done(struct device *dev,
|
||||||
} else
|
} else
|
||||||
oicv = (char *)&edesc->link_tbl[0];
|
oicv = (char *)&edesc->link_tbl[0];
|
||||||
|
|
||||||
err = memcmp(oicv, icv, authsize) ? -EBADMSG : 0;
|
err = crypto_memneq(oicv, icv, authsize) ? -EBADMSG : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
kfree(edesc);
|
kfree(edesc);
|
||||||
|
|
Loading…
Add table
Reference in a new issue