Prev: [045/165] x86: Fix vsyscall on gcc 4.5 with -Os
Next: [016/165] math-emu: correct test for downshifting fraction in _FP_FROM_INT()
From: Greg KH on 30 Jul 2010 15:20 2.6.32-stable review patch. If anyone has any objections, please let us know. ------------------ From: Rajiv Andrade <srajiv(a)linux.vnet.ibm.com> commit 02a077c52ef7631275a79862ffd9f3dbe9d38bc2 upstream. This patch adds a missing element of the ReadPubEK command output, that prevents future overflow of this buffer when copying the TPM output result into it. Prevents a kernel panic in case the user tries to read the pubek from sysfs. Signed-off-by: Rajiv Andrade <srajiv(a)linux.vnet.ibm.com> Signed-off-by: James Morris <jmorris(a)namei.org> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- drivers/char/tpm/tpm.h | 1 + 1 file changed, 1 insertion(+) --- a/drivers/char/tpm/tpm.h +++ b/drivers/char/tpm/tpm.h @@ -224,6 +224,7 @@ struct tpm_readpubek_params_out { u8 algorithm[4]; u8 encscheme[2]; u8 sigscheme[2]; + __be32 paramsize; u8 parameters[12]; /*assuming RSA*/ __be32 keysize; u8 modulus[256]; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |