2 * fat-handler - FAT12/16/32 filesystem handler
4 * Copyright © 2006 Marek Szyprowski
5 * Copyright © 2007-2015 The AROS Development Team
7 * This program is free software; you can redistribute it and/or modify it
8 * under the same terms as AROS itself.
13 #define FAT_MAX_SHORT_NAME 11
14 #define FAT_MAX_LONG_FILENAME 0xff
21 UBYTE bs_vollab
[FAT_MAX_SHORT_NAME
];
22 UBYTE bs_filsystype
[8];
23 } __attribute__ ((__packed__
));
25 struct FATBootSector
{
28 UWORD bpb_bytes_per_sect
;
29 UBYTE bpb_sect_per_clust
;
30 UWORD bpb_rsvd_sect_count
;
32 UWORD bpb_root_entries_count
;
33 UWORD bpb_total_sectors_16
;
35 UWORD bpb_fat_size_16
;
36 UWORD bpb_sect_per_track
;
38 ULONG bpb_hidden_sect
;
39 ULONG bpb_total_sectors_32
;
44 ULONG bpb_fat_size_32
;
47 ULONG bpb_root_cluster
;
49 UWORD bpb_back_bootsec
;
50 UBYTE bpb_reserved
[12];
52 } __attribute__ ((__packed__
)) ebpb32
;
55 UBYTE bpb_signature
[2];
56 } __attribute__ ((__packed__
));
66 } __attribute__ ((__packed__
));
68 #define FSI_LEAD_SIG 0x41615252
69 #define FSI_STRUCT_SIG 0x61417272
70 #define FSI_TRAIL_SIG 0xaa550000
73 UBYTE name
[FAT_MAX_SHORT_NAME
];
76 UBYTE create_time_tenth
;
79 UWORD last_access_date
;
80 UWORD first_cluster_hi
;
83 UWORD first_cluster_lo
;
85 } __attribute__ ((__packed__
));
87 #define ATTR_READ_ONLY 0x01
88 #define ATTR_HIDDEN 0x02
89 #define ATTR_SYSTEM 0x04
90 #define ATTR_VOLUME_ID 0x08
91 #define ATTR_DIRECTORY 0x10
92 #define ATTR_ARCHIVE 0x20
94 #define ATTR_LONG_NAME (ATTR_READ_ONLY | ATTR_HIDDEN | ATTR_SYSTEM | ATTR_VOLUME_ID)
95 #define ATTR_LONG_NAME_MASK (ATTR_READ_ONLY | ATTR_HIDDEN | ATTR_SYSTEM | ATTR_VOLUME_ID | ATTR_DIRECTORY | ATTR_ARCHIVE)
96 #define ATTR_VOLUME_ID_MASK (ATTR_READ_ONLY | ATTR_HIDDEN | ATTR_SYSTEM | ATTR_VOLUME_ID | ATTR_DIRECTORY)
98 struct FATLongDirEntry
{
105 UWORD first_cluster_lo
;
107 } __attribute__ ((__packed__
));