blob: f23330ade711be54674c703cecdca7a1544048db [file] [log] [blame]
mark@chromium.orgb93c0542008-09-30 07:18:01 +09001// Copyright (c) 2008 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.
4
5#include "base/rand_util.h"
agl@chromium.orgba637ac2010-03-05 05:18:55 +09006#include "base/rand_util_c.h"
mark@chromium.orgb93c0542008-09-30 07:18:01 +09007
deanm@chromium.org2f749ea2009-06-26 19:00:02 +09008#include <errno.h>
mark@chromium.orgb93c0542008-09-30 07:18:01 +09009#include <fcntl.h>
mark@chromium.orgb93c0542008-09-30 07:18:01 +090010#include <unistd.h>
11
phajdan.jr@chromium.org23725932009-04-23 21:38:08 +090012#include "base/file_util.h"
deanm@chromium.org2f749ea2009-06-26 19:00:02 +090013#include "base/lazy_instance.h"
mark@chromium.orgb93c0542008-09-30 07:18:01 +090014#include "base/logging.h"
15
deanm@chromium.org2f749ea2009-06-26 19:00:02 +090016namespace {
17
18// We keep the file descriptor for /dev/urandom around so we don't need to
19// reopen it (which is expensive), and since we may not even be able to reopen
20// it if we are later put in a sandbox. This class wraps the file descriptor so
21// we can use LazyInstance to handle opening it on the first access.
22class URandomFd {
23 public:
24 URandomFd() {
25 fd_ = open("/dev/urandom", O_RDONLY);
brettw@chromium.org5faed3c2011-10-27 06:48:00 +090026 DCHECK_GE(fd_, 0) << "Cannot open /dev/urandom: " << errno;
deanm@chromium.org2f749ea2009-06-26 19:00:02 +090027 }
28
29 ~URandomFd() {
30 close(fd_);
31 }
32
33 int fd() const { return fd_; }
34
35 private:
36 int fd_;
37};
38
39base::LazyInstance<URandomFd> g_urandom_fd(base::LINKER_INITIALIZED);
40
41} // namespace
42
mark@chromium.orgb93c0542008-09-30 07:18:01 +090043namespace base {
44
deanm@chromium.org48c40ce2008-11-15 08:28:29 +090045uint64 RandUint64() {
mark@chromium.orgb93c0542008-09-30 07:18:01 +090046 uint64 number;
47
deanm@chromium.org2f749ea2009-06-26 19:00:02 +090048 int urandom_fd = g_urandom_fd.Pointer()->fd();
phajdan.jr@chromium.org23725932009-04-23 21:38:08 +090049 bool success = file_util::ReadFromFD(urandom_fd,
50 reinterpret_cast<char*>(&number),
51 sizeof(number));
52 CHECK(success);
mark@chromium.orgb93c0542008-09-30 07:18:01 +090053
54 return number;
55}
56
57} // namespace base
agl@chromium.orgba637ac2010-03-05 05:18:55 +090058
59int GetUrandomFD(void) {
60 return g_urandom_fd.Pointer()->fd();
61}