Skip to content
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

fix(serializer): Add support for bytearray and memoryview types #1833

Conversation

Tarty
Copy link
Contributor

@Tarty Tarty commented Jan 12, 2023

Both bytearray and memoryview built-in types weren't explicitly mentioned in the serializer logic, and as they are subtyping Sequence, this led their instances to be enumerated upon, and to be output as a list of bytes, byte per byte.

In the case of memoryview, this could also lead to a segmentation fault if the memory referenced was already freed and unavailable to the process by then.

By explicitly adding them as seralizable types, bytearray will be decoded as a string just like bytes, and memoryview will use its repr method instead.

Close GH-1829


I noticed Python 2.7 was still supported, so I also attempted to add the fix for this version.

However bytearray and memoryview were introduced by Python 2.7, so this PR introduces code that is not supported by Python 2.6 (which reached its end of life in 2013).

I don't know if this is a concern or not?

… types

Both `bytearray` and `memoryview` built-in types weren't explicitly
mentioned in the serializer logic, and as they are subtyping Sequence,
this led their instances to be enumerated upon, and to be output as a
list of bytes, byte per byte.

In the case of `memoryview`, this could also lead to a segmentation
fault if the memory referenced was already freed and unavailable to the
process by then.

By explicitly adding them as seralizable types, bytearray will be
decoded as a string just like bytes, and memoryview will use its
__repr__ method instead.

Close getsentryGH-1829
Copy link
Member

@sl0thentr0py sl0thentr0py left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ty @Tarty

However bytearray and memoryview were introduced by Python 2.7, so this PR introduces code that is not supported by Python 2.6 (which reached its end of life in 2013).

Our support matrix is here and we only need 2.7, so all good.

@sl0thentr0py sl0thentr0py merged commit c6d7b67 into getsentry:master Jan 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Segmentation fault when serializing a memoryview freed in the stackframes
2 participants