开发者

Purposefully Corrupting a FAT File System?

开发者 https://www.devze.com 2023-04-09 14:47 出处:网络
Is there a way to purposefully corrupt a FAT file system using only Win32 calls or must you开发者_运维知识库 do it at lower level?We\'re encountering FAT corruption on a WinCE 5.0 device and have writ

Is there a way to purposefully corrupt a FAT file system using only Win32 calls or must you开发者_运维知识库 do it at lower level? We're encountering FAT corruption on a WinCE 5.0 device and have written a utility to detect and attempt to correct it, but don't have a means to create FAT corruption on demand. Thanks.

The media is a CF card, but it's not removable as a normal course as it's mounted internal to the device.


What's the FAT on (e.g. inserted USB, on-board flash, etc)? That's going to make a large difference.

If it's the on-board flash, you need to get underneath the file system driver (FSD), which is typically going to be the flash driver itself. It's going to have access to the raw flash sectors (it's what the FSD uses for its reads and writes) either through Xxx_Write or Xxx_Ioctl. Exactly how it works is going to depend on the flash driver in use, so looking at the driver source is your best path.


You can access device data as a raw file and write random data in that file to corrupt FAT. E.g. if you write random data on:

\?\Device\HarddiskVolume1

This would corrupt first partition.

This page has some hints on how to figure out paths for HDD/USB drive etc.

http://www.chrysocome.net/dd

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号