Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2022-05-01 17:37:39 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2022-05-01 17:37:39 +0300
commitb5624be6df95fd26d19051af5d02001bbe8f2dd8 (patch)
tree8a43835c6a9a7bf2f98e97a652d180f3b406e380 /util-linux
parent74716580380d609165cc0be1ae37ee52d77243b2 (diff)
seedrng: reduce MAX_SEED_LEN from 512 to 256
As proposed by Jason. getrandom() is more likely to block on reads larger than this. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/seedrng.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/util-linux/seedrng.c b/util-linux/seedrng.c
index 2965f3d47..04e52a996 100644
--- a/util-linux/seedrng.c
+++ b/util-linux/seedrng.c
@@ -56,7 +56,11 @@
enum {
MIN_SEED_LEN = SHA256_OUTSIZE,
- MAX_SEED_LEN = 512
+ /* kernels < 5.18 could return short reads from getrandom()
+ * if signal is pending and length is > 256.
+ * Let's limit our reads to 256 bytes.
+ */
+ MAX_SEED_LEN = 256,
};
static size_t determine_optimal_seed_len(void)