Page MenuHomeFreeBSD

tarfs: Fix support for large files
ClosedPublic

Authored by des on Nov 12 2025, 7:07 PM.
Tags
None
Referenced Files
F153214721: D53718.diff
Sun, Apr 19, 8:47 PM
Unknown Object (File)
Sat, Apr 18, 12:38 PM
Unknown Object (File)
Wed, Apr 15, 12:45 PM
Unknown Object (File)
Wed, Apr 15, 4:10 AM
Unknown Object (File)
Mon, Apr 6, 11:21 PM
Unknown Object (File)
Mon, Apr 6, 1:30 PM
Unknown Object (File)
Sat, Apr 4, 5:12 PM
Unknown Object (File)
Mon, Mar 30, 3:39 AM
Subscribers

Details

Summary
  • When fast-forwarding through a zstd frame, we incorrectly used the min() inline function instead of the MIN() macro. The function truncates the result to unsigned int, resulting in a decompression error when trying to seek more than 4 GB into the frame.
  • POSIX states that a size extended header record overrides the size field in the header if present, and that one must be included if the size of the file exceeds 8 GB (the size field maxes out at 64 GB).

MFC after: 1 week
Sponsored by: Klara, Inc.
Fixes: 69d94f4c7608 ("Add tarfs, a filesystem backed by tarballs.")

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable