crypto: user - fix info leaks in report API
authorMathias Krause <minipli@googlemail.com>
Tue, 5 Feb 2013 17:19:13 +0000 (18:19 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 19 Feb 2013 12:27:03 +0000 (20:27 +0800)
commit9a5467bf7b6e9e02ec9c3da4e23747c05faeaac6
tree321e685947c9d47ca369efabb061bf50e1921c1d
parent7eb9c5df92361c55daab4d8d4e8468eb774e297b
crypto: user - fix info leaks in report API

Three errors resulting in kernel memory disclosure:

1/ The structures used for the netlink based crypto algorithm report API
are located on the stack. As snprintf() does not fill the remainder of
the buffer with null bytes, those stack bytes will be disclosed to users
of the API. Switch to strncpy() to fix this.

2/ crypto_report_one() does not initialize all field of struct
crypto_user_alg. Fix this to fix the heap info leak.

3/ For the module name we should copy only as many bytes as
module_name() returns -- not as much as the destination buffer could
hold. But the current code does not and therefore copies random data
from behind the end of the module name, as the module name is always
shorter than CRYPTO_MAX_ALG_NAME.

Also switch to use strncpy() to copy the algorithm's name and
driver_name. They are strings, after all.

Signed-off-by: Mathias Krause <minipli@googlemail.com>
Cc: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/ablkcipher.c
crypto/aead.c
crypto/ahash.c
crypto/blkcipher.c
crypto/crypto_user.c
crypto/pcompress.c
crypto/rng.c
crypto/shash.c