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 UB in the SO_TYPE sockopt #1821

Merged
merged 1 commit into from Nov 29, 2022
Merged

Fix UB in the SO_TYPE sockopt #1821

merged 1 commit into from Nov 29, 2022

Commits on Nov 29, 2022

  1. Fix UB in the SO_TYPE sockopt

    When reading a value into an enum from getsockopt, we must validate it.
    Failing to do so can lead to UB for example with SOCK_PACKET on Linux.
    
    Perform the validation in GetSockOpt::get.  Currently SockType is the
    only type that requires validation.
    
    Fixes nix-rust#1819
    asomers committed Nov 29, 2022
    Copy the full SHA
    8e91b28 View commit details
    Browse the repository at this point in the history