]> git.karo-electronics.de Git - karo-tx-linux.git/commit
Fix corrupted OSF partition table parsing
authorTimo Warns <Warns@pre-sense.de>
Mon, 14 Mar 2011 13:59:33 +0000 (14:59 +0100)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Wed, 14 Mar 2012 14:57:37 +0000 (10:57 -0400)
commit23c577ce637ccf0b9bff013a08624c76f874ba74
tree4b3c70312f14cfbcf642087eede4630a96b59e9e
parent9de38b58ccb9d284d39a0f35a1500dcf36221e8a
Fix corrupted OSF partition table parsing

commit 1eafbfeb7bdf59cfe173304c76188f3fd5f1fd05 upstream.

The kernel automatically evaluates partition tables of storage devices.
The code for evaluating OSF partitions contains a bug that leaks data
from kernel heap memory to userspace for certain corrupted OSF
partitions.

In more detail:

  for (i = 0 ; i < le16_to_cpu(label->d_npartitions); i++, partition++) {

iterates from 0 to d_npartitions - 1, where d_npartitions is read from
the partition table without validation and partition is a pointer to an
array of at most 8 d_partitions.

Add the proper and obvious validation.

Signed-off-by: Timo Warns <warns@pre-sense.de>
[ Changed the patch trivially to not repeat the whole le16_to_cpu()
  thing, and to use an explicit constant for the magic value '8' ]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
fs/partitions/osf.c