-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Rearrange sockaddr_storage
padding/alignment fields on Linux and Fuchsia
#3010
Conversation
Previously on Linux, the `sockaddr_storage` structure had padding bytes between the `ss_family` and `__ss_align` fields. The `__ss_align` field has now been moved to the end of the structure to eliminate these padding bytes, matching recent glibc versions: https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/unix/sysv/linux/bits/socket.h;h=4f1f810ea1d9bf00ff428e4e7c49a52c71620775;hb=c804cd1c00adde061ca51711f63068c103e94eef#l190
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @JohnTitor (or someone else) soon. Please see the contribution instructions for more information. |
I think Fuchsia's definition is here, and yes I think you should fix it in libc. |
sockaddr_storage
padding/alignment fields on Linuxsockaddr_storage
padding/alignment fields on Linux and Fuchsia
Added a fixup commit to change Fuchsia's definition. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The upstream change is old enough and looking at #1412 and https://github.com/bminor/glibc/releases/tag/glibc-2.26, we could assume the effect is quite limited.
@bors r+ |
☀️ Test successful - checks-actions, checks-cirrus-freebsd-12, checks-cirrus-freebsd-13, checks-cirrus-freebsd-14 |
Part of #3004.
Previously on Linux, the
sockaddr_storage
structure had padding bytes between thess_family
and__ss_align
fields. The__ss_align
field has now been moved to the end of the structure to eliminate these padding bytes, matching recent glibc versions: https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/unix/sysv/linux/bits/socket.h;h=4f1f810ea1d9bf00ff428e4e7c49a52c71620775;hb=c804cd1c00adde061ca51711f63068c103e94eef#l190After the PR on Linux x86-64:
These moved fields are private but they are used in the
sockaddr_storage
sPartialEq
,Debug
, andHash
implementations, so the exact behaviour may change slightly, but I don't think anyone should be depending on this.(It looks like Fuchsia has the same issue, but I didn't modify its structure because I don't know much about it, or how to test it.)