diff options
-rw-r--r-- | crypto/ahash.c | 4 | ||||
-rw-r--r-- | crypto/algif_hash.c | 2 | ||||
-rw-r--r-- | crypto/shash.c | 6 | ||||
-rw-r--r-- | include/crypto/hash.h | 6 |
4 files changed, 11 insertions, 7 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c index a64c143165b1..78aaf2158c43 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c | |||
@@ -550,8 +550,8 @@ static int ahash_prepare_alg(struct ahash_alg *alg) | |||
550 | { | 550 | { |
551 | struct crypto_alg *base = &alg->halg.base; | 551 | struct crypto_alg *base = &alg->halg.base; |
552 | 552 | ||
553 | if (alg->halg.digestsize > PAGE_SIZE / 8 || | 553 | if (alg->halg.digestsize > HASH_MAX_DIGESTSIZE || |
554 | alg->halg.statesize > PAGE_SIZE / 8 || | 554 | alg->halg.statesize > HASH_MAX_STATESIZE || |
555 | alg->halg.statesize == 0) | 555 | alg->halg.statesize == 0) |
556 | return -EINVAL; | 556 | return -EINVAL; |
557 | 557 | ||
diff --git a/crypto/algif_hash.c b/crypto/algif_hash.c index bfcf595fd8f9..d0cde541beb6 100644 --- a/crypto/algif_hash.c +++ b/crypto/algif_hash.c | |||
@@ -239,7 +239,7 @@ static int hash_accept(struct socket *sock, struct socket *newsock, int flags, | |||
239 | struct alg_sock *ask = alg_sk(sk); | 239 | struct alg_sock *ask = alg_sk(sk); |
240 | struct hash_ctx *ctx = ask->private; | 240 | struct hash_ctx *ctx = ask->private; |
241 | struct ahash_request *req = &ctx->req; | 241 | struct ahash_request *req = &ctx->req; |
242 | char state[crypto_ahash_statesize(crypto_ahash_reqtfm(req)) ? : 1]; | 242 | char state[HASH_MAX_STATESIZE]; |
243 | struct sock *sk2; | 243 | struct sock *sk2; |
244 | struct alg_sock *ask2; | 244 | struct alg_sock *ask2; |
245 | struct hash_ctx *ctx2; | 245 | struct hash_ctx *ctx2; |
diff --git a/crypto/shash.c b/crypto/shash.c index 5d732c6bb4b2..86d76b5c626c 100644 --- a/crypto/shash.c +++ b/crypto/shash.c | |||
@@ -458,9 +458,9 @@ static int shash_prepare_alg(struct shash_alg *alg) | |||
458 | { | 458 | { |
459 | struct crypto_alg *base = &alg->base; | 459 | struct crypto_alg *base = &alg->base; |
460 | 460 | ||
461 | if (alg->digestsize > PAGE_SIZE / 8 || | 461 | if (alg->digestsize > HASH_MAX_DIGESTSIZE || |
462 | alg->descsize > PAGE_SIZE / 8 || | 462 | alg->descsize > HASH_MAX_DESCSIZE || |
463 | alg->statesize > PAGE_SIZE / 8) | 463 | alg->statesize > HASH_MAX_STATESIZE) |
464 | return -EINVAL; | 464 | return -EINVAL; |
465 | 465 | ||
466 | base->cra_type = &crypto_shash_type; | 466 | base->cra_type = &crypto_shash_type; |
diff --git a/include/crypto/hash.h b/include/crypto/hash.h index 76e432cab75d..21587011ab0f 100644 --- a/include/crypto/hash.h +++ b/include/crypto/hash.h | |||
@@ -151,9 +151,13 @@ struct shash_desc { | |||
151 | void *__ctx[] CRYPTO_MINALIGN_ATTR; | 151 | void *__ctx[] CRYPTO_MINALIGN_ATTR; |
152 | }; | 152 | }; |
153 | 153 | ||
154 | #define HASH_MAX_DIGESTSIZE 64 | ||
155 | #define HASH_MAX_DESCSIZE 360 | ||
156 | #define HASH_MAX_STATESIZE 512 | ||
157 | |||
154 | #define SHASH_DESC_ON_STACK(shash, ctx) \ | 158 | #define SHASH_DESC_ON_STACK(shash, ctx) \ |
155 | char __##shash##_desc[sizeof(struct shash_desc) + \ | 159 | char __##shash##_desc[sizeof(struct shash_desc) + \ |
156 | crypto_shash_descsize(ctx)] CRYPTO_MINALIGN_ATTR; \ | 160 | HASH_MAX_DESCSIZE] CRYPTO_MINALIGN_ATTR; \ |
157 | struct shash_desc *shash = (struct shash_desc *)__##shash##_desc | 161 | struct shash_desc *shash = (struct shash_desc *)__##shash##_desc |
158 | 162 | ||
159 | /** | 163 | /** |