aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-05-18 17:28:21 +0200
committerKim Alvefur <zash@zash.se>2019-05-18 17:28:21 +0200
commit23da49fba0397a2c8f2701efb22634f0a3f68bd8 (patch)
treecd21fcbaaf5001bbb68036624fdcc975e7f7bee9 /util
parent32b4030f4327148e2edf83ac4354e4d62039b3c0 (diff)
downloadprosody-23da49fba0397a2c8f2701efb22634f0a3f68bd8.tar.gz
prosody-23da49fba0397a2c8f2701efb22634f0a3f68bd8.zip
util.random: Handle unlikely read errors from /dev/urandom (see #1313)
Diffstat (limited to 'util')
-rw-r--r--util/random.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/random.lua b/util/random.lua
index d8a84514..8ae06b49 100644
--- a/util/random.lua
+++ b/util/random.lua
@@ -12,7 +12,11 @@ if ok then return crand; end
local urandom, urandom_err = io.open("/dev/urandom", "r");
local function bytes(n)
- return urandom:read(n);
+ local data, err = urandom:read(n);
+ if not data then
+ error("Unable to retrieve data from secure random number generator (/dev/urandom): "..err);
+ end
+ return data;
end
if not urandom then