public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] FAT: buffer overflow with FAT12/16
@ 2010-10-20  6:51 Stefano Babic
  2010-10-20  7:15 ` Wolfgang Denk
  2010-10-20  7:23 ` Mikhail Zolotaryov
  0 siblings, 2 replies; 3+ messages in thread
From: Stefano Babic @ 2010-10-20  6:51 UTC (permalink / raw)
  To: u-boot

Last commit 3831530dcb7b71329c272ccd6181f8038b6a6dd0a was intended
"explicitly specify FAT12/16 root directory parsing buffer size, instead
of relying on cluster size". Howver, the underlying function requires
the size of the buffer in blocks, not in bytes, and instead of passing
a double sector size a request for 1024 blocks is sent. This generates
a buffer overflow with overwriting of other structure (in the case seen,
USB structures were overwritten).

Signed-off-by: Stefano Babic <sbabic@denx.de>
CC: Mikhail Zolotaryov <lebon@lebon.org.ua>

---
 fs/fat/fat.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/fat/fat.c b/fs/fat/fat.c
index 744e961..a75e4f2 100644
--- a/fs/fat/fat.c
+++ b/fs/fat/fat.c
@@ -858,7 +858,7 @@ do_fat_read (const char *filename, void *buffer, unsigned long maxsize,
 		if (disk_read(cursect,
 				(mydata->fatsize == 32) ?
 				(mydata->clust_size) :
-				LINEAR_PREFETCH_SIZE,
+				LINEAR_PREFETCH_SIZE / SECTOR_SIZE,
 				do_fat_read_block) < 0) {
 			debug("Error: reading rootdir block\n");
 			return -1;
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] FAT: buffer overflow with FAT12/16
  2010-10-20  6:51 [U-Boot] [PATCH] FAT: buffer overflow with FAT12/16 Stefano Babic
@ 2010-10-20  7:15 ` Wolfgang Denk
  2010-10-20  7:23 ` Mikhail Zolotaryov
  1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2010-10-20  7:15 UTC (permalink / raw)
  To: u-boot

Dear Stefano Babic,

In message <1287557505-3955-1-git-send-email-sbabic@denx.de> you wrote:
> Last commit 3831530dcb7b71329c272ccd6181f8038b6a6dd0a was intended
> "explicitly specify FAT12/16 root directory parsing buffer size, instead
> of relying on cluster size". Howver, the underlying function requires
> the size of the buffer in blocks, not in bytes, and instead of passing
> a double sector size a request for 1024 blocks is sent. This generates
> a buffer overflow with overwriting of other structure (in the case seen,
> USB structures were overwritten).
> 
> Signed-off-by: Stefano Babic <sbabic@denx.de>
> CC: Mikhail Zolotaryov <lebon@lebon.org.ua>
> 
> ---
>  fs/fat/fat.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Nice catch!

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Never worry about theory as long as  the  machinery  does  what  it's
supposed to do.                                      - R. A. Heinlein

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] FAT: buffer overflow with FAT12/16
  2010-10-20  6:51 [U-Boot] [PATCH] FAT: buffer overflow with FAT12/16 Stefano Babic
  2010-10-20  7:15 ` Wolfgang Denk
@ 2010-10-20  7:23 ` Mikhail Zolotaryov
  1 sibling, 0 replies; 3+ messages in thread
From: Mikhail Zolotaryov @ 2010-10-20  7:23 UTC (permalink / raw)
  To: u-boot

 Stefano,

you're right, sorry for that. Isn't it better to define LINEAR_PREFETCH_SIZE as
2 (blocks) and change get_vfatname() to something like that in such case:
        __u8 *buflimit = cluster + ((curclust == 0) ?
                                        LINEAR_PREFETCH_SIZE :
                                        mydata->clust_size
                                   ) * SECTOR_SIZE;
Regards,
Mikhail

On 20.10.10 09:51, Stefano Babic wrote:
> Last commit 3831530dcb7b71329c272ccd6181f8038b6a6dd0a was intended
> "explicitly specify FAT12/16 root directory parsing buffer size, instead
> of relying on cluster size". Howver, the underlying function requires
> the size of the buffer in blocks, not in bytes, and instead of passing
> a double sector size a request for 1024 blocks is sent. This generates
> a buffer overflow with overwriting of other structure (in the case seen,
> USB structures were overwritten).
>
> Signed-off-by: Stefano Babic <sbabic@denx.de>
> CC: Mikhail Zolotaryov <lebon@lebon.org.ua>
>
> ---
>  fs/fat/fat.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/fs/fat/fat.c b/fs/fat/fat.c
> index 744e961..a75e4f2 100644
> --- a/fs/fat/fat.c
> +++ b/fs/fat/fat.c
> @@ -858,7 +858,7 @@ do_fat_read (const char *filename, void *buffer, unsigned long maxsize,
>  		if (disk_read(cursect,
>  				(mydata->fatsize == 32) ?
>  				(mydata->clust_size) :
> -				LINEAR_PREFETCH_SIZE,
> +				LINEAR_PREFETCH_SIZE / SECTOR_SIZE,
>  				do_fat_read_block) < 0) {
>  			debug("Error: reading rootdir block\n");
>  			return -1;

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-10-20  7:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-20  6:51 [U-Boot] [PATCH] FAT: buffer overflow with FAT12/16 Stefano Babic
2010-10-20  7:15 ` Wolfgang Denk
2010-10-20  7:23 ` Mikhail Zolotaryov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox