Bug 504081 - kernel: TPM: get_event_name stack corruption [mrg-1.2]
Summary: kernel: TPM: get_event_name stack corruption [mrg-1.2]
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Red Hat Enterprise MRG
Classification: Red Hat
Component: realtime-kernel
Version: 1.2
Hardware: All
OS: Linux
high
high
Target Milestone: ---
: ---
Assignee: Red Hat Real Time Maintenance
QA Contact: David Sommerseth
URL:
Whiteboard:
Depends On: 503902
Blocks:
TreeView+ depends on / blocked
 
Reported: 2009-06-04 05:25 UTC by Eugene Teo (Security Response)
Modified: 2016-05-22 23:28 UTC (History)
5 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of: 503902
Environment:
Last Closed: 2009-09-22 10:46:04 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Eugene Teo (Security Response) 2009-06-04 05:25:10 UTC
+++ This bug was initially created as a clone of Bug #503902 +++

Description of problem:
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.

Upstream commit:
http://git.kernel.org/linus/fbaa58696cef848de818768783ef185bd3f05158

Note: this is not addressed in 2.6.29.4.

Comment 1 Eugene Teo (Security Response) 2009-09-22 10:46:04 UTC
This is fixed in 2.6.31.


Note You need to log in before you can comment on or make changes to this bug.