Add advisory on miow SocketAddr casting

This commit is contained in:
Linus Färnstrand
2020-12-03 00:39:18 +01:00
parent 0eebb486a9
commit 6484507a67

View File

@@ -0,0 +1,22 @@
```toml
[advisory]
id = "RUSTSEC-0000-0000"
package = "miow"
date = "2020-11-13"
url = "https://github.com/yoshuawuyts/miow/issues/38"
keywords = ["memory", "layout", "cast"]
informational = "unsound"
[versions]
patched = [">= 0.2.2", ">= 0.3.6"]
```
# `miow` invalidly assumes the memory layout of std::net::SocketAddr
The [`miow`](https://crates.io/crates/miow) crate has assumed `std::net::SocketAddrV4`
and `std::net::SocketAddrV6` have the same memory layout as the system C representation
`sockaddr`. It has simply casted the pointers to convert the socket addresses to the
system representation. The standard library does not say anything about the memory
layout, and this will cause invalid memory access if the standard library
changes the implementation. No warnings or errors will be emitted once the
change happens.