]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ext3: Fix format string issues
authorLars-Peter Clausen <lars@metafoo.de>
Sat, 9 Mar 2013 14:28:44 +0000 (15:28 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Mar 2013 19:58:51 +0000 (12:58 -0700)
commit64365ddb08f27f2583f2323a147520fed192ef40
treef967ce77625ae8b971c3cb20eb9855da6e86c74d
parent42cd41128edb092f9ae6fe89dbb5456963568602
ext3: Fix format string issues

commit 8d0c2d10dd72c5292eda7a06231056a4c972e4cc upstream.

ext3_msg() takes the printk prefix as the second parameter and the
format string as the third parameter. Two callers of ext3_msg omit the
prefix and pass the format string as the second parameter and the first
parameter to the format string as the third parameter. In both cases
this string comes from an arbitrary source. Which means the string may
contain format string characters, which will
lead to undefined and potentially harmful behavior.

The issue was introduced in commit 4cf46b67eb("ext3: Unify log messages
in ext3") and is fixed by this patch.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext3/super.c