Skip to content

Release 0.4.3 #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:
- "pypy-3.10"
os: ["ubuntu-latest"]
include:
- os: "macos-latest" # For m1 macos
python-version: "3.8"
- os: "macos-13" # for x86 macos
- os: "macos-14" # For m1 macos
python-version: "3.12"
- os: "macos-latest" # for x86 macos
python-version: "3.8"
- os: "windows-latest"
python-version: "3.8"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Changelog
.. This document is user facing. Please word the changes in such a way
.. that users understand how the changes affect the new version.

version 0.4.3
-----------------
+ Fix a bug where files larger than 4GB could not be decompressed.

version 0.4.2
-----------------
+ Fix a reference counting error that happened on module initialization and
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def build_zlib_ng():

setup(
name="zlib-ng",
version="0.4.2",
version="0.4.3",
description="Drop-in replacement for zlib and gzip modules using zlib-ng",
author="Leiden University Medical Center",
author_email="[email protected]", # A placeholder for now
Expand Down
2 changes: 1 addition & 1 deletion src/zlib_ng/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# This file is part of python-zlib-ng which is distributed under the
# PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2.

__version__ = "0.4.2"
__version__ = "0.4.3"
5 changes: 3 additions & 2 deletions src/zlib_ng/zlib_ngmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2590,8 +2590,9 @@ GzipReader_read_into_buffer(GzipReader *self, uint8_t *out_buffer, size_t out_bu
return -1;
}
uint32_t length = load_u32_le(current_pos);
current_pos += 4;
if (length != self->zst.total_out) {
current_pos += 4;
// ISIZE is the length of the original data modulo 2^32
if (length != (0xFFFFFFFFUL & self->zst.total_out)) {
Py_BLOCK_THREADS;
PyErr_SetString(BadGzipFile, "Incorrect length of data produced");
return -1;
Expand Down
25 changes: 25 additions & 0 deletions tests/test_gzip_ng.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,31 @@ def test_decompress_incorrect_length():
error.match("Incorrect length of data produced")


def test_decompress_on_long_input():
# Ensure that a compressed payload with length bigger than 2**32 (ISIZE is
# overflown) can be decompressed. To avoid writing the whole uncompressed payload
# into memory, the test writes the compressed data in chunks. The payload consists
# almost exclusively of zeros to achieve an exteremely efficient compression rate,
# so that the compressed data also fits in memory.

buffered_stream = io.BytesIO()
n = 20
block_size = 2**n
iterations = 2**(32 - n)
zeros_block = bytes(block_size)

# To avoid writing the whole compressed data, we will write the compressed data
with gzip_ng.open(buffered_stream, "wb") as gz:
for _ in range(iterations):
gz.write(zeros_block)
gz.write(b"\x01" * 123)
buffered_stream.seek(0)
with gzip_ng.open(buffered_stream, "rb") as gz:
for _ in range(iterations):
assert zeros_block == gz.read(block_size)
assert gz.read() == b"\x01" * 123


def test_decompress_incorrect_checksum():
# Create a wrong checksum by using a non-default seed.
wrong_checksum = zlib.crc32(DATA, 50)
Expand Down
Loading