Update contrib.
1 // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // f32\sfat\inc\sl_std.h
23 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
24 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26 //!! WARNING!! DO NOT edit this file !! '\sfat' component is obsolete and is not being used. '\sfat32'replaces it
28 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
36 // #define _DEBUG_RELEASE
42 #include <kernel/localise.h>
43 #include "filesystem_fat.h"
45 #include "common_constants.h"
47 #include "fat_config.h"
48 #include "fat_dir_entry.h"
50 using namespace FileSystem_FAT;
53 _LIT(KThisFsyName,"EFAT.FSY"); ///< This FSY name
60 Represents the position of a directory entery in terms of a cluster and off set into it
66 TEntryPos(TInt aCluster,TUint aPos) : iCluster(aCluster), iPos(aPos) {}
68 inline TUint32 Cluster() const;
69 inline TUint32 Pos() const;
70 inline TBool operator==(const TEntryPos& aRhs) const;
79 Interface class between the file system and the local drive media interface,
80 handles incomplete writes to media with the ability to notify the user.
81 This class can't be instantinated by user; only CFatMountCB can do this; see CFatMountCB::DriveInterface()
84 class TFatDriveInterface
87 enum TAction {ERetry=1};
91 //-- public interface to the local drive. Provides media driver's error handling (critical and non-critical user notifiers)
92 //-- and thread-safety if required.
93 TInt ReadNonCritical(TInt64 aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2 &aMessage,TInt anOffset) const;
94 TInt ReadNonCritical(TInt64 aPos,TInt aLength,TDes8& aTrg) const;
95 TInt ReadCritical(TInt64 aPos,TInt aLength,TDes8& aTrg) const;
97 TInt WriteCritical(TInt64 aPos,const TDesC8& aSrc);
98 TInt WriteNonCritical(TInt64 aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2 &aMessage,TInt anOffset);
100 TInt GetLastErrorInfo(TDes8& aErrorInfo) const;
102 //-- lock the mutex guarding CProxyDrive interface in order to be sure that no other thread can access it.
103 //-- The thread that calls this method may be suspended until another signals the mutex, i.e. leaves the critical section.
104 inline void AcquireLock() const {} //-- dummy
106 //-- release the mutex guarding CProxyDrive.
107 inline void ReleaseLock() const {} //-- dummy
111 TFatDriveInterface();
112 TFatDriveInterface(const TFatDriveInterface&);
113 TFatDriveInterface& operator=(const TFatDriveInterface&);
115 TBool Init(CFatMountCB* aMount);
118 inline TBool NotifyUser() const;
119 TInt HandleRecoverableError(TInt aRes) const;
120 TInt HandleCriticalError(TInt aRes) const;
121 TInt UnlockAndReMount() const;
122 TBool IsDriveWriteProtected() const;
123 TBool IsRecoverableRemount() const;
128 An internal class that represents a thread-safe wrapper around raw interface to the CProxyDrive
129 and restricts access to it.
131 class XProxyDriveWrapper
135 XProxyDriveWrapper();
136 ~XProxyDriveWrapper();
138 TBool Init(CProxyDrive* aProxyDrive);
140 inline void EnterCriticalSection() const {} //-- dummy
141 inline void LeaveCriticalSection() const {} //-- dummy
143 //-- methods' wrappers that are used by TFatDriveInterface
144 TInt Read(TInt64 aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2 &aMessage,TInt anOffset) const;
145 TInt Read(TInt64 aPos,TInt aLength,TDes8& aTrg) const;
146 TInt Write(TInt64 aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2 &aMessage,TInt anOffset);
147 TInt Write(TInt64 aPos, const TDesC8& aSrc);
148 TInt GetLastErrorInfo(TDes8& aErrorInfo) const;
149 TInt Caps(TDes8& anInfo) const;
153 CProxyDrive* iLocalDrive; ///< raw interface to the media operations
154 mutable RMutex iLock; ///< used for sorting out multithreaded access to the iLocalDrive
157 CFatMountCB* iMount; ///< Pointer to the owning file system mount
158 XProxyDriveWrapper iProxyDrive; ///< wrapper around raw interface to the media operations
165 Class providing FAT table interface and basic functionality.
167 class CFatTable : public CBase
170 static CFatTable* NewL(CFatMountCB& aOwner, const TLocalDriveCaps& aLocDrvCaps);
172 virtual ~CFatTable();
174 /** Empty and deallocate the cache*/
175 virtual void Dismount(TBool /*aDiscardDirtyData*/) {}
177 /** Flush data cahed data to the media */
178 virtual void FlushL() {};
181 Invalidate specified region of the FAT cache
182 Depending of cache type this may just mark part of the cache invalid with reading on demand later
183 or re-read whole cache from the media.
185 @param aPos absolute media position where the region being invalidated starts.
186 @param aLength length in bytes of region to invalidate / refresh
188 virtual void InvalidateCacheL(TInt64 /*aPos*/,TUint32 /*aLength*/) {};
192 Invalidate whole FAT cache.
193 Depending of cache type this may just mark cache invalid with reading on demand or re-read whole cache from the media
195 virtual void InvalidateCacheL() {};
199 Gets the next cluster in a cluster chain
201 @param aCluster Cluster number to start lookup. On return contains number of the next cluster.
202 @return EFalse if cluster is at the end of a cluster chain
204 virtual TBool GetNextClusterL(TInt& aCluster) const;
207 Writes end of cluster chain
208 @param aFatIndex index in Fat table where EOF will be written to.
210 virtual void WriteFatEntryEofL(TUint32 aFatIndex);
213 Read an entry from the FAT.
215 @param aFatIndex aFatIndex index in Fat table
216 @return value of the FAT entry number aFatIndex
218 virtual TUint32 ReadL(TUint32 aFatIndex) const = 0;
221 Write FAT entry to FAT by its index.
223 @param aFatIndex index in FAT
224 @param aValue value to write
226 virtual void WriteL(TUint32 aFatIndex, TUint32 aValue) = 0;
229 return the byte position of a cluster in the fat table
231 @param aCluster cluster to find position of
232 @return byte position of the cluster
234 virtual TInt64 DataPositionInBytes(TUint32 aCluster) const = 0;
236 virtual void FreeClusterListL(TUint32 aCluster);
237 virtual void ExtendClusterListL(TUint32 aNumber,TInt& aCluster);
238 virtual TUint32 AllocateSingleClusterL(TUint32 aNearestCluster);
239 virtual TUint32 AllocateClusterListL(TUint32 aNumber,TUint32 aNearestCluster);
240 virtual void CountFreeClustersL();
242 virtual void RequestRawWriteAccess(TInt64 /*aPos*/, TUint32 /*aLen*/) const {};
247 void MarkAsBadClusterL(TUint32 aCluster);
248 TInt CountContiguousClustersL(TUint32 aStartCluster,TInt& anEndCluster, TUint32 aMaxCount) const;
250 virtual TUint32 FreeClusterHint() const;
251 virtual void SetFreeClusterHint(TUint32 aCluster);
253 virtual TUint32 NumberOfFreeClusters(TBool aSyncOperation=EFalse) const;
254 virtual void SetFreeClusters(TUint32 aFreeClusters);
256 virtual TBool RequestFreeClusters(TUint32 aClustersRequired) const;
258 inline TUint32 MaxEntries() const;
259 virtual void InitializeL();
260 virtual TBool ConsistentState() const {return ETrue;} //-- dummy
263 CFatTable(CFatMountCB& aOwner);
267 CFatTable(const CFatTable&);
268 CFatTable& operator=(const CFatTable&);
272 void DecrementFreeClusterCount(TUint32 aCount);
273 void IncrementFreeClusterCount(TUint32 aCount);
275 inline TUint32 FreeClusters() const;
277 inline TBool IsEof16Bit(TInt aCluster) const;
278 inline TBool IsEof12Bit(TInt aCluster) const;
279 inline TInt SectorSizeLog2() const;
280 inline TFatType FatType() const;
282 TUint32 PosInBytes(TUint32 aFatIndex) const;
283 TUint32 FindClosestFreeClusterL(TUint32 aCluster);
285 inline TBool IsFat12() const;
286 inline TBool IsFat16() const;
288 inline TBool ClusterNumberValid(TUint32 aClusterNo) const;
290 typedef RArray<TUint> RClusterArray;
291 void DoFreedClustersNotify(RClusterArray &aFreedClusters);
296 CFatMountCB* iOwner; ///< Owning file system mount
297 TUint iMediaAtt; ///< Cached copy of TLocalDriveCaps::iMediaAtt
301 TUint32 iFreeClusters; ///< Number of free cluster in the fat table
302 TUint32 iFreeClusterHint; ///< Next free custer in the fat table, just for use in TFsInfo; This is just a hint, not required to contain exact information.
303 TFatType iFatType; ///< FAT type 12/16/32, cached from the iOwner
304 TUint32 iMaxEntries; ///< maximal number of FAT entries in the table. This value is taken from the CFatMount that calculates it
309 class MWTCacheInterface;
312 //---------------------------------------------------------------------------------------------------------------------------------
315 Base class abstraction of a raw media disk
317 class CRawDisk : public CBase
321 static CRawDisk* NewL(CFatMountCB& aOwner, const TLocalDriveCaps& aLocDrvCaps);
323 virtual void InitializeL();
325 virtual TInt GetLastErrorInfo(TDes8& aErrorInfo) const;
329 Read data from the media via simple WT data cache if it is present. Some media types, like RAM do not have caches.
330 This method is mostly used to read UIDs of executable modules and store them in the cache.
332 @param aPos Media position in bytes
333 @param aLength Length in bytes of read
334 @param aDes Data from read
336 virtual void ReadCachedL(TInt64 aPos,TInt aLength,TDes8& aDes) const = 0;
339 Write data to the media via simple WT data cache if it is present. Some media types, like RAM do not have caches.
340 @param aPos Media position in bytes
341 @param aDes Data to write
343 virtual void WriteCachedL(TInt64 aPos,const TDesC8& aDes) = 0;
345 virtual void InvalidateUidCache() {}
346 virtual void InvalidateUidCachePage(TUint64 /*aPos*/) {}
352 @param aPos Media position in bytes
353 @param aLength Length in bytes of read
354 @param aTrg Pointer to the data descriptor, i.e. (const TAny*)(&TDes8)
355 @param aMessage Refrence to server message from request
356 @param anOffset Offset into read data to write
358 virtual void ReadL(TInt64 aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2 &aMessage,TInt anOffset) const = 0;
363 @param aPos Media position in bytes
364 @param aLength Length in bytes of write
365 @param aTrg Pointer to the data descriptor, i.e. (const TAny*)(&TDes8)
366 @param aMessage Refrence to server message from request, contains data
367 @param anOffset Offset into write data to use in write
369 virtual void WriteL(TInt64 aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2 &aMessage,TInt anOffset) = 0;
372 virtual inline MWTCacheInterface* DirCacheInterface();
379 CRawDisk(CFatMountCB& aOwner);
383 CRawDisk(const CRawDisk&);
384 CRawDisk& operator=(const CRawDisk&);
389 CFatMountCB* iFatMount; ///< Owning file system mount
399 A helper class. Holds the FAT volume parameters, which in turn are obtained from the Boot Sector
406 void Populate(const TFatBootSector& aBootSector);
407 TBool operator==(const TFatVolParam& aRhs) const;
410 TUint32 ClusterSizeLog2() const {return iClusterSizeLog2; }
411 TUint32 SectorSizeLog2() const {return iSectorSizeLog2; }
412 TUint32 RootDirEnd() const {return iRootDirEnd; }
413 TUint32 SectorsPerCluster() const {return iSectorsPerCluster; }
414 TUint32 RootDirectorySector() const {return iRootDirectorySector;}
415 TUint32 FirstFatSector() const {return iFirstFatSector; }
416 TUint32 TotalSectors() const {return iTotalSectors; }
417 TUint32 NumberOfFats() const {return iNumberOfFats; }
418 TUint32 FatSizeInBytes() const {return iFatSizeInBytes; }
419 TUint32 RootClusterNum() const {return iRootClusterNum; }
420 TUint32 FSInfoSectorNum() const {return iFSInfoSectorNum; }
421 TUint32 BkFSInfoSectorNum() const {return iBkFSInfoSectorNum; }
424 TUint32 iClusterSizeLog2; ///< Log2 of fat file system cluster size
425 TUint32 iSectorSizeLog2; ///< Log2 of media sector size
426 TUint32 iRootDirEnd; ///< End position of the root directory for Fat12/16
427 TUint32 iSectorsPerCluster; ///< Sector per cluster ratio for mounted Fat file system volume
428 TUint32 iRootDirectorySector; ///< Start sector of the root directory for Fat12/16
429 TUint32 iFirstFatSector; ///< Start sector of the first Fat table in volume
430 TUint32 iTotalSectors; ///< Total sectors on media partition
431 TUint32 iNumberOfFats; ///< Number of Fats the volume has
432 TUint32 iFatSizeInBytes; ///< Size of a single Fat table in volume
433 TUint32 iRootClusterNum; ///< Cluster number for Root directory, for Fat32
434 TUint32 iFSInfoSectorNum; ///< FSInfo Sector number. If 0, this means that corresponding value isn't set in BPB
435 TUint32 iBkFSInfoSectorNum; ///< backup FSInfo Sector number
438 TUint32 CalculatePageOffsetInCluster(TUint32 aPos, TUint aPageSzLog2);
443 Fat file system mount implmentation, provides all that is required of a plug in
444 file system mount as well as Fat mount specific functionality
446 class CFatMountCB : public CLocDrvMountCB,
447 public MFileSystemSubType,
448 public MFileSystemClusterSize,
449 public CMountCB::MFileAccessor
452 static CFatMountCB* NewL();
458 //-- overrides from the abstract CMountCB
459 void MountL(TBool aForceMount);
462 void VolumeL(TVolumeInfo& aVolume) const;
463 void SetVolumeL(TDes& aName);
464 void MkDirL(const TDesC& aName);
465 void RmDirL(const TDesC& aName);
466 void DeleteL(const TDesC& aName);
467 void RenameL(const TDesC& anOldName,const TDesC& anNewName);
468 void ReplaceL(const TDesC& anOldName,const TDesC& anNewName);
469 void EntryL(const TDesC& aName,TEntry& anEntry) const;
470 void SetEntryL(const TDesC& aName,const TTime& aTime,TUint aMask,TUint aVal);
471 void FileOpenL(const TDesC& aName,TUint aMode,TFileOpen anOpen,CFileCB* aFile);
472 void DirOpenL(const TDesC& aName,CDirCB* aDir);
473 void RawReadL(TInt64 aPos,TInt aLength,const TAny* aTrg,TInt anOffset,const RMessagePtr2& aMessage) const;
474 void RawWriteL(TInt64 aPos,TInt aLength,const TAny* aSrc,TInt anOffset,const RMessagePtr2& aMessage);
475 void GetShortNameL(const TDesC& aLongName,TDes& aShortName);
476 void GetLongNameL(const TDesC& aShortName,TDes& aLongName);
477 void ReadSectionL(const TDesC& aName,TInt aPos,TAny* aTrg,TInt aLength,const RMessagePtr2& aMessage);
480 TInt ControlIO(const RMessagePtr2& aMessage,TInt aCommand,TAny* aParam1,TAny* aParam2);
481 TInt Lock(TMediaPassword& aOld,TMediaPassword& aNew,TBool aStore);
482 TInt Unlock(TMediaPassword& aPassword,TBool aStore);
483 TInt ClearPassword(TMediaPassword& aPassword);
484 TInt ErasePassword();
485 TInt ForceRemountDrive(const TDesC8* aMountInfo,TInt aMountInfoMessageHandle,TUint aFlags);
487 void FinaliseMountL();
488 void FinaliseMountL(TInt aOperation, TAny* aParam1=NULL, TAny* aParam2=NULL);
489 TInt MountControl(TInt aLevel, TInt aOption, TAny* aParam);
490 TTimeIntervalSeconds TimeOffset() const;
494 /** CFatMountCB states */
497 ENotMounted = 0, ///< 0, initial state, not mounted (mount state is inconsistent)
498 EMounting, ///< 1, Mounting started (mount state is inconsistent)
499 EInit_R, ///< 2, Initialised and not written (mount state is Consistent)
500 EInit_W, ///< 3, Initialised and written (mount state is Consistent)
501 EFinalised, ///< 4, Finalised (mount state is Consistent)
502 EDismounted, ///< 5, Dismounted (mount state is inconsistent)
503 EInit_Forced, ///< 6, forcedly mounted, special case (mount state is inconsistent)
506 inline TFatMntState State() const;
507 inline void SetState(TFatMntState aState);
508 TInt OpenMountForWrite();
509 TInt IsFinalised(TBool& aFinalised);
512 A wrapper around TFatDriveInterface providing its instantination and destruction.
513 You must not create objects of this class, use DriveInterface() instead.
515 class XDriveInterface: public TFatDriveInterface
518 XDriveInterface() : TFatDriveInterface() {}
519 ~XDriveInterface() {Close();}
520 TBool Init(CFatMountCB* aMount) {return TFatDriveInterface::Init(aMount);}
525 enum TRenMode {EModeReplace,EModeRename};
527 TBool ConsistentState() const;
528 void CheckWritableL() const;
529 void CheckStateConsistentL() const;
531 inline TBool ReadOnly(void) const;
532 inline void SetReadOnly(TBool aReadOnlyMode);
533 inline TInt StartCluster(const TFatDirEntry & anEntry) const;
534 inline CRawDisk& RawDisk() const;
535 inline CFatFileSystem& FatFileSystem() const;
536 inline CFatTable& FAT() const;
537 inline TInt ClusterSizeLog2() const;
538 inline TInt SectorSizeLog2() const;
539 inline TInt TotalSectors() const;
540 inline TInt SectorsPerCluster() const;
541 inline TInt ClusterBasePosition() const;
542 inline TInt RootDirectorySector() const;
543 inline TUint RootDirEnd() const;
544 inline TUint32 RootClusterNum() const;
546 inline TFatType FatType() const;
547 inline TBool Is16BitFat() const;
548 inline TBool Is32BitFat() const {return EFalse;} //-- dummy
550 inline TUint32 MaxClusterNumber() const;
551 inline TInt StartOfFatInBytes() const;
552 inline TUint32 FirstFatSector() const;
554 inline TInt NumberOfFats() const;
555 inline TInt FatSizeInBytes() const;
556 inline TInt ClusterRelativePos(TInt aPos) const;
557 inline TUint StartOfRootDirInBytes() const;
558 inline TUint32 UsableClusters() const;
559 inline TBool IsBadCluster(TInt aCluster) const;
560 inline TBool IsRuggedFSys() const;
561 inline void SetRuggedFSys(TBool aVal);
563 inline TInt RootIndicator() const;
565 inline TBool IsRootDir(const TEntryPos &aEntry) const;
566 inline CAsyncNotifier* Notifier() const;
567 inline TFatDriveInterface& DriveInterface() const;
569 void ReadUidL(TInt aCluster,TEntry& anEntry) const;
571 void ReadDirEntryL(const TEntryPos& aPos,TFatDirEntry& aDirEntry) const;
572 void WriteDirEntryL(const TEntryPos& aPos,const TFatDirEntry& aDirEntry);
574 void DirReadL(const TEntryPos& aPos,TInt aLength,TDes8& aDes) const;
575 void DirWriteL(const TEntryPos& aPos,const TDesC8& aDes);
577 void ReadFromClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2& aMessage,TInt anOffset) const;
578 void WriteToClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2& aMessage,TInt anOffset, TInt& aBadcluster, TInt& aGoodcluster);
579 void MoveToNextEntryL(TEntryPos& aPos) const;
580 void MoveToDosEntryL(TEntryPos& aPos,TFatDirEntry& anEntry) const;
581 void EnlargeL(TInt aSize);
582 void ReduceSizeL(TInt aPos,TInt aLength);
587 void CheckIndirectionTableL(TInt& anEndCluster) const;
588 void DoRenameOrReplaceL(const TDesC& anOldName,const TDesC& aNewName,TRenMode aMode,TEntryPos& aNewPos);
589 void FindDosNameL(const TDesC& aName,TUint anAtt,TEntryPos& aDosEntryPos,TFatDirEntry& aDosEntry,TDes& aFileName,TInt anError) const;
592 TBool IsEndOfClusterCh(TInt aCluster) const;
593 void SetEndOfClusterCh(TInt &aCluster) const;
594 void InitializeRootEntry(TFatDirEntry & anEntry) const;
596 TInt64 MakeLinAddrL(const TEntryPos& aPos) const;
598 inline const TFatConfig& FatConfig() const;
599 TBool CheckVolumeTheSame();
601 void InvalidateLeafDirCache();
603 void BlockMapReadFromClusterListL(TEntryPos& aPos, TInt aLength, SBlockMapInfo& aInfo);
604 virtual TInt GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput);
605 virtual TInt GetFileUniqueId(const TDesC& aName, TInt64& aUniqueId);
606 virtual TInt Spare3(TInt aVal, TAny* aPtr1, TAny* aPtr2);
607 virtual TInt Spare2(TInt aVal, TAny* aPtr1, TAny* aPtr2);
608 virtual TInt Spare1(TInt aVal, TAny* aPtr1, TAny* aPtr2);
612 // interface extension implementation
613 virtual TInt SubType(TDes& aName) const;
614 virtual TInt ClusterSize() const;
618 /** An ad hoc internal helper object for using in DoFindL() method and its derivatives */
622 TFindHelper() {isInitialised = EFalse;}
623 void InitialiseL(const TDesC& aTargetName);
624 TBool MatchDosEntryName(const TUint8* apDosEntryName) const;
625 TBool TrgtNameIsLegalDos() const {ASSERT (isInitialised) ;return isLegalDosName;}
628 TFindHelper(const TFindHelper&);
629 TFindHelper& operator=(const TFindHelper&);
631 TPtrC iTargetName; ///< pointer to the aTargetName, used in DoRummageDirCacheL() as a parameter
633 TBool isInitialised :1; ///< ETrue if the object is initialised. It can be done only once.
634 TBool isLegalDosName :1; ///< ETrue if iTargetName is a legal DOS name
635 TShortName iShortName; ///< a short DOS name in XXXXXXXXYYY format generated from aTargetName
640 An ad hoc internal helper object for entry creations
642 class XFileCreationHelper
645 XFileCreationHelper();
646 ~XFileCreationHelper();
648 void InitialiseL(const TDesC& aTargetName);
649 TInt GetValidatedShortName(TShortName& aShortName) const;
650 void CheckShortNameCandidates(const TUint8* apDosEntryName);
652 // inline functions for sets and gets
653 // note all the get functions have been checked against initialisation status
654 inline TBool IsInitialised() const;
655 inline TUint16 NumOfAddingEntries() const;
656 inline TEntryPos EntryAddingPos()const;
657 inline TBool IsNewEntryPosFound() const;
658 inline TBool IsTrgNameLegalDosName() const;
660 inline void SetEntryAddingPos(const TEntryPos& aEntryPos);
661 inline void SetIsNewEntryPosFound(TBool aFound);
664 XFileCreationHelper(const XFileCreationHelper&);
665 XFileCreationHelper& operator=(const TFindHelper&);
668 TPtrC iTargetName; ///< pointer to hold the long file name of the target file
669 TUint16 iNumOfAddingEntries;///< calculated number of entries to add
670 TEntryPos iEntryAddingPos; ///< contains new entry position for adding if found any
671 TBool isNewEntryPosFound; ///< flags whether the position for new entries is found
672 TBool isInitialised :1; ///< flags whether the object is initialised
673 TBool isTrgNameLegalDosName :1; ///< flags whether the target file name is a valid Dos name
675 an array that holds short name candidates, prepared on initialisation.
677 RArray<TShortName> iShortNameCandidates;
681 TBool DoRummageDirCacheL(TUint anAtt,TEntryPos& aStartEntryPos,TFatDirEntry& aStartEntry,TEntryPos& aDosEntryPos,TFatDirEntry& aDosEntry,TDes& aFileName, const TFindHelper& aAuxParam, XFileCreationHelper* aFileCreationHelper, const TLeafDirData& aLeafDirData) const;
682 TBool DoFindL(const TDesC& aName,TUint anAtt,TEntryPos& aStartEntryPos,TFatDirEntry& aStartEntry,TEntryPos& aDosEntryPos,TFatDirEntry& aDosEntry,TDes& aFileName,TInt anError, XFileCreationHelper* aFileCreationHelper, const TLeafDirData& aLeafDirData) const;
683 void FindEntryStartL(const TDesC& aName,TUint anAtt,TFatDirEntry& anEntry,TEntryPos& aPos, XFileCreationHelper* aFileCreationHelper) const;
685 void FindEntryStartL(const TDesC& aName,TUint anAtt,TFatDirEntry& anEntry,TEntryPos& aPos) const;
687 void CheckFatForLoopsL(const TFatDirEntry& anEntry) const;
688 void DoCheckFatForLoopsL(TInt aCluster,TInt& aPreviousCluster,TInt& aChangePreviousCluster,TInt& aCount) const;
689 void InitializeL(const TLocalDriveCaps& aLocDrvCaps, TBool aIgnoreFSInfo=EFalse);
690 void DoReadFromClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aTrg,const RMessagePtr2& aMessage,TInt anOffset) const;
691 void DoWriteToClusterListL(TEntryPos& aPos,TInt aLength,const TAny* aSrc,const RMessagePtr2& aMessage,TInt anOffset, TInt aLastcluster, TInt& aBadcluster, TInt& aGoodcluster);
692 TBool IsUniqueNameL(const TShortName& aName,TInt aDirCluster);
693 TBool FindShortNameL(const TShortName& aName,TEntryPos& anEntryPos);
694 void ReplaceClashingNameL(const TShortName& aNewName,const TEntryPos& anEntryPos);
695 TBool GenerateShortNameL(TInt aDirCluster,const TDesC& aLongName,TShortName& aShortName, TBool aForceRandomize=EFalse);
696 TInt FindLeafDirL(const TDesC& aName, TLeafDirData& aLeafDir) const;
698 TInt GetDirEntry(TEntryPos& aPos,TFatDirEntry& aDosEntry,TFatDirEntry& aStartEntry,TDes& aLongFileName) const;
699 TBool DoGetDirEntryL(TEntryPos& aPos,TFatDirEntry& aDosEntry,TFatDirEntry& aStartEntry,TDes& aLongFileName) const;
701 void WriteDirEntryL(TEntryPos& aPos,const TFatDirEntry& aFatDirEntry,const TDesC& aLongFileName);
702 void EraseDirEntryL(TEntryPos aPos,const TFatDirEntry& anEntry);
703 void EraseDirEntryL(const TEntryPos& aPos);
704 void InitializeFirstDirClusterL(TInt aCluster,TInt aParentCluster);
705 void AddDirEntryL(TEntryPos& aPos,TInt aNameLength);
706 void ZeroDirClusterL(TInt aCluster);
708 TInt DoWriteBootSector(TInt64 aMediaPos, const TFatBootSector& aBootSector) const;
709 TInt DoReadBootSector(TInt64 aMediaPos, TFatBootSector& aBootSector) const;
710 TInt ReadBootSector(TFatBootSector& aBootSector, TBool aDoNotReadBkBootSec=EFalse);
712 TBool IsDirectoryEmptyL(TInt aCluster);
713 void ExtendClusterListZeroedL(TInt aNumber,TInt& aCluster);
714 void WritePasswordData();
716 void WriteVolumeLabelL(const TDesC8& aVolumeLabel) const;
717 TInt ReadVolumeLabelFile(TDes8& aLabel);
718 void WriteVolumeLabelFileL(const TDesC8& aNewName);
719 void FindVolumeLabelFileL(TDes8& aLabel, TEntryPos& aDosEntryPos, TFatDirEntry& aDosEntry);
720 void GetVolumeLabelFromDiskL(const TFatBootSector& aBootSector);
721 void TrimVolumeLabel(TDes8& aLabel) const;
723 TInt DoRunScanDrive();
724 TBool VolumeCleanL();
725 void SetVolumeCleanL(TBool aClean);
726 TBool VolCleanFlagSupported() const;
728 void DoUpdateFSInfoSectorsL(TBool) {return;} //-- dummy, only FAT32 has FSInfo sector
729 void UnFinaliseMountL();
734 TBool ValidClusterNumber(TUint32 aCluster) const;
735 void CheckUnvisitedClustersL(const RBitVector& aFatBitVec) const;
736 TInt WalkClusterListL(RBitVector& aFatBitVec, TInt aCluster);
737 void ChkEntryL(RBitVector& aFatBitVec, const TFatDirEntry& anEntry);
738 void ChkDirL(RBitVector& aFatBitVec, TInt aDirCluster);
742 TInt GetDosEntryFromNameL(const TDesC& aName, TEntryPos& aDosEntryPos, TFatDirEntry& aDosEntry);
744 TInt MntCtl_DoCheckFileSystemMountable();
748 TBool iReadOnly : 1; ///< if true, the drive is in read-only mode
749 TBool iRamDrive : 1; ///< true if this is a RAM drive
751 TFatMntState iState; ///< this mounnt internal state
752 TFatType iFatType; ///< FAT type, FAT12,16 or 32
754 CLeafDirCache* iLeafDirCache; ///< A cache for most recently visited directories, only valid when limit is set bigger than 1
755 HBufC* iLastLeafDir; ///< The last visited directory, only valid when limit of iLeafDirCache is less than 1
756 TInt iLastLeafDirCluster; ///< Cluster number of the last visited cluster, only valid when limit of iLeafDirCache is less than 1
758 TFatVolParam iVolParam; ///< FAT volume parameters, populated form the boot sector values.
760 TInt iFirstFreeByte; ///< First free byte in media (start of the data area on the volume)
761 TUint32 iUsableClusters; ///< Number of usable cluster on the volume
763 CFatTable* iFatTable; ///< Pointer to the volume Fat
764 CRawDisk* iRawDisk; ///< Pointer to the raw data interface class
766 CAsyncNotifier* iNotifier; ///< Async notifier for notifying user of Fat error conditions
767 CLruCache* iLruUidCache; ///< LRU Data cache used for dealing with executable files' UIDs
769 XDriveInterface iDriverInterface; ///< the object representing interface to the drive, provides read/write access and notifiers
770 TInt iChkDiscRecLevel; ///< Check disk recursion level counter. A temporary measure.
771 TFatConfig iFatConfig; ///< FAT parametrers from estart.txt
773 XFileCreationHelper iFileCreationHelper;
777 //-- debug odds and ends
778 inline TBool IsWriteFail()const;
779 inline void SetWriteFail(TBool aIsWriteFail);
780 inline TInt WriteFailCount()const;
781 inline void SetWriteFailCount(TInt aFailCount);
782 inline void DecWriteFailCount();
783 inline TInt WriteFailError()const;
784 inline void SetWriteFailError(TInt aErrorValue);
787 TBool iIsWriteFail : 1; ///< Flag to indicate if write failed used for debugging
788 TBool iCBRecFlag : 1; ///< in debug mode used for checking unwanted recursion
790 TInt iWriteFailCount; ///< Write fail count for debug
791 TInt iWriteFailError; ///< Write fail error to use for debug
795 friend class CFatFormatCB;
796 friend class CScanDrive;
797 friend class TFatDriveInterface;
804 Fat file system file subsession implmentation, provides all that is required of a plug in
805 file system file as well as Fat specific functionality
807 class CFatFileCB : public CFileCB, public CFileCB::MBlockMapInterface, public CFileCB::MExtendedFileInterface
813 void RenameL(const TDesC& aNewName);
814 void ReadL(TInt aPos,TInt& aLength,const TAny* aDes,const RMessagePtr2& aMessage);
815 void WriteL(TInt aPos,TInt& aLength,const TAny* aDes,const RMessagePtr2& aMessage);
816 void SetSizeL(TInt aSize);
817 void SetEntryL(const TTime& aTime,TUint aMask,TUint aVal);
821 void CheckPosL(TUint aPos);
822 void SetL(const TFatDirEntry& aFatDirEntry,TShare aShare,const TEntryPos& aPos);
823 void CreateSeekIndex();
825 inline TBool IsSeekIndex() const;
827 // from MBlockMapInterface
828 TInt BlockMap(SBlockMapInfo& aInfo, TInt64& aStartPos, TInt64 aEndPos);
831 virtual TInt GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput);
833 // from CFileCB::MExtendedFileInterface
834 virtual void ReadL(TInt64 aPos,TInt& aLength,TDes8* aDes,const RMessagePtr2& aMessage, TInt aOffset);
835 virtual void WriteL(TInt64 aPos,TInt& aLength,const TDesC8* aDes,const RMessagePtr2& aMessage, TInt aOffset);
836 virtual void SetSizeL(TInt64 aSize);
839 inline CFatMountCB& FatMount() const;
840 inline CFatTable& FAT();
841 inline TInt ClusterSizeLog2();
842 inline TInt ClusterRelativePos(TInt aPos);
845 void FlushStartClusterL();
846 TInt SeekToPosition(TInt aNewCluster,TInt aClusterOffset);
847 void SetSeekIndexValueL(TInt aFileCluster,TInt aStoredCluster);
848 void ResizeIndex(TInt aNewMult,TUint aNewSize);
849 TInt CalcSeekIndexSize(TUint aSize);
850 TBool IsSeekBackwards(TUint aPos);
851 void ClearIndex(TUint aNewSize);
852 void DoSetSizeL(TUint aSize,TBool aIsSizeWrite);
853 void WriteFileSizeL(TUint aSize);
857 TUint32* iSeekIndex; ///< Seek index into file
858 TInt iSeekIndexSize; ///< size of seek index
860 TInt iStartCluster; ///< Start cluster number of file
861 TEntryPos iCurrentPos; ///< Current position in file data
862 TEntryPos iFileDirPos; ///< File directory entry position
863 TBool iFileSizeModified;
868 Fat file system directory subsession implmentation, provides all that is required of a plug in
869 file system directory as well as Fat specific functionality
871 class CFatDirCB : public CDirCB
874 static CFatDirCB* NewL();
877 void ReadL(TEntry& anEntry);
878 void StoreLongEntryNameL(const TDesC& aName);
880 void SetDirL(const TFatDirEntry& anEntry,const TDesC& aMatchName);
881 inline CFatMountCB& FatMount();
885 TFatDirEntry iEntry; ///< Current directory entry in this directory
886 TEntryPos iCurrentPos; ///< Current position in directory
887 HBufC* iMatch; ///< Current name being searched in directory (Dos Name)
888 HBufC* iLongNameBuf; ///< Long name storage
889 TBool iMatchUid; ///< Flag to indicate if UID matches
893 Fat file system Format subsession implmentation, provides all that is required of a plug in
894 file system format as well as Fat specific functionality
896 class CFatFormatCB : public CFormatCB
903 //-- overrides from CFormatCB
904 void DoFormatStepL();
907 //-- overrides from CFormatCB
908 TInt GetInterface(TInt aInterfaceId,TAny*& aInterface,TAny* aInput);
912 TInt DoProcessTVolFormatParam(const TVolFormatParam_FAT* apVolFormatParam);
914 void CreateBootSectorL();
915 void InitializeFormatDataL();
916 void DoZeroFillMediaL(TInt64 aStartPos, TInt64 aEndPos);
918 TInt InitFormatDataForVariableSizeDisk(TInt aDiskSizeInSectors);
919 TInt InitFormatDataForFixedSizeDiskNormal(TInt aDiskSizeInSectors, const TLocalDriveCapsV6& aCaps);
920 TInt InitFormatDataForFixedSizeDiskCustom(const TLDFormatInfo& aFormatInfo);
921 TInt InitFormatDataForFixedSizeDiskUser(TInt aDiskSizeInSectors);
922 void AdjustClusterSize(TInt aRecommendedSectorsPerCluster);
923 TInt AdjustFirstDataSectorAlignment(TInt aBlockSize);
924 TInt FirstDataSector() const;
926 TInt HandleCorrupt(TInt aError);
927 TInt BadSectorToCluster();
929 TInt DoTranslate(TPtr8& aBuf, RArray<TInt>& aArray);
930 void RecordOldInfoL();
931 TInt MaxFat12Sectors() const;
932 TInt MaxFat16Sectors() const;
933 inline TBool Is16BitFat() const;
934 inline CFatMountCB& FatMount();
935 inline CProxyDrive* LocalDrive();
936 TFatType SuggestFatType() const;
940 TBool iVariableSize; ///< Flag to indicat if we are dealing with a variable size volume
941 TInt iBytesPerSector; ///< Byte per sector of media
942 TInt iSectorSizeLog2; ///< Sector size in log2
943 TInt iNumberOfFats; ///< Number of Fats the volume will contain
944 TInt iReservedSectors; ///< Number of reserved sectors in the volume
945 TInt iRootDirEntries; ///< Nummer of root directory entries the root dir will have, specific to Fat12/16 volumes
946 TInt iSectorsPerCluster; ///< Sector per cluster ration the volume will be formatted with
947 TInt iSectorsPerFat; ///< Number of sectors the Fat uses
948 TInt iMaxDiskSectors; ///< number of sectors the volume has
949 TFormatInfo iFormatInfo; ///< format information for a custom format
950 TBuf8<16> iFileSystemName;///< Buffer to contain the volume name
951 TInt iHiddenSectors; ///< Number of hidden sectors in the volume
952 TInt iNumberOfHeads; ///< Number of heads the media device has, not used so far as only used on solid state media.
953 TInt iSectorsPerTrack; ///< Number of sectors the media device has, not used so far as only used on solid state media.
954 RArray<TInt> iBadClusters; ///< Array of bad cluster numbers
955 RArray<TInt> iBadSectors; ///< Array of bad sector numbers
956 TBool iDiskCorrupt; ///< Disk is corrupt when format or not
957 TInt iOldFirstFreeSector;
958 TInt iOldSectorsPerCluster;
963 Required file system class used by file server to create the file system objects
965 class CFatFileSystem : public CFileSystem
968 static CFatFileSystem* New();
972 CMountCB* NewMountL() const;
973 CFileCB* NewFileL() const;
974 CDirCB* NewDirL() const;
975 CFormatCB* NewFormatL() const;
976 void DriveInfo(TDriveInfo& anInfo,TInt aDriveNumber) const;
977 TInt DefaultPath(TDes& aPath) const;
978 TBool IsExtensionSupported() const;
979 TBool GetUseLocalTime() const;
980 void SetUseLocalTime(TBool aFlag);
981 TInt GetInterface(TInt aInterfaceId, TAny*& aInterface,TAny* aInput);
985 If true, then local time will be used when writing timestamps to FS. When reading,
986 timestamps will be assumed local and converted back to UTC.
987 At present, this behaviour will also be conditional upon a particular drive being logically removable.
989 TBool iUseLocalTimeIfRemovable;
995 Locale utilities allows the file system to call into a specific locale for tasks
996 such as Dos name to unicode conversions and testing the legality of characters for
1003 static void ConvertFromUnicodeL(TDes8& aForeign, const TDesC16& aUnicode, TFatUtilityFunctions::TOverflowAction aOverflowAction=TFatUtilityFunctions::EOverflowActionTruncate);
1004 static void ConvertToUnicodeL(TDes16& aUnicode, const TDesC8& aForeign, TFatUtilityFunctions::TOverflowAction aOverflowAction=TFatUtilityFunctions::EOverflowActionTruncate);
1005 static TBool IsLegalShortNameCharacter(TUint aCharacter,TBool aUseExtendedChars=EFalse);
1010 TPtrC RemoveTrailingDots(const TDesC& aName);
1013 Indicates if a number passed in is a power of two
1014 @return ETrue if aVal is a power of 2
1016 inline TBool IsPowerOf2(TUint32 aVal);
1019 Calculates the log2 of a number
1021 @param aNum Number to calulate the log two of
1022 @return The log two of the number passed in
1024 TUint32 Log2(TUint32 aVal);
1026 /** @return 2^aVal*/
1027 inline TUint32 Pow2(TUint32 aVal);
1031 Converts Dos time (from a directory entry) to TTime format
1033 @param aDosTime Dos format time
1034 @param aDosDate Dos format Date
1035 @return TTime format of Dos time passed in
1037 TTime DosTimeToTTime(TInt aDosTime,TInt aDosDate);
1039 Converts TTime format to Dos time format
1041 @param aTime TTime to convert to Dos time
1042 @return Dos time format
1044 TInt DosTimeFromTTime(const TTime& aTime);
1046 Converts TTime format to Dos time format
1048 @param aTime TTime to convert to Dos Date
1049 @return Dos Date format
1051 TInt DosDateFromTTime(const TTime& aTime);
1053 Converts Dos Directory entry format to 8.3 format
1055 @param aDosName Directory entry format with space delimeter
1056 @return 8.3 Dos filename format
1058 TBuf8<12> DosNameToStdFormat(const TDesC8& aDosName);
1060 Converts 8.3 format to Dos Directory entry format
1062 @param aStdFormatName 8.3 Dos filename format
1063 @return Directory entry format with space delimeter
1065 TBuf8<12> DosNameFromStdFormat(const TDesC8& aStdFormatName);
1067 Fault function calls user panic with a fault reason
1069 @param Enumerated fault reason
1071 void Fault(TFault aFault);
1073 calculates the number of VFat directory entries for a given file/directory name length
1075 @param the length in characters of the name
1076 @return the number of VFat entries required
1078 TInt NumberOfVFatEntries(TInt aNameLength);
1080 Calculates the check sum for a standard directory entry
1082 @param the Dos name for the directory entry
1083 @return the checksum
1085 TUint8 CalculateShortNameCheckSum(const TDesC8& aShortName);
1088 TBool IsLegalDosName(const TDesC& aName,TBool anAllowWildCards,TBool aUseExtendedChars, TBool aInScanDrive, TBool aAllowLowerCase, TBool aIsForFileCreation);
1089 TBool IsLegalDOSNameChar(TChar aCharacter, TBool aUseExtendedChars);
1093 //-----------------------------------------------------------------------------
1096 This class represents a bit vector i.e. an array of bits. Vector size can be 1..2^32 bits.
1102 RBitVector(); //-- Creates an empty vector. see Create() methods for memory allocation
1107 TInt Create(TUint32 aNumBits);
1108 void CreateL(TUint32 aNumBits);
1110 inline TUint32 Size() const;
1112 //-- single bit manipulation methods
1113 inline TBool operator[](TUint32 aIndex) const;
1114 inline void SetBit(TUint32 aIndex);
1115 inline void ResetBit(TUint32 aIndex);
1116 inline void InvertBit(TUint32 aIndex);
1117 inline void SetBitVal(TUint32 aIndex, TBool aVal);
1119 void Fill(TBool aVal);
1120 void Fill(TUint32 aIndexFrom, TUint32 aIndexTo, TBool aVal);
1123 TBool operator==(const RBitVector& aRhs) const;
1124 TBool operator!=(const RBitVector& aRhs) const;
1126 //-- logical operations between 2 vectors.
1127 void And(const RBitVector& aRhs);
1128 void Or (const RBitVector& aRhs);
1129 void Xor(const RBitVector& aRhs);
1131 TBool Diff(const RBitVector& aRhs, TUint32& aDiffIndex) const;
1133 /** Bit search specifiers */
1136 ELeft, ///< Search from the given position to the left (towards lower index)
1137 ERight, ///< Search from the given position to the right (towards higher index)
1138 ENearestL, ///< Search in both directions starting from the given position; in the case of the equal distances return the position to the left
1139 ENearestR ///< Search in both directions starting from the given position; in the case of the equal distances return the position to the right
1141 //-- N.B the current position the search starts with isn't included to the search.
1144 TBool Find(TUint32& aStartPos, TBool aBitVal, TFindDirection aDir) const;
1149 EIndexOutOfRange, ///< index out of range
1150 EWrondFindDirection, ///< a value doesn't belong to TFindDirection
1151 ESizeMismatch, ///< Size mismatch for binary operators
1152 ENotInitialised, ///< No memory allocated for the array
1153 ENotImplemented, ///< functionality isn't implemented
1158 //-- these are outlawed. Can't use them because memory allocator can leave and we don't have conthrol on it in these methods.
1159 RBitVector(const RBitVector& aRhs);
1160 RBitVector& operator=(const RBitVector& aRhs);
1162 void Panic(TPanicCode aPanicCode) const;
1164 inline TUint32 WordNum(TUint32 aBitPos) const;
1165 inline TUint32 BitInWord(TUint32 aBitPos) const;
1168 TBool FindToRight(TUint32& aStartPos, TBool aBitVal) const;
1169 TBool FindToLeft (TUint32& aStartPos, TBool aBitVal) const;
1170 TBool FindNearest(TUint32& aStartPos, TBool aBitVal, TBool aToLeft) const;
1172 inline TUint32 MaskLastWord(TUint32 aVal) const;
1173 inline TBool ItrLeft(TUint32& aIdx) const;
1174 inline TBool ItrRight(TUint32& aIdx) const;
1179 TUint32 iNumBits; ///< number of bits in the vector
1180 TUint32* ipData; ///< pointer to the data
1181 TUint32 iNumWords;///< number of 32-bit words that store bits
1185 //-----------------------------------------------------------------------------
1188 #include "sl_std.inl"
1189 #include "sl_bpb.inl"
1190 #include "fat_dir_entry.inl"