os/kernelhwsrv/userlibandfileserver/fileserver/sfat32/inc/sl_bpb.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// f32\sfat32\inc\sl_bpb.h
sl@0
    15
// @file
sl@0
    16
// @internalTechnology
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
sl@0
    21
sl@0
    22
#ifndef SL_BPB_H 
sl@0
    23
#define SL_BPB_H
sl@0
    24
sl@0
    25
#include "filesystem_fat.h"
sl@0
    26
using FileSystem_FAT::TFatSubType;
sl@0
    27
typedef TFatSubType TFatType;
sl@0
    28
sl@0
    29
sl@0
    30
const TInt KVolumeLabelSize			=11;    ///< Volume lable size
sl@0
    31
const TInt KFileSysTypeSize			=8;     ///< File system type parameter size
sl@0
    32
const TInt KVendorIdSize			=8;     ///< Vendor ID parameter size
sl@0
    33
const TInt KBootSectorSignature		=0xAA55;///< File system Boot sector signiture
sl@0
    34
const TInt KFat16VolumeLabelPos 	=43;    ///< Position of volume lable in BPB for Fat12/16
sl@0
    35
const TInt KFat32VolumeLabelPos		=71;    ///< Position of volume lable in BPB for Fat32
sl@0
    36
const TInt KSizeOfFatBootSector     = 90;   ///< Size in bytes of Boot sector parameter block (BPB) 
sl@0
    37
sl@0
    38
const TUint32 KBootSectorNum        =0;     ///< Main Boot Sector number (always 0)
sl@0
    39
const TUint32 KFSInfoSectorNum      =1;     ///< Main FSInfo sector number. This is a default value. The actual value shall be taken from the BPB
sl@0
    40
const TUint32 KReservedBootSectorNum=2;		///< Reserved Boot Sector (always 2)
sl@0
    41
sl@0
    42
const TUint32 KBkBootSectorNum      =6;     ///< Backup Boot Sector number (must be 6 by default)
sl@0
    43
const TUint32 KBkFSInfoSectorNum    =KBkBootSectorNum+1;     ///< Backup FSInfo sector number, follows the backup bpb sector
sl@0
    44
const TUint32 KBkReservedBootSectorNum=KBkBootSectorNum+2;	///< Backup Reserved Boot Sector number, follows the backup FSInfo sector number
sl@0
    45
sl@0
    46
sl@0
    47
sl@0
    48
//-------------------------------------------------------------------------------------------------------------------
sl@0
    49
sl@0
    50
/**
sl@0
    51
Boot sector parameter block, enables access to all file system parameters.
sl@0
    52
Data is populated at mount time from the BPB sector
sl@0
    53
*/
sl@0
    54
