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.
Created on 2010年05月07日 17:20 by pitrou, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (8) | |||
|---|---|---|---|
| msg105216 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2010年05月07日 17:20 | |
zlibmodule.c doesn't define PY_SSIZE_T_CLEAN, and uses lots of "int" variables for length values internally. Besides, the zlib itself uses "uInt" and "uLong" variables in its z_stream structure (rather than something guaranteed to be at least the width of a pointer). On large input data, this will conspire to produce bogus results or crashes. For example: >>> s = 'x' * (4 * 1024**3 + 100) >>> t = zlib.compress(s, 1) >>> len(t) 12 >>> len(zlib.decompress(t)) 100 |
|||
| msg106584 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2010年05月26日 21:56 | |
See also a related issue: #8651. |
|||
| msg125283 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2011年01月04日 02:08 | |
Fixed by r87729. Wait for the buildbots before backporting to other versions. |
|||
| msg128984 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2011年02月21日 19:28 | |
Woops, I removed a duplicate message of Antoine. in this issue instead of #8651. Removed message: ----- > Fixed by r87729. This only addresses the compress() and decompress() functions, but e.g. crc32() and adler32() are also touched by this issue. ----- |
|||
| msg131611 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2011年03月21日 03:05 | |
> This only addresses the compress() and decompress() functions, > but e.g. crc32() and adler32() are also touched by this issue. crc32() and adler32() were fixed by #10276. PyZlib_objcompress() and PyZlib_objdecompress() should be fixed. |
|||
| msg135988 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年05月14日 20:34 | |
New changeset 850624632e9a by Nadeem Vawda in branch '3.1': Issue #8650: Backport 64-bit safety fixes for compress() and decompress(). http://hg.python.org/cpython/rev/850624632e9a New changeset 99a3ce22c1ff by Nadeem Vawda in branch '3.2': Null merge (#8650): zlib.compress() and .decompress() are already 64-bit safe. http://hg.python.org/cpython/rev/99a3ce22c1ff New changeset dea5fcdc9ecd by Nadeem Vawda in branch 'default': Null merge (#8650): zlib.compress() and .decompress() are already 64-bit safe. http://hg.python.org/cpython/rev/dea5fcdc9ecd |
|||
| msg135998 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年05月14日 22:24 | |
New changeset 0b5211d19a14 by Nadeem Vawda in branch '3.1': Issue #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. http://hg.python.org/cpython/rev/0b5211d19a14 New changeset 3ff862d05d18 by Nadeem Vawda in branch '3.2': Merge: #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. http://hg.python.org/cpython/rev/3ff862d05d18 New changeset f86a22b6ab58 by Nadeem Vawda in branch 'default': Merge: #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. http://hg.python.org/cpython/rev/f86a22b6ab58 |
|||
| msg136002 - (view) | Author: Nadeem Vawda (nadeem.vawda) * (Python committer) | Date: 2011年05月14日 23:09 | |
Fixed in 3.1, 3.2 and 3.3. 2.7 no longer has this problem -- the fix for issue8651 ensures that the functions cannot receive inputs large enough to be problematic (since we don't define PY_SSIZE_T_CLEAN). |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:00 | admin | set | github: 52896 |
| 2011年05月14日 23:09:19 | nadeem.vawda | set | status: open -> closed versions: + Python 3.1, Python 3.2, Python 3.3, - Python 2.7 messages: + msg136002 resolution: fixed stage: needs patch -> resolved |
| 2011年05月14日 22:24:55 | python-dev | set | messages: + msg135998 |
| 2011年05月14日 20:34:49 | python-dev | set | nosy:
+ python-dev messages: + msg135988 |
| 2011年03月21日 03:05:08 | vstinner | set | nosy:
loewis, gregory.p.smith, pitrou, vstinner, nadeem.vawda, rcoyner messages: + msg131611 |
| 2011年02月21日 19:28:23 | vstinner | set | nosy:
loewis, gregory.p.smith, pitrou, vstinner, nadeem.vawda, rcoyner messages: + msg128984 |
| 2011年02月21日 19:26:19 | vstinner | set | nosy:
loewis, gregory.p.smith, pitrou, vstinner, nadeem.vawda, rcoyner messages: - msg128975 |
| 2011年02月21日 19:19:11 | nadeem.vawda | set | nosy:
+ nadeem.vawda |
| 2011年02月21日 18:26:30 | pitrou | set | nosy:
loewis, gregory.p.smith, pitrou, vstinner, rcoyner messages: + msg128975 versions: - Python 2.6, Python 3.1, Python 3.2 |
| 2011年01月04日 02:08:58 | vstinner | set | nosy:
loewis, gregory.p.smith, pitrou, vstinner, rcoyner messages: + msg125283 |
| 2010年08月15日 18:13:03 | loewis | set | messages: - msg113981 |
| 2010年08月15日 18:00:27 | loewis | set | nosy:
+ loewis messages: + msg113981 |
| 2010年05月29日 15:52:09 | rcoyner | set | nosy:
+ rcoyner |
| 2010年05月26日 21:56:30 | vstinner | set | messages: + msg106584 |
| 2010年05月07日 17:24:38 | pitrou | set | nosy:
+ vstinner |
| 2010年05月07日 17:20:59 | pitrou | create | |