blob: 2c1653d322f7cc725c46bd39324a7806b3f2956b [file] [log] [blame]
[email protected]ead8c1f2012-05-30 14:26:131// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]05f9b682008-09-29 22:18:012// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/rand_util.h"
6
[email protected]09e5f47a2009-06-26 10:00:027#include <errno.h>
[email protected]05f9b682008-09-29 22:18:018#include <fcntl.h>
avi9b6f42932015-12-26 22:15:149#include <stddef.h>
10#include <stdint.h>
[email protected]05f9b682008-09-29 22:18:0111#include <unistd.h>
12
[email protected]e3177dd52014-08-13 20:22:1413#include "base/files/file_util.h"
[email protected]09e5f47a2009-06-26 10:00:0214#include "base/lazy_instance.h"
[email protected]05f9b682008-09-29 22:18:0115#include "base/logging.h"
mark4cec4942017-02-28 23:56:0016#include "base/posix/eintr_wrapper.h"
[email protected]05f9b682008-09-29 22:18:0117
[email protected]09e5f47a2009-06-26 10:00:0218namespace {
19
20// We keep the file descriptor for /dev/urandom around so we don't need to
21// reopen it (which is expensive), and since we may not even be able to reopen
22// it if we are later put in a sandbox. This class wraps the file descriptor so
23// we can use LazyInstance to handle opening it on the first access.
24class URandomFd {
25 public:
rayb0088ee52017-04-26 22:35:0826#if defined(OS_AIX)
27 // AIX has no 64-bit support for open falgs such as -
28 // O_CLOEXEC, O_NOFOLLOW and O_TTY_INIT
29 URandomFd() : fd_(HANDLE_EINTR(open("/dev/urandom", O_RDONLY))) {
30 DCHECK_GE(fd_, 0) << "Cannot open /dev/urandom: " << errno;
31 }
32#else
mark4cec4942017-02-28 23:56:0033 URandomFd() : fd_(HANDLE_EINTR(open("/dev/urandom", O_RDONLY | O_CLOEXEC))) {
[email protected]a42d4632011-10-26 21:48:0034 DCHECK_GE(fd_, 0) << "Cannot open /dev/urandom: " << errno;
[email protected]09e5f47a2009-06-26 10:00:0235 }
rayb0088ee52017-04-26 22:35:0836#endif
[email protected]09e5f47a2009-06-26 10:00:0237
[email protected]c910c5a2014-01-23 02:14:2838 ~URandomFd() { close(fd_); }
[email protected]09e5f47a2009-06-26 10:00:0239
40 int fd() const { return fd_; }
41
42 private:
[email protected]c910c5a2014-01-23 02:14:2843 const int fd_;
[email protected]09e5f47a2009-06-26 10:00:0244};
45
[email protected]6ecc0962012-12-21 02:59:5046base::LazyInstance<URandomFd>::Leaky g_urandom_fd = LAZY_INSTANCE_INITIALIZER;
[email protected]09e5f47a2009-06-26 10:00:0247
48} // namespace
49
[email protected]05f9b682008-09-29 22:18:0150namespace base {
51
[email protected]c910c5a2014-01-23 02:14:2852void RandBytes(void* output, size_t output_length) {
53 const int urandom_fd = g_urandom_fd.Pointer()->fd();
54 const bool success =
55 ReadFromFD(urandom_fd, static_cast<char*>(output), output_length);
56 CHECK(success);
57}
58
[email protected]1d87fad2010-03-04 20:18:5559int GetUrandomFD(void) {
60 return g_urandom_fd.Pointer()->fd();
61}
[email protected]ead8c1f2012-05-30 14:26:1362
63} // namespace base