From 5a409e6ed4be788345ccb5b6e14e380334b2424f Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Wed, 25 Feb 2015 00:10:21 +0000 Subject: [PATCH] LUCENE-6292: seed StringHelper better git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1662141 13f79535-47bb-0310-9956-ffa450edef68 --- lucene/CHANGES.txt | 2 + .../org/apache/lucene/util/StringHelper.java | 37 +++++++++++++------ 2 files changed, 28 insertions(+), 11 deletions(-) diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt index cf7bdad151f..f7db0690f76 100644 --- a/lucene/CHANGES.txt +++ b/lucene/CHANGES.txt @@ -170,6 +170,8 @@ Other * LUCENE-6239: Removed RAMUsageEstimator's sun.misc.Unsafe calls. (Robert Muir, Dawid Weiss, Uwe Schindler) +* LUCENE-6292: Seed StringHelper better. (Robert Muir) + Changes in Runtime Behavior * LUCENE-6255: PhraseQuery now ignores leading holes and requires that diff --git a/lucene/core/src/java/org/apache/lucene/util/StringHelper.java b/lucene/core/src/java/org/apache/lucene/util/StringHelper.java index 26686355dcd..e3138a33fe1 100644 --- a/lucene/core/src/java/org/apache/lucene/util/StringHelper.java +++ b/lucene/core/src/java/org/apache/lucene/util/StringHelper.java @@ -17,7 +17,10 @@ package org.apache.lucene.util; * limitations under the License. */ +import java.io.DataInputStream; import java.math.BigInteger; +import java.nio.file.Files; +import java.nio.file.Paths; import java.util.Arrays; import java.util.Properties; @@ -253,18 +256,30 @@ public abstract class StringHelper { x0 = Long.parseLong(prop, 16); x1 = x0; } else { - // Randomess from 3 different sources: - x0 = System.nanoTime(); - x1 = StringHelper.class.hashCode() << 32; - StringBuilder sb = new StringBuilder(); - // Properties can vary across JVM instances: - Properties p = System.getProperties(); - for (String s: p.stringPropertyNames()) { - sb.append(s); - sb.append(p.getProperty(s)); + // seed from /dev/urandom, if its available + try (DataInputStream is = new DataInputStream(Files.newInputStream(Paths.get("/dev/urandom")))) { + x0 = is.readLong(); + x1 = is.readLong(); + } catch (Exception unavailable) { + // may not be available on this platform + // fall back to lower quality randomness from 3 different sources: + x0 = System.nanoTime(); + x1 = StringHelper.class.hashCode() << 32; + + StringBuilder sb = new StringBuilder(); + // Properties can vary across JVM instances: + try { + Properties p = System.getProperties(); + for (String s: p.stringPropertyNames()) { + sb.append(s); + sb.append(p.getProperty(s)); + } + x1 |= sb.toString().hashCode(); + } catch (SecurityException notallowed) { + // getting Properties requires wildcard read-write: may not be allowed + x1 |= StringBuffer.class.hashCode(); + } } - x1 |= sb.toString().hashCode(); - // TODO: maybe read from /dev/urandom when it's available? } // Use a few iterations of xorshift128 to scatter the seed