class TFatBootSector
sl@0
    55
	{
sl@0
    56
public:
sl@0
    57
	//-- simple getters / setters
sl@0
    58
    inline const TPtrC8 VendorId() const;
sl@0
    59
	inline TUint16 BytesPerSector() const;
sl@0
    60
	inline TInt SectorsPerCluster() const;
sl@0
    61
	inline TInt ReservedSectors() const;
sl@0
    62
	inline TInt NumberOfFats() const;
sl@0
    63
	inline TInt RootDirEntries() const;
sl@0
    64
	inline TInt TotalSectors() const;
sl@0
    65
	inline TUint8 MediaDescriptor() const;
sl@0
    66
	inline TInt FatSectors() const;
sl@0
    67
	inline TInt SectorsPerTrack() const;
sl@0
    68
	inline TInt NumberOfHeads() const;
sl@0
    69
	inline TInt HiddenSectors() const;
sl@0
    70
	inline TInt HugeSectors() const;
sl@0
    71
	inline TInt PhysicalDriveNumber() const;
sl@0
    72
	inline TInt ExtendedBootSignature() const;
sl@0
    73
	inline TUint32 UniqueID() const;
sl@0
    74
	inline const TPtrC8 VolumeLabel() const;
sl@0
    75
	inline const TPtrC8 FileSysType() const;
sl@0
    76
	inline TInt BootSectorSignature() const;
sl@0
    77
	inline TUint32 FatSectors32() const;	
sl@0
    78
	inline TUint16 FATFlags() const;		
sl@0
    79
	inline TUint16 VersionNumber() const;		
sl@0
    80
	inline TUint32 RootClusterNum() const;	
sl@0
    81
	inline TUint16 FSInfoSectorNum() const;
sl@0
    82
	inline TUint16 BkBootRecSector() const;
sl@0
    83
sl@0
    84
	inline void SetJumpInstruction();
sl@0
    85
	inline void SetVendorID(const TDesC8& aDes);
sl@0
    86
	inline void SetBytesPerSector(TInt aBytesPerSector);
sl@0
    87
	inline void SetSectorsPerCluster(TInt aSectorsPerCluster);
sl@0
    88
	inline void SetReservedSectors(TInt aReservedSectors);
sl@0
    89
	inline void SetNumberOfFats(TInt aNumberOfFats);
sl@0
    90
	inline void SetRootDirEntries(TInt aRootDirEntries);
sl@0
    91
	inline void SetTotalSectors(TInt aTotalSectors);
sl@0
    92
	inline void SetMediaDescriptor(TUint8 aMediaDescriptor);
sl@0
    93
	inline void SetFatSectors(TInt aFatSectors);
sl@0
    94
	inline void SetSectorsPerTrack(TInt aSectorsPerTrack);
sl@0
    95
	inline void SetNumberOfHeads(TInt aNumberOfHeads);
sl@0
    96
	inline void SetHiddenSectors(TUint32 aHiddenSectors);
sl@0
    97
	inline void SetHugeSectors(TUint32 aTotalSectors);
sl@0
    98
	inline void SetPhysicalDriveNumber(TInt aPhysicalDriveNumber);
sl@0
    99
	inline void SetReservedByte(TUint8 aReservedByte);
sl@0
   100
	inline void SetExtendedBootSignature(TInt anExtendedBootSignature);
sl@0
   101
	inline void SetUniqueID(TUint32 anUniqueID);
sl@0
   102
	inline void SetVolumeLabel(const TDesC8& aDes);
sl@0
   103
	inline void SetFileSysType(const TDesC8& aDes);
sl@0
   104
	inline void SetFatSectors32(TUint32	aFatSectors32);	
sl@0
   105
	inline void SetFATFlags(TUint16 aFATFlags);		
sl@0
   106
	inline void SetVersionNumber(TUint16	aVersionNumber);		
sl@0
   107
	inline void SetRootClusterNum(TUint32 aRootCusterNum);	
sl@0
   108
	inline void SetFSInfoSectorNum(TUint16 aFSInfoSectorNum);
sl@0
   109
	inline void SetBkBootRecSector(TUint16 aBkBootRecSector);
sl@0
   110
sl@0
   111
public:
sl@0
   112
    TFatBootSector();
sl@0
   113
    
sl@0
   114
    void Initialise();
sl@0
   115
    TBool IsValid() const;
sl@0
   116
    TFatType FatType(void) const;
sl@0
   117
sl@0
   118
    void Internalize(const TDesC8& aBuf);
sl@0
   119
    void Externalize(TDes8& aBuf) const;
sl@0
   120
	void PrintDebugInfo() const;
sl@0
   121
sl@0
   122
    //-- more advanced API, works for all FAT types
sl@0
   123
    TInt FirstFatSector() const;
sl@0
   124
    TInt RootDirStartSector() const;
sl@0
   125
	TInt FirstDataSector() const;
sl@0
   126
    
sl@0
   127
    TUint32 VolumeTotalSectorNumber() const;
sl@0
   128
    TUint32 TotalFatSectors() const;
sl@0
   129
    TUint32 RootDirSectors() const;
sl@0
   130
sl@0
   131
protected:
sl@0
   132
sl@0
   133
    TUint8  iJumpInstruction[3];            ///< +0         Jump instruction used for bootable volumes
sl@0
   134
    TUint8  iVendorId[KVendorIdSize];       ///< +3         Vendor ID of the file system that formatted the volume
sl@0
   135
    TUint16 iBytesPerSector;                ///< +11/0x0b   Bytes per sector 
sl@0
   136
    TUint8  iSectorsPerCluster;             ///< +13/0x0d   Sectors per cluster ratio
sl@0
   137
    TUint16 iReservedSectors;               ///< +14/0x0e   Number of reserved sectors on the volume
sl@0
   138
    TUint8  iNumberOfFats;                  ///< +16/0x10   Number of Fats on the volume
sl@0
   139
    TUint16 iRootDirEntries;	            ///< +17/0x11   Number of entries allowed in the root directory, specific to Fat12/16, zero for FAT32
sl@0
   140
    TUint16 iTotalSectors;                  ///< +19/0x13   Total sectors on the volume, zero for FAT32
sl@0
   141
    TUint8  iMediaDescriptor;               ///< +12/0x15   Media descriptor
sl@0
   142
    TUint16 iFatSectors;                    ///< +22/0x16   Sectors used for the Fat table, zero for FAT32
sl@0
   143
    TUint16 iSectorsPerTrack;               ///< +24/0x18   Sectors per track
sl@0
   144
    TUint16 iNumberOfHeads;                 ///< +26/0x1a   Number of heads 
sl@0
   145
    TUint32 iHiddenSectors;                 ///< +28/0x1c   Number of hidden sectors in the volume
sl@0
   146
    TUint32 iHugeSectors;                   ///< +32/0x20   Total sectors in the volume, Used if totalSectors > 65535
sl@0
   147
	TUint32	iFatSectors32;                  ///< +36/0x24   Start of additional elements @ offset 36 for FAT32, Sectors in Fat table for 32 bit volume
sl@0
   148
	TUint16 iFATFlags;                      ///< +40/0x28   Fat flags
sl@0
   149
	TUint16	iVersionNumber;		            ///< +42/0x2a   Version number of the file system
sl@0
   150
	TUint32 iRootClusterNum;                ///< +44/0x2c   Cluster number of the root directory
sl@0
   151
	TUint16 iFSInfoSectorNum;               ///< +48/0x30   Sector number containing the FSIInfo structure
sl@0
   152
	TUint16 iBkBootRecSector;               ///< +50/0x32   Backup boot sector
sl@0
   153
	TUint8	iReserved2[12];                 ///< +52/0x34   Reserved space, End of Fat32 Only parameters section
sl@0
   154
	TUint8  iPhysicalDriveNumber;           ///< +64/0x40   Physical drive number, not used in Symbian OS
sl@0
   155
    TUint8  iReserved;                      ///< +65/0x41   Reserved byte
sl@0
   156
    TUint8  iExtendedBootSignature;         ///< +66/0x42   Extended boot signiture
sl@0
   157
    TUint32 iUniqueID;                      ///< +67/0x43   Unique volume ID
sl@0
   158
    TUint8  iVolumeLabel[KVolumeLabelSize]; ///< +71/0x47   The volume's label
sl@0
   159
	TUint8  iFileSysType[KFileSysTypeSize]; ///< +82/0x52   File system type
sl@0
   160
	};
