author | ymh <ymh.work@gmail.com> |
Tue, 22 Oct 2019 16:11:46 +0200 | |
changeset 15 | 3d4e9c994f10 |
parent 9 | 177826044cd9 |
child 19 | 3d72ae0968f4 |
permissions | -rw-r--r-- |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
1 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
2 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
3 |
* Random_* Compatibility Library |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
4 |
* for using the new PHP 7 random_* API in PHP 5 projects |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
5 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
6 |
* The MIT License (MIT) |
9 | 7 |
* |
8 |
* Copyright (c) 2015 - 2017 Paragon Initiative Enterprises |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
9 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
10 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
11 |
* of this software and associated documentation files (the "Software"), to deal |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
12 |
* in the Software without restriction, including without limitation the rights |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
13 |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
14 |
* copies of the Software, and to permit persons to whom the Software is |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
15 |
* furnished to do so, subject to the following conditions: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
16 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
17 |
* The above copyright notice and this permission notice shall be included in |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
18 |
* all copies or substantial portions of the Software. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
19 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
20 |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
21 |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
22 |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
23 |
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
24 |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
25 |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
26 |
* SOFTWARE. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
27 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
28 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
29 |
if (!defined('RANDOM_COMPAT_READ_BUFFER')) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
30 |
define('RANDOM_COMPAT_READ_BUFFER', 8); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
31 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
32 |
|
9 | 33 |
if (!is_callable('random_bytes')) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
34 |
/** |
9 | 35 |
* Unless open_basedir is enabled, use /dev/urandom for |
36 |
* random numbers in accordance with best practices |
|
37 |
* |
|
38 |
* Why we use /dev/urandom and not /dev/random |
|
39 |
* @ref http://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers |
|
40 |
* |
|
41 |
* @param int $bytes |
|
42 |
* |
|
43 |
* @throws Exception |
|
44 |
* |
|
45 |
* @return string |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
46 |
*/ |
9 | 47 |
function random_bytes($bytes) |
48 |
{ |
|
49 |
static $fp = null; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
50 |
/** |
9 | 51 |
* This block should only be run once |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
52 |
*/ |
9 | 53 |
if (empty($fp)) { |
54 |
/** |
|
55 |
* We use /dev/urandom if it is a char device. |
|
56 |
* We never fall back to /dev/random |
|
57 |
*/ |
|
58 |
$fp = fopen('/dev/urandom', 'rb'); |
|
59 |
if (!empty($fp)) { |
|
60 |
$st = fstat($fp); |
|
61 |
if (($st['mode'] & 0170000) !== 020000) { |
|
62 |
fclose($fp); |
|
63 |
$fp = false; |
|
64 |
} |
|
65 |
} |
|
66 |
||
67 |
if (!empty($fp)) { |
|
68 |
/** |
|
69 |
* stream_set_read_buffer() does not exist in HHVM |
|
70 |
* |
|
71 |
* If we don't set the stream's read buffer to 0, PHP will |
|
72 |
* internally buffer 8192 bytes, which can waste entropy |
|
73 |
* |
|
74 |
* stream_set_read_buffer returns 0 on success |
|
75 |
*/ |
|
76 |
if (is_callable('stream_set_read_buffer')) { |
|
77 |
stream_set_read_buffer($fp, RANDOM_COMPAT_READ_BUFFER); |
|
78 |
} |
|
79 |
if (is_callable('stream_set_chunk_size')) { |
|
80 |
stream_set_chunk_size($fp, RANDOM_COMPAT_READ_BUFFER); |
|
81 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
82 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
83 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
84 |
|
9 | 85 |
try { |
86 |
$bytes = RandomCompat_intval($bytes); |
|
87 |
} catch (TypeError $ex) { |
|
88 |
throw new TypeError( |
|
89 |
'random_bytes(): $bytes must be an integer' |
|
90 |
); |
|
91 |
} |
|
92 |
||
93 |
if ($bytes < 1) { |
|
94 |
throw new Error( |
|
95 |
'Length must be greater than 0' |
|
96 |
); |
|
97 |
} |
|
98 |
||
99 |
/** |
|
100 |
* This if() block only runs if we managed to open a file handle |
|
101 |
* |
|
102 |
* It does not belong in an else {} block, because the above |
|
103 |
* if (empty($fp)) line is logic that should only be run once per |
|
104 |
* page load. |
|
105 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
106 |
if (!empty($fp)) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
107 |
/** |
9 | 108 |
* @var int |
109 |
*/ |
|
110 |
$remaining = $bytes; |
|
111 |
||
112 |
/** |
|
113 |
* @var string|bool |
|
114 |
*/ |
|
115 |
$buf = ''; |
|
116 |
||
117 |
/** |
|
118 |
* We use fread() in a loop to protect against partial reads |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
119 |
*/ |
9 | 120 |
do { |
121 |
/** |
|
122 |
* @var string|bool |
|
123 |
*/ |
|
124 |
$read = fread($fp, $remaining); |
|
125 |
if (!is_string($read)) { |
|
126 |
if ($read === false) { |
|
127 |
/** |
|
128 |
* We cannot safely read from the file. Exit the |
|
129 |
* do-while loop and trigger the exception condition |
|
130 |
* |
|
131 |
* @var string|bool |
|
132 |
*/ |
|
133 |
$buf = false; |
|
134 |
break; |
|
135 |
} |
|
136 |
} |
|
137 |
/** |
|
138 |
* Decrease the number of bytes returned from remaining |
|
139 |
*/ |
|
140 |
$remaining -= RandomCompat_strlen($read); |
|
141 |
/** |
|
142 |
* @var string|bool |
|
143 |
*/ |
|
144 |
$buf = $buf . $read; |
|
145 |
} while ($remaining > 0); |
|
146 |
||
147 |
/** |
|
148 |
* Is our result valid? |
|
149 |
*/ |
|
150 |
if (is_string($buf)) { |
|
151 |
if (RandomCompat_strlen($buf) === $bytes) { |
|
152 |
/** |
|
153 |
* Return our random entropy buffer here: |
|
154 |
*/ |
|
155 |
return $buf; |
|
156 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
157 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
158 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
159 |
|
9 | 160 |
/** |
161 |
* If we reach here, PHP has failed us. |
|
162 |
*/ |
|
163 |
throw new Exception( |
|
164 |
'Error reading from source device' |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
165 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
166 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
167 |
} |