erofs-utils: mkfs: Fix input offset counting in headerball mode
authorMike Baynton <mike@mbaynton.com>
Mon, 11 Nov 2024 16:48:19 +0000 (10:48 -0600)
committerGao Xiang <hsiangkao@linux.alibaba.com>
Tue, 12 Nov 2024 02:07:42 +0000 (10:07 +0800)
commit539ad7d06bf32ae0ec0c8b83900330058d92f4a7
tree2488e9c412229d6a70f086a629187637c49ec97c
parentf9c72335e8ca564fed2658508c0a597d9fbc3520
erofs-utils: mkfs: Fix input offset counting in headerball mode

When using --tar=headerball, most files included in the headerball are
not included in the EROFS image. mkfs.erofs typically exits prematurely,
having processed non-USTAR blocks as USTAR and believing they are
end-of-archive markers. (Other failure modes are probably also possible
if the input stream doesn't look like end-of-archive markers at the
locations that are being read.)

This is because we lost correct count of bytes that are read from the
input stream when in headerball (or ddtaridx) modes. We were assuming that
in these modes no data would be read following the ustar block, but in
case of things like PAX headers, lots more data may be read without
incrementing tar->offset.

This corrects by always incrementing the offset counter, and then
decrementing it again in the one case where headerballs differ -
regular file data blocks are not present.

Signed-off-by: Mike Baynton <mike@mbaynton.com>
Link: https://lore.kernel.org/r/20241111164819.560567-1-mike@mbaynton.com
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
lib/tar.c