Skip to content

Commit

Permalink
crypto: ansi_cprng - Panic on CPRNG test failure when in FIPS mode
Browse files Browse the repository at this point in the history
FIPS 140-2 specifies that all access to various cryptographic modules be
prevented in the event that any of the provided self tests fail on the various
implemented algorithms.  We already panic when any of the test in testmgr.c
fail when we are operating in fips mode.  The continuous test in the cprng here
was missed when that was implmented.  This code simply checks for the
fips_enabled flag if the test fails, and warns us via syslog or panics the box
accordingly.

Signed-off-by: Neil Horman <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
nhorman authored and herbertx committed Feb 18, 2009
1 parent 563f346 commit c5b1e54
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions crypto/ansi_cprng.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,15 @@ static int _get_more_prng_bytes(struct prng_context *ctx)
*/
if (!memcmp(ctx->rand_data, ctx->last_rand_data,
DEFAULT_BLK_SZ)) {
if (fips_enabled) {
panic("cprng %p Failed repetition check!\n",
ctx);
}

printk(KERN_ERR
"ctx %p Failed repetition check!\n",
ctx);

ctx->flags |= PRNG_NEED_RESET;
return -EINVAL;
}
Expand Down

0 comments on commit c5b1e54

Please sign in to comment.