]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: tools: seed the statistical PRNG slightly better
authorWilly Tarreau <w@1wt.eu>
Fri, 1 Mar 2024 15:17:47 +0000 (16:17 +0100)
committerWilly Tarreau <w@1wt.eu>
Fri, 1 Mar 2024 15:25:39 +0000 (16:25 +0100)
Thomas Baroux reported a very interesting issue. "balance random" would
systematically assign the same server first upon restart. That comes from
its use of statistical_prng() which is only seeded with the thread number,
and since at low loads threads are assigned to incoming connections in
round robin order, practically speaking, the same thread always gets the
same request and will produce the same random number.

We already have a much better RNG that's also way more expensive, but we
can use it at boot time to seed the PRNG instead of using the thread ID
only.

This needs to be backported to 2.4.

src/tools.c

index b2814b5af2cefbadde8e365389bd6965874bbd8f..e1ba2411ef897ae36e2931b06a24947d3aec7d69 100644 (file)
@@ -6333,7 +6333,7 @@ void *dlopen(const char *filename, int flags)
 static int init_tools_per_thread()
 {
        /* Let's make each thread start from a different position */
-       statistical_prng_state += tid * MAX_THREADS;
+       statistical_prng_state += ha_random32();
        if (!statistical_prng_state)
                statistical_prng_state++;
        return 1;