sl@0
   161
sl@0
   162
sl@0
   163
sl@0
   164
sl@0
   165
//-------------------------------------------------------------------------------------------------------------------
sl@0
   166
sl@0
   167
const TUint32	KSizeOfFSInfo	    = 0x200; ///< Size in bytes of the FSInfo structures
sl@0
   168
const TUint32	KFSInfoReserved1Size= 480;   ///< Size of first reserved area in FSInfo
sl@0
   169
const TUint32	KFSInfoReserved2Size= 12;    ///< Size of second reserved area in FSInfo
sl@0
   170
sl@0
   171
/**
sl@0
   172
TFSinfo hold the File system information comprising the free cluster count
sl@0
   173
and next free cluster. It is found in the sector after the BPB and contains
sl@0
   174
several identification signitures along with resverved space. It is not
sl@0
   175
mandatory to support this feature.
sl@0
   176
*/
sl@0
   177
class TFSInfo
sl@0
   178
	{
sl@0
   179
sl@0
   180
public:
sl@0
   181
	TFSInfo();
sl@0
   182
sl@0
   183
    void  Initialise();  
sl@0
   184
    TBool IsValid() const;
sl@0
   185
    void Internalize(const TDesC8& aBuf);
sl@0
   186
    void Externalize(TDes8& aBuf) const;
sl@0
   187
	void PrintDebugInfo() const;
sl@0
   188
sl@0
   189
public:
sl@0
   190
sl@0
   191
    inline TUint32 FreeClusterCount() const;
sl@0
   192
	inline TUint32 NextFreeCluster() const;
sl@0
   193
sl@0
   194
	inline void SetFreeClusterCount(TUint32 aFreeCount);
sl@0
   195
	inline void SetNextFreeCluster(TUint32 aNextCluster);
sl@0
   196
sl@0
   197
protected:
sl@0
   198
	TUint32 iLeadSig;                           ///< +0         lead in signature, should always equal 0x41615252
sl@0
   199
	TUint8	iReserved1[KFSInfoReserved1Size];   ///< +4         First reserved region of 480 bytes
sl@0
   200
	TUint32 iStructureSig;                      ///< +484/0x1e4 Structure signature, should equal 0x61417272
sl@0
   201
	TUint32 iFreeCount;                         ///< +488/0x1e8 last known free cluster count
sl@0
   202
	TUint32 iNextFree;                          ///< +492/0x1ec hint to file system as to where to start looking for free clusters
sl@0
   203
	TUint8	iReserved2[KFSInfoReserved2Size];   ///< +496/0x1f0 Second reserved region of 12 bytes
sl@0
   204
	TUint32	iTrainlingSig;                      ///< +508/0x1fc Trailing Signature (Bytes 510 and 511 = 55 and AA respectively)
sl@0
   205
	};
sl@0
   206
sl@0
   207
sl@0
   208
sl@0
   209
#endif //SL_BPB_H