crypto: async - Use kzfree for requests
authorHerbert Xu <herbert@gondor.apana.org.au>
Sat, 11 Jul 2009 14:22:14 +0000 (22:22 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sun, 12 Jul 2009 02:46:03 +0000 (10:46 +0800)
This patch changes the kfree call to kzfree for async requests.
As the request may contain sensitive data it needs to be zeroed
before it can be reallocated by others.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
include/crypto/hash.h
include/linux/crypto.h

index 3c4cce6a425c4be4dbd10dfcdf64c6b95970d94c..f74214a4b01b5240f7bcd5807be4feaaa288d328 100644 (file)
@@ -186,7 +186,7 @@ static inline struct ahash_request *ahash_request_alloc(
 
 static inline void ahash_request_free(struct ahash_request *req)
 {
-       kfree(req);
+       kzfree(req);
 }
 
 static inline struct ahash_request *ahash_request_cast(
index ec29fa268b94e278e5125380f8e2b1faa20c10c9..274f9c7da90cadd2054c1dc63520451d90c8ea8d 100644 (file)
@@ -770,7 +770,7 @@ static inline struct ablkcipher_request *ablkcipher_request_alloc(
 
 static inline void ablkcipher_request_free(struct ablkcipher_request *req)
 {
-       kfree(req);
+       kzfree(req);
 }
 
 static inline void ablkcipher_request_set_callback(
@@ -901,7 +901,7 @@ static inline struct aead_request *aead_request_alloc(struct crypto_aead *tfm,
 
 static inline void aead_request_free(struct aead_request *req)
 {
-       kfree(req);
+       kzfree(req);
 }
 
 static inline void aead_request_set_callback(struct aead_request *req,