TPM: get_event_name stack corruption
authorEric Paris <eparis@redhat.com>
Wed, 13 May 2009 16:50:40 +0000 (12:50 -0400)
committerJames Morris <jmorris@namei.org>
Tue, 19 May 2009 22:30:05 +0000 (08:30 +1000)
commitfbaa58696cef848de818768783ef185bd3f05158
tree0055562c31266189533099d34f0909a0ec4c0bd4
parent279e677faa775ad16e75c32e1bf4a37f8158bc61
TPM: get_event_name stack corruption

get_event_name uses sprintf to fill a buffer declared on the stack.  It fills
the buffer 2 bytes at a time.  What the code doesn't take into account is that
sprintf(buf, "%02x", data) actually writes 3 bytes.  2 bytes for the data and
then it nul terminates the string.  Since we declare buf to be 40 characters
long and then we write 40 bytes of data into buf sprintf is going to write 41
characters.  The fix is to leave room in buf for the nul terminator.

Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
drivers/char/tpm/tpm_bios.c