Skip to content

Commit cae6ab1

Browse files
authored
Auto merge of #37470 - arthurprs:sip-smaller, r=alexcrichton
Don't reuse RandomState seeds cc #36481
2 parents 0883996 + eba93c3 commit cae6ab1

File tree

1 file changed

+12
-14
lines changed
  • src/libstd/collections/hash

1 file changed

+12
-14
lines changed

src/libstd/collections/hash/map.rs

+12-14
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
use self::Entry::*;
1212
use self::VacantEntryState::*;
1313

14+
use cell::Cell;
1415
use borrow::Borrow;
1516
use cmp::max;
1617
use fmt::{self, Debug};
@@ -2049,24 +2050,21 @@ impl RandomState {
20492050
// many hash maps are created on a thread. To solve this performance
20502051
// trap we cache the first set of randomly generated keys per-thread.
20512052
//
2052-
// In doing this, however, we lose the property that all hash maps have
2053-
// nondeterministic iteration order as all of those created on the same
2054-
// thread would have the same hash keys. This property has been nice in
2055-
// the past as it allows for maximal flexibility in the implementation
2056-
// of `HashMap` itself.
2057-
//
2058-
// The constraint here (if there even is one) is just that maps created
2059-
// on the same thread have the same iteration order, and that *may* be
2060-
// relied upon even though it is not a documented guarantee at all of
2061-
// the `HashMap` type. In any case we've decided that this is reasonable
2062-
// for now, so caching keys thread-locally seems fine.
2063-
thread_local!(static KEYS: (u64, u64) = {
2053+
// Later in #36481 it was discovered that exposing a deterministic
2054+
// iteration order allows a form of DOS attack. To counter that we
2055+
// increment one of the seeds on every RandomState creation, giving
2056+
// every corresponding HashMap a different iteration order.
2057+
thread_local!(static KEYS: Cell<(u64, u64)> = {
20642058
let r = rand::OsRng::new();
20652059
let mut r = r.expect("failed to create an OS RNG");
2066-
(r.gen(), r.gen())
2060+
Cell::new((r.gen(), r.gen()))
20672061
});
20682062

2069-
KEYS.with(|&(k0, k1)| RandomState { k0: k0, k1: k1 })
2063+
KEYS.with(|keys| {
2064+
let (k0, k1) = keys.get();
2065+
keys.set((k0.wrapping_add(1), k1));
2066+
RandomState { k0: k0, k1: k1 }
2067+
})
20702068
}
20712069
}
20722070

0 commit comments

Comments
 (0)