* [U-Boot] [PATCH 1/1] fat: FAT sector offsets overflow on large disks and/or FAT partitions
@ 2012-05-03 2:17 Aaron Williams
2012-05-08 2:10 ` Aaron Williams
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Aaron Williams @ 2012-05-03 2:17 UTC (permalink / raw)
To: u-boot
This patch fixes several issues where sector offsets can overflow due to
being limited to 16-bits. There are many cases which can cause an
overflow, including large FAT32 partitions and partitions that start at
a sufficiently large offset on the storage device.
Numerous issues were observed and fixed when a 64GB FAT32 filesystem was
accessed due to truncation.
Signed-off-by: Aaron Williams <aaron.williams@caviumnetworks.com>
---
include/fat.h | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/include/fat.h b/include/fat.h
index 4c92442..7215628 100644
--- a/include/fat.h
+++ b/include/fat.h
@@ -178,12 +178,12 @@ typedef struct dir_slot {
typedef struct {
__u8 *fatbuf; /* Current FAT buffer */
int fatsize; /* Size of FAT in bits */
- __u16 fatlength; /* Length of FAT in sectors */
- __u16 fat_sect; /* Starting sector of the FAT */
- __u16 rootdir_sect; /* Start sector of root directory */
- __u16 sect_size; /* Size of sectors in bytes */
+ __u32 fat_sect; /* Starting sector of the FAT */
+ __u32 rootdir_sect; /* Start sector of root directory */
+ __u32 fatlength; /* Length of FAT in sectors */
__u16 clust_size; /* Size of clusters in sectors */
- short data_begin; /* The sector of the first cluster, can be negative */
+ __u16 sect_size; /* Size of sectors in bytes */
+ int data_begin; /* The sector of the first cluster, can be negative */
int fatbufnum; /* Used by get_fatent, init to -1 */
} fsdata;
--
1.7.7
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH 1/1] fat: FAT sector offsets overflow on large disks and/or FAT partitions
2012-05-03 2:17 [U-Boot] [PATCH 1/1] fat: FAT sector offsets overflow on large disks and/or FAT partitions Aaron Williams
@ 2012-05-08 2:10 ` Aaron Williams
2012-05-12 15:41 ` Anatolij Gustschin
2012-05-19 17:20 ` [U-Boot] [PATCH] fat: fix FAT sector offsets overflow on large " Anatolij Gustschin
2 siblings, 0 replies; 6+ messages in thread
From: Aaron Williams @ 2012-05-08 2:10 UTC (permalink / raw)
To: u-boot
Any comments on this patch?
On 05/02/2012 07:17 PM, Aaron Williams wrote:
> This patch fixes several issues where sector offsets can overflow due to
> being limited to 16-bits. There are many cases which can cause an
> overflow, including large FAT32 partitions and partitions that start at
> a sufficiently large offset on the storage device.
>
> Numerous issues were observed and fixed when a 64GB FAT32 filesystem was
> accessed due to truncation.
>
> Signed-off-by: Aaron Williams <aaron.williams@caviumnetworks.com>
> ---
> include/fat.h | 10 +++++-----
> 1 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/include/fat.h b/include/fat.h
> index 4c92442..7215628 100644
> --- a/include/fat.h
> +++ b/include/fat.h
> @@ -178,12 +178,12 @@ typedef struct dir_slot {
> typedef struct {
> __u8 *fatbuf; /* Current FAT buffer */
> int fatsize; /* Size of FAT in bits */
> - __u16 fatlength; /* Length of FAT in sectors */
> - __u16 fat_sect; /* Starting sector of the FAT */
> - __u16 rootdir_sect; /* Start sector of root directory */
> - __u16 sect_size; /* Size of sectors in bytes */
> + __u32 fat_sect; /* Starting sector of the FAT */
> + __u32 rootdir_sect; /* Start sector of root directory */
> + __u32 fatlength; /* Length of FAT in sectors */
> __u16 clust_size; /* Size of clusters in sectors */
> - short data_begin; /* The sector of the first cluster, can be negative */
> + __u16 sect_size; /* Size of sectors in bytes */
> + int data_begin; /* The sector of the first cluster, can be negative */
> int fatbufnum; /* Used by get_fatent, init to -1 */
> } fsdata;
>
--
Aaron Williams
Software Engineer
Cavium, Inc.
(408) 943-7198 (510) 789-8988 (cell)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH 1/1] fat: FAT sector offsets overflow on large disks and/or FAT partitions
2012-05-03 2:17 [U-Boot] [PATCH 1/1] fat: FAT sector offsets overflow on large disks and/or FAT partitions Aaron Williams
2012-05-08 2:10 ` Aaron Williams
@ 2012-05-12 15:41 ` Anatolij Gustschin
2012-05-14 22:54 ` Aaron Williams
2012-05-19 17:20 ` [U-Boot] [PATCH] fat: fix FAT sector offsets overflow on large " Anatolij Gustschin
2 siblings, 1 reply; 6+ messages in thread
From: Anatolij Gustschin @ 2012-05-12 15:41 UTC (permalink / raw)
To: u-boot
Hello,
On Wed, 02 May 2012 19:17:41 -0700
Aaron Williams <Aaron.Williams@cavium.com> wrote:
> This patch fixes several issues where sector offsets can overflow due to
> being limited to 16-bits. There are many cases which can cause an
> overflow, including large FAT32 partitions and partitions that start at
> a sufficiently large offset on the storage device.
For large FAT32 partitions only changing of fatlength, rootdir_sect and
data_begin is needed to avoid overflows. Changing of fat_sect shouldn't
be needed.
What do you mean exactly by "partitions starting at a sufficiently large
offset on the storage device"? How do you create such partition?
I've tested with a 210 GB FAT32 partition as the fourth primary partition
on a 2 TB disk. This partition is the last partition on the disk, so its
offset is sufficiently large. For this test only fatlength, rootdir_sect
and data_begin was changed to __u32 and int and I do not see issues when
listing or loading the files from this partition.
> Numerous issues were observed and fixed when a 64GB FAT32 filesystem was
> accessed due to truncation.
>
> Signed-off-by: Aaron Williams <aaron.williams@caviumnetworks.com>
> ---
> include/fat.h | 10 +++++-----
> 1 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/include/fat.h b/include/fat.h
> index 4c92442..7215628 100644
> --- a/include/fat.h
> +++ b/include/fat.h
> @@ -178,12 +178,12 @@ typedef struct dir_slot {
> typedef struct {
> __u8 *fatbuf; /* Current FAT buffer */
> int fatsize; /* Size of FAT in bits */
> - __u16 fatlength; /* Length of FAT in sectors */
> - __u16 fat_sect; /* Starting sector of the FAT */
> - __u16 rootdir_sect; /* Start sector of root directory */
> - __u16 sect_size; /* Size of sectors in bytes */
> + __u32 fat_sect; /* Starting sector of the FAT */
> + __u32 rootdir_sect; /* Start sector of root directory */
> + __u32 fatlength; /* Length of FAT in sectors */
> __u16 clust_size; /* Size of clusters in sectors */
> - short data_begin; /* The sector of the first cluster, can be negative */
> + __u16 sect_size; /* Size of sectors in bytes */
> + int data_begin; /* The sector of the first cluster, can be negative */
> int fatbufnum; /* Used by get_fatent, init to -1 */
> } fsdata;
The patch is probably corrupted by your mailer, it doesn't apply.
Thanks,
Anatolij
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH 1/1] fat: FAT sector offsets overflow on large disks and/or FAT partitions
2012-05-12 15:41 ` Anatolij Gustschin
@ 2012-05-14 22:54 ` Aaron Williams
0 siblings, 0 replies; 6+ messages in thread
From: Aaron Williams @ 2012-05-14 22:54 UTC (permalink / raw)
To: u-boot
Hi Anatolij,
On 05/12/2012 08:41 AM, Anatolij Gustschin wrote:
> Hello,
>
> On Wed, 02 May 2012 19:17:41 -0700
> Aaron Williams <Aaron.Williams@cavium.com> wrote:
>
>> This patch fixes several issues where sector offsets can overflow due to
>> being limited to 16-bits. There are many cases which can cause an
>> overflow, including large FAT32 partitions and partitions that start at
>> a sufficiently large offset on the storage device.
> For large FAT32 partitions only changing of fatlength, rootdir_sect and
> data_begin is needed to avoid overflows. Changing of fat_sect shouldn't
> be needed.
>
> What do you mean exactly by "partitions starting at a sufficiently large
> offset on the storage device"? How do you create such partition?
> I've tested with a 210 GB FAT32 partition as the fourth primary partition
> on a 2 TB disk. This partition is the last partition on the disk, so its
> offset is sufficiently large. For this test only fatlength, rootdir_sect
> and data_begin was changed to __u32 and int and I do not see issues when
> listing or loading the files from this partition.
You are correct about fat_sect, I misread the code and changed that one
as well. I don't think it really matters since another changing it back
to a __u16 won't save any space in the data structure on most platforms.
It looks like the corruption problems I was seeing were due to the fact
that the file I was reading was after a number of very large files in a
64GB FAT32 partition and I ran into overflows. The partition location
shouldn't have any impact unless we're talking about 2+TB drives, in
which case I expect there will be numerous other things that will break.
>> Numerous issues were observed and fixed when a 64GB FAT32 filesystem was
>> accessed due to truncation.
>>
>> Signed-off-by: Aaron Williams <aaron.williams@caviumnetworks.com>
>> ---
>> include/fat.h | 10 +++++-----
>> 1 files changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/include/fat.h b/include/fat.h
>> index 4c92442..7215628 100644
>> --- a/include/fat.h
>> +++ b/include/fat.h
>> @@ -178,12 +178,12 @@ typedef struct dir_slot {
>> typedef struct {
>> __u8 *fatbuf; /* Current FAT buffer */
>> int fatsize; /* Size of FAT in bits */
>> - __u16 fatlength; /* Length of FAT in sectors */
>> - __u16 fat_sect; /* Starting sector of the FAT */
>> - __u16 rootdir_sect; /* Start sector of root directory */
>> - __u16 sect_size; /* Size of sectors in bytes */
>> + __u32 fat_sect; /* Starting sector of the FAT */
>> + __u32 rootdir_sect; /* Start sector of root directory */
>> + __u32 fatlength; /* Length of FAT in sectors */
>> __u16 clust_size; /* Size of clusters in sectors */
>> - short data_begin; /* The sector of the first cluster, can be negative */
>> + __u16 sect_size; /* Size of sectors in bytes */
>> + int data_begin; /* The sector of the first cluster, can be negative */
>> int fatbufnum; /* Used by get_fatent, init to -1 */
>> } fsdata;
> The patch is probably corrupted by your mailer, it doesn't apply.
>
> Thanks,
> Anatolij
>
Unfortunately our outbound Exchange mail server tends to "fix" mail
formatting making patch submission rather difficult.
I'll see what I can do to try and bypass it.
-Aaron
--
Aaron Williams
Software Engineer
Cavium, Inc.
(408) 943-7198 (510) 789-8988 (cell)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] fat: fix FAT sector offsets overflow on large FAT partitions
2012-05-03 2:17 [U-Boot] [PATCH 1/1] fat: FAT sector offsets overflow on large disks and/or FAT partitions Aaron Williams
2012-05-08 2:10 ` Aaron Williams
2012-05-12 15:41 ` Anatolij Gustschin
@ 2012-05-19 17:20 ` Anatolij Gustschin
2012-05-22 8:14 ` Wolfgang Denk
2 siblings, 1 reply; 6+ messages in thread
From: Anatolij Gustschin @ 2012-05-19 17:20 UTC (permalink / raw)
To: u-boot
From: Aaron Williams <aaron.williams@caviumnetworks.com>
This patch fixes several issues where sector offsets can overflow due
to being limited to 16-bits. The cases where an overflow can happen
when accessing large FAT32 partitions are:
- length of FAT in sectors
- start sector of root directory
- the sector of the first cluster
These issues were observed when reading files from a 64GB FAT32
filesystem.
Signed-off-by: Aaron Williams <aaron.williams@caviumnetworks.com>
Tested-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Anatolij Gustschin <agust@denx.de>
---
include/fat.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/fat.h b/include/fat.h
index 4c92442..f1b4a0d 100644
--- a/include/fat.h
+++ b/include/fat.h
@@ -178,12 +178,12 @@ typedef struct dir_slot {
typedef struct {
__u8 *fatbuf; /* Current FAT buffer */
int fatsize; /* Size of FAT in bits */
- __u16 fatlength; /* Length of FAT in sectors */
+ __u32 fatlength; /* Length of FAT in sectors */
__u16 fat_sect; /* Starting sector of the FAT */
- __u16 rootdir_sect; /* Start sector of root directory */
+ __u32 rootdir_sect; /* Start sector of root directory */
__u16 sect_size; /* Size of sectors in bytes */
__u16 clust_size; /* Size of clusters in sectors */
- short data_begin; /* The sector of the first cluster, can be negative */
+ int data_begin; /* The sector of the first cluster, can be negative */
int fatbufnum; /* Used by get_fatent, init to -1 */
} fsdata;
--
1.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] fat: fix FAT sector offsets overflow on large FAT partitions
2012-05-19 17:20 ` [U-Boot] [PATCH] fat: fix FAT sector offsets overflow on large " Anatolij Gustschin
@ 2012-05-22 8:14 ` Wolfgang Denk
0 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2012-05-22 8:14 UTC (permalink / raw)
To: u-boot
Dear Anatolij Gustschin,
In message <1337448040-7902-1-git-send-email-agust@denx.de> you wrote:
> From: Aaron Williams <aaron.williams@caviumnetworks.com>
>
> This patch fixes several issues where sector offsets can overflow due
> to being limited to 16-bits. The cases where an overflow can happen
> when accessing large FAT32 partitions are:
>
> - length of FAT in sectors
> - start sector of root directory
> - the sector of the first cluster
>
> These issues were observed when reading files from a 64GB FAT32
> filesystem.
>
> Signed-off-by: Aaron Williams <aaron.williams@caviumnetworks.com>
> Tested-by: Anatolij Gustschin <agust@denx.de>
> Signed-off-by: Anatolij Gustschin <agust@denx.de>
> ---
> include/fat.h | 6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
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
The face of war has never changed. Surely it is more logical to heal
than to kill.
-- Surak of Vulcan, "The Savage Curtain", stardate 5906.5
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-05-22 8:14 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-03 2:17 [U-Boot] [PATCH 1/1] fat: FAT sector offsets overflow on large disks and/or FAT partitions Aaron Williams
2012-05-08 2:10 ` Aaron Williams
2012-05-12 15:41 ` Anatolij Gustschin
2012-05-14 22:54 ` Aaron Williams
2012-05-19 17:20 ` [U-Boot] [PATCH] fat: fix FAT sector offsets overflow on large " Anatolij Gustschin
2012-05-22 8:14 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox