1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/rand_util.h"
11 #include "base/file_util.h"
12 #include "base/lazy_instance.h"
13 #include "base/logging.h"
17 // We keep the file descriptor for /dev/urandom around so we don't need to
18 // reopen it (which is expensive), and since we may not even be able to reopen
19 // it if we are later put in a sandbox. This class wraps the file descriptor so
20 // we can use LazyInstance to handle opening it on the first access.
24 fd_
= open("/dev/urandom", O_RDONLY
);
25 DCHECK_GE(fd_
, 0) << "Cannot open /dev/urandom: " << errno
;
32 int fd() const { return fd_
; }
38 base::LazyInstance
<URandomFd
>::Leaky g_urandom_fd
= LAZY_INSTANCE_INITIALIZER
;
44 // NOTE: This function must be cryptographically secure. http://crbug.com/140076
48 int urandom_fd
= g_urandom_fd
.Pointer()->fd();
49 bool success
= file_util::ReadFromFD(urandom_fd
,
50 reinterpret_cast<char*>(&number
),
57 int GetUrandomFD(void) {
58 return g_urandom_fd
.Pointer()->fd();