Skip to main content

Raw block-level read/write of exFAT filesystem timestamps (birth time, modification time)

Project description

exfat-raw

PyPI version Python License OS

CI codecov

Downloads total Downloads/month Downloads/week

Raw block-level read/write of exFAT filesystem timestamps — birth time (btime) and modification time (mtime), directly from the on-disk directory entry, bypassing the kernel driver's cache.

Features

  • Read btime/mtime — parse the exFAT directory entry on the raw block device
  • Write btime and mtime — atomically update both timestamps in one raw-block access
  • 3-tier I/O fallback — tries direct os.pread/os.pwrite first (works on regular image files and accessible block devices), then loop device backing files, and finally falls back to sudo dd for restricted block devices
  • No kernel cache corruption — understands the exFAT kernel driver's directory-entry cache incoherence and avoids os.utime() / sync() after raw writes
  • Pure stdlib — zero runtime dependencies

Usage

from exfat_raw import ExfatRawIO, ExfatRawFilesystem, ExfatRawOps
from datetime import datetime, timezone

io = ExfatRawIO()
fs = ExfatRawFilesystem(io)
ops = ExfatRawOps(io, fs)

# Read birth time from a file on an exFAT mount
ts = ops.read_btime_raw("/mnt/sdcard/DCIM/100GOPRO/GH010001.MP4")
print(datetime.fromtimestamp(ts, tz=timezone.utc))

# Correct the timestamp
target = datetime(2025, 6, 15, 12, 0, 0, tzinfo=timezone.utc)
ops.fix_exfat_raw("/mnt/sdcard/DCIM/100GOPRO/GH010001.MP4", target, dry_run=False)

# Preserve btime while updating mtime
orig_btime_ts = ops.read_btime_raw(filepath)
orig_btime_dt = datetime.fromtimestamp(orig_btime_ts, tz=timezone.utc)
ops.fix_exfat_raw(filepath, new_mtime_dt, dry_run=False, btime_dt=orig_btime_dt)

# Work directly on a raw image file (no sudo, no mount)
io = ExfatRawIO()
fs = ExfatRawFilesystem(io)
boot = io.parse_boot("path/to/sdcard.img")
chain = fs.cluster_chain(boot, "path/to/sdcard.img", boot["root_cluster"])

Note: All datetime parameters must be timezone-aware (e.g., tzinfo=timezone.utc). Naive datetimes are rejected with ValueError.

Dependencies

  • Python ≥ 3.10 (stdlib only — os, struct, subprocess, tempfile, pathlib)
  • System tools: sudo, dd, findmnt, losetup — only needed for physical block devices; regular image files work with stdlib alone

Development

Running tests

Sandbox-safe (no sudo, no mount — runs a pure-Python exFAT image):

python -m unittest discover -s tests -p 'test_exfat_raw_image.py' -v

Full suite (requires sudo + loop device + exfat-fuse):

python -m unittest discover -s tests -p 'test_*.py' -v

With Nix:

nix develop                   # enter dev shell
python -m unittest discover -s tests -p 'test_*.py' -v

The Nix package's checkPhase runs only the sandbox-safe tests (see nix/exfat-raw/default.nix).


License

GNU General Public License v3.0 or later.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

exfat_raw-0.2.1.tar.gz (34.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

exfat_raw-0.2.1-py3-none-any.whl (28.1 kB view details)

Uploaded Python 3

File details

Details for the file exfat_raw-0.2.1.tar.gz.

File metadata

  • Download URL: exfat_raw-0.2.1.tar.gz
  • Upload date:
  • Size: 34.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for exfat_raw-0.2.1.tar.gz
Algorithm Hash digest
SHA256 bb01c014d3fd945b0b458f2d8f7d84e0eea89c223aafb56e34b8d0448ac1cbd3
MD5 3887a9b1602f5db11e6d8cd9a43e3408
BLAKE2b-256 87b8869b728f90573de70be8a7bd98a2c9efbcfe33203cfbcf440486e990cee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for exfat_raw-0.2.1.tar.gz:

Publisher: publish.yml on MBanucu/exfat-raw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file exfat_raw-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: exfat_raw-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 28.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for exfat_raw-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c25e7e41132b365c89ede1014ea563d26e91ddac7cfa526957e9e9470b269f3c
MD5 270a2bf9ff054d0e1e528028abedec3b
BLAKE2b-256 fb30b7b7c667973bbb264aea70e9f7c948730336e5f1a7aa9bef14a857e3d078

See more details on using hashes here.

Provenance

The following attestation bundles were made for exfat_raw-0.2.1-py3-none-any.whl:

Publisher: publish.yml on MBanucu/exfat-raw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page