Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

stringlib bytearray.join function has the potential to leak memory when used with a custom iterator #112625

Closed
Assignees
serhiy-storchaka
Labels
3.11only security fixes3.12only security fixes3.13bugs and security fixestype-bugAn unexpected behavior, bug, or error
@chilaxan

Description

@chilaxan

Bug report

Bug description:

If a custom iterator is passed intobytearray.join, and then it frees the bytearray inside of its__iter__, then memory can be read after it is freed:

# stringlib_join_ReadAfterFree.pydefReadAfterFree(size,do):b=bytearray(size)classT:def__iter__(self):b.clear()self.v=do()yieldb''yieldb''c=b.join(t:=T())returnmemoryview(c).cast('P'),t.vif__name__=='__main__':leak,obj=ReadAfterFree(bytearray.__basicsize__,lambda:bytearray(8))print('bytearray:',obj)print('leaked memory of buffer:',leak.tolist())
~/Desktop/Coding/cpython_source git:(main) ./python.exe ../python/stringlib_join_ReadAfterFree.pybytearray: bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x00')leaked memory of buffer: [1, 4305259912, 8, 9, 4307812848, 4307812848, 0]

CPython versions tested on:

CPython main branch

Operating systems tested on:

macOS

Linked PRs

Metadata

Metadata

Labels

3.11only security fixes3.12only security fixes3.13bugs and security fixestype-bugAn unexpected behavior, bug, or error

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions


    [8]ページ先頭

    ©2009-2025 Movatter.jp