SIGSEGV in TextIOWrapper.readline() after seek() with cookie containing negative chars_to_skip
未关闭
还没有人认领这个 Issue。
interpreter-core
type-crash
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 35.9k
- PR 合并指标
- PR 指标待抓取
描述
Crash report
What happened?
import io, sys
COOKIE_VALUE = (100 << (12 * 8)) | (0x80 << (19 * 8))
data = b"Hello World!" * 100
raw = io.BytesIO(data)
buf = io.BufferedReader(raw)
tio = io.TextIOWrapper(buf, encoding='utf-8')
tio.read(20)
tio.seek(COOKIE_VALUE)
tio.readline()
sys.exit(0)
CPython versions tested on:
3.16
Operating systems tested on:
Linux
Output from running 'python -VV' on the command line:
Python 3.16.0a0 (tags/v3.15.0b1-959-gd0714388278:d0714388278, Jul 13 2026, 20:32:55) [GCC 12.3.0] Linux x86_64, GCC 12.3.0
Linked PRs
- gh-153667
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先在 Linux 上运行提供的 Python 复现程序,并检查与崩溃相关的 io.TextIOWrapper seek() 和 readline() 入口点。相同的 cookie 不再导致 SIGSEGV,且复现程序正常退出,即表示完成;开始前请先查看链接的 PR gh-153667,因为相关工作可能已经在进行中。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- backend
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 25/100