This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Why does tarfile.next swallow InvalidHeaderError
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.7
process
Status: closed Resolution: duplicate
Dependencies: Superseder: tarfile module next() method hides exceptions
View: 27590
Assigned To: Nosy List: jan.schatz
Priority: normal Keywords:

Created on 2020-10-19 08:55 by jan.schatz, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (1)
msg378934 - (view) Author: Jan Schatz (jan.schatz) Date: 2020-10-19 08:55
I have a tar gz archive that fails to be extracted via tarfile.extractall(). By adding some debug code I found that at some point InvalidHeaderError is raised inside tarfile.next(). But the function just swallows the exception, because the offset isn't 0 (see https://github.com/python/cpython/blob/5368c2b6e23660cbce7e38dc68f859c66ac349ee/Lib/tarfile.py#L2334). Why does the function behave like this? I would expect an except rather than silently stopping extraction if the archive is damaged.
History
Date User Action Args
2022-04-11 14:59:36adminsetgithub: 86245
2021-12-27 00:20:51andrei.avksetstatus: open -> closed
superseder: tarfile module next() method hides exceptions
resolution: duplicate
stage: resolved
2020-10-19 08:55:37jan.schatzcreate