Skip to main content

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

Project description

exfat-raw

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"])

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

License

GNU General Public License v3.0 or later.


Extracted from gopro-timestamp-corrector.

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.1.1.tar.gz (27.6 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.1.1-py3-none-any.whl (23.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: exfat_raw-0.1.1.tar.gz
  • Upload date:
  • Size: 27.6 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.1.1.tar.gz
Algorithm Hash digest
SHA256 4450415f7fc9f8e7053b94f3f6d2b9b6648063e121e0cdfc1636082f115ae3d2
MD5 6f21b30d8b8bba2afd44d5ac1d7cc6bf
BLAKE2b-256 eaaca3383ce4c4926dd6e0677d16f73c7aea12a1fec34c3eb164029c8bdad1cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for exfat_raw-0.1.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.1.1-py3-none-any.whl.

File metadata

  • Download URL: exfat_raw-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 23.2 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.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e860a1bc8ed6e9b67a8bdbc9741f4755ea3a481ac70802914049f0d2b464e039
MD5 7cec6b8999cd14c7239793623d65f179
BLAKE2b-256 0825a1f6d5f26a3c566cd153de8742d68a674bceb374aa542a98d1f1b1df43b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for exfat_raw-0.1.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