Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: patches/nss-urandom-abort.patch

Issue 15990009: Call abort() if NSS cannot read from /dev/urandom. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Remove the stat change Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « nss/lib/freebl/unix_rand.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Index: nss/lib/freebl/unix_rand.c
2 ===================================================================
3 --- nss/lib/freebl/unix_rand.c (revision 204056)
4 +++ nss/lib/freebl/unix_rand.c (working copy)
5 @@ -918,6 +918,16 @@
6 || defined(HPUX)
7 if (bytes)
8 return;
9 +
10 + /*
11 + * Modified to abort the process if it failed to read from /dev/urandom.
12 + *
13 + * See crbug.com/244661 for details.
14 + */
15 + fprintf(stderr, "[ERROR:%s(%d)] NSS failed to read from /dev/urandom. "
16 + "Abort process.\n", __FILE__, __LINE__);
17 + fflush(stderr);
18 + abort();
19 #endif
20
21 #ifdef SOLARIS
22 @@ -1132,7 +1142,15 @@
23
24 file = fopen("/dev/urandom", "r");
25 if (file == NULL) {
26 - return rng_systemFromNoise(dest, maxLen);
27 + /*
28 + * Modified to abort the process if it failed to read from /dev/urandom.
29 + *
30 + * See crbug.com/244661 for details.
31 + */
32 + fprintf(stderr, "[ERROR:%s(%d)] NSS failed to read from /dev/urandom. "
33 + "Abort process.\n", __FILE__, __LINE__);
34 + fflush(stderr);
35 + abort();
36 }
37 while (maxLen > fileBytes) {
38 bytes = maxLen - fileBytes;
OLDNEW
« no previous file with comments | « nss/lib/freebl/unix_rand.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698