Skip to content

Commit fdcf0fa

Browse files
authored
Unrolled build for rust-lang#116714
Rollup merge of rust-lang#116714 - WaffleLapkin:order-the-order, r=joshtriplett Derive `Ord`, `PartialOrd` and `Hash` for `SocketAddr*` Fixes rust-lang#116711 The main pain of this PR is to fix the buggy impl of `Ord` for `SocketAddrV6`, which ignored half of the fields (while `PartialEq` is derived): https://github.com/rust-lang/rust/blob/4603f0b8afb495ae56cd4c8f70d5d478d906ac54/library/core/src/net/socket_addr.rs#L99-L106 https://github.com/rust-lang/rust/blob/4603f0b8afb495ae56cd4c8f70d5d478d906ac54/library/core/src/net/socket_addr.rs#L676 For me it looks like a simple copy-paste error made in rust-lang#72239 (copy from v4 impl) (cc `@hch12907),` as I don't see this behavior being mentioned anywhere on the PR and it also does not respect `cmp` trait "rules". I also do not see any reasons for those impls to _not_ be derived. It's a shame we did not notice this for 28 versions/3 years. I guess this is a bug fix, but I'm not sure what the process here should be. r? libs
2 parents 98b4a64 + 5c13c69 commit fdcf0fa

File tree

2 files changed

+13
-49
lines changed

2 files changed

+13
-49
lines changed

library/core/src/net/socket_addr.rs

+2-49
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
use crate::cmp::Ordering;
21
use crate::fmt::{self, Write};
3-
use crate::hash;
42
use crate::net::{IpAddr, Ipv4Addr, Ipv6Addr};
53

64
use super::display_buffer::DisplayBuffer;
@@ -63,7 +61,7 @@ pub enum SocketAddr {
6361
/// assert_eq!(socket.ip(), &Ipv4Addr::new(127, 0, 0, 1));
6462
/// assert_eq!(socket.port(), 8080);
6563
/// ```
66-
#[derive(Copy, Clone, Eq, PartialEq)]
64+
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
6765
#[stable(feature = "rust1", since = "1.0.0")]
6866
pub struct SocketAddrV4 {
6967
ip: Ipv4Addr,
@@ -96,7 +94,7 @@ pub struct SocketAddrV4 {
9694
/// assert_eq!(socket.ip(), &Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 1));
9795
/// assert_eq!(socket.port(), 8080);
9896
/// ```
99-
#[derive(Copy, Clone, Eq, PartialEq)]
97+
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
10098
#[stable(feature = "rust1", since = "1.0.0")]
10199
pub struct SocketAddrV6 {
102100
ip: Ipv6Addr,
@@ -644,48 +642,3 @@ impl fmt::Debug for SocketAddrV6 {
644642
fmt::Display::fmt(self, fmt)
645643
}
646644
}
647-
648-
#[stable(feature = "socketaddr_ordering", since = "1.45.0")]
649-
impl PartialOrd for SocketAddrV4 {
650-
#[inline]
651-
fn partial_cmp(&self, other: &SocketAddrV4) -> Option<Ordering> {
652-
Some(self.cmp(other))
653-
}
654-
}
655-
656-
#[stable(feature = "socketaddr_ordering", since = "1.45.0")]
657-
impl PartialOrd for SocketAddrV6 {
658-
#[inline]
659-
fn partial_cmp(&self, other: &SocketAddrV6) -> Option<Ordering> {
660-
Some(self.cmp(other))
661-
}
662-
}
663-
664-
#[stable(feature = "socketaddr_ordering", since = "1.45.0")]
665-
impl Ord for SocketAddrV4 {
666-
#[inline]
667-
fn cmp(&self, other: &SocketAddrV4) -> Ordering {
668-
self.ip().cmp(other.ip()).then(self.port().cmp(&other.port()))
669-
}
670-
}
671-
672-
#[stable(feature = "socketaddr_ordering", since = "1.45.0")]
673-
impl Ord for SocketAddrV6 {
674-
#[inline]
675-
fn cmp(&self, other: &SocketAddrV6) -> Ordering {
676-
self.ip().cmp(other.ip()).then(self.port().cmp(&other.port()))
677-
}
678-
}
679-
680-
#[stable(feature = "rust1", since = "1.0.0")]
681-
impl hash::Hash for SocketAddrV4 {
682-
fn hash<H: hash::Hasher>(&self, s: &mut H) {
683-
(self.port, self.ip).hash(s)
684-
}
685-
}
686-
#[stable(feature = "rust1", since = "1.0.0")]
687-
impl hash::Hash for SocketAddrV6 {
688-
fn hash<H: hash::Hasher>(&self, s: &mut H) {
689-
(self.port, &self.ip, self.flowinfo, self.scope_id).hash(s)
690-
}
691-
}

library/core/tests/net/socket_addr.rs

+11
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,9 @@ fn compare() {
199199
let v6_1 = "[2001:db8:f00::1002]:23456".parse::<SocketAddrV6>().unwrap();
200200
let v6_2 = "[2001:db8:f00::2001]:12345".parse::<SocketAddrV6>().unwrap();
201201
let v6_3 = "[2001:db8:f00::2001]:23456".parse::<SocketAddrV6>().unwrap();
202+
let v6_4 = "[2001:db8:f00::2001%42]:23456".parse::<SocketAddrV6>().unwrap();
203+
let mut v6_5 = "[2001:db8:f00::2001]:23456".parse::<SocketAddrV6>().unwrap();
204+
v6_5.set_flowinfo(17);
202205

203206
// equality
204207
assert_eq!(v4_1, v4_1);
@@ -207,6 +210,8 @@ fn compare() {
207210
assert_eq!(SocketAddr::V6(v6_1), SocketAddr::V6(v6_1));
208211
assert!(v4_1 != v4_2);
209212
assert!(v6_1 != v6_2);
213+
assert!(v6_3 != v6_4);
214+
assert!(v6_3 != v6_5);
210215

211216
// compare different addresses
212217
assert!(v4_1 < v4_2);
@@ -226,6 +231,12 @@ fn compare() {
226231
assert!(v4_3 > v4_1);
227232
assert!(v6_3 > v6_1);
228233

234+
// compare the same address with different scope_id
235+
assert!(v6_3 < v6_4);
236+
237+
// compare the same address with different flowinfo
238+
assert!(v6_3 < v6_5);
239+
229240
// compare with an inferred right-hand side
230241
assert_eq!(v4_1, "224.120.45.1:23456".parse().unwrap());
231242
assert_eq!(v6_1, "[2001:db8:f00::1002]:23456".parse().unwrap());

0 commit comments

Comments
 (0)