[PATCH] D23671: libLLVMSupport: Generate random block of arbitrary size

Eugene Leviant via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 26 01:23:14 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL279807: Implement getRandomBytes() function (authored by evgeny777).

Changed prior to commit:
  https://reviews.llvm.org/D23671?vs=68707&id=69326#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D23671

Files:
  llvm/trunk/include/llvm/Support/RandomNumberGenerator.h
  llvm/trunk/lib/Support/RandomNumberGenerator.cpp
  llvm/trunk/lib/Support/Unix/Unix.h

Index: llvm/trunk/include/llvm/Support/RandomNumberGenerator.h
===================================================================
--- llvm/trunk/include/llvm/Support/RandomNumberGenerator.h
+++ llvm/trunk/include/llvm/Support/RandomNumberGenerator.h
@@ -19,6 +19,7 @@
 #include "llvm/Support/Compiler.h"
 #include "llvm/Support/DataTypes.h" // Needed for uint64_t on Windows.
 #include <random>
+#include <system_error>
 
 namespace llvm {
 class StringRef;
@@ -53,6 +54,9 @@
 
   friend class Module;
 };
+
+// Get random vector of specified size
+std::error_code getRandomBytes(void *Buffer, size_t Size);
 }
 
 #endif
Index: llvm/trunk/lib/Support/Unix/Unix.h
===================================================================
--- llvm/trunk/lib/Support/Unix/Unix.h
+++ llvm/trunk/lib/Support/Unix/Unix.h
@@ -48,6 +48,10 @@
 # include <dlfcn.h>
 #endif
 
+#ifdef HAVE_FCNTL_H
+# include <fcntl.h>
+#endif
+
 /// This function builds an error message into \p ErrMsg using the \p prefix
 /// string and the Unix error number given by \p errnum. If errnum is -1, the
 /// default then the value of errno is used.
Index: llvm/trunk/lib/Support/RandomNumberGenerator.cpp
===================================================================
--- llvm/trunk/lib/Support/RandomNumberGenerator.cpp
+++ llvm/trunk/lib/Support/RandomNumberGenerator.cpp
@@ -17,6 +17,11 @@
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/Support/raw_ostream.h"
+#ifdef LLVM_ON_WIN32
+#include "Windows/WindowsSupport.h"
+#else
+#include "Unix/Unix.h"
+#endif
 
 using namespace llvm;
 
@@ -55,3 +60,32 @@
 uint_fast64_t RandomNumberGenerator::operator()() {
   return Generator();
 }
+
+// Get random vector of specified size
+std::error_code llvm::getRandomBytes(void *Buffer, size_t Size) {
+#ifdef LLVM_ON_WIN32
+  HCRYPTPROV hProvider;
+  if (CryptAcquireContext(&hProvider, 0, 0, PROV_RSA_FULL,
+                           CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
+    ScopedCryptContext ScopedHandle(hProvider);
+    if (CryptGenRandom(hProvider, Size, static_cast<BYTE *>(Buffer)))
+      return std::error_code();
+  }
+  return std::error_code(GetLastError(), std::system_category());
+#else
+  int Fd = open("/dev/urandom", O_RDONLY);
+  if (Fd != -1) {
+    std::error_code Ret;
+    ssize_t BytesRead = read(Fd, Buffer, Size);
+    if (BytesRead == -1)
+      Ret = std::error_code(errno, std::system_category());
+    else if (BytesRead != static_cast<ssize_t>(Size))
+      Ret = std::error_code(EIO, std::system_category());
+    if (close(Fd) == -1)
+      Ret = std::error_code(errno, std::system_category());
+
+    return Ret;
+  }
+  return std::error_code(errno, std::system_category());
+#endif
+}


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23671.69326.patch
Type: text/x-patch
Size: 2732 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160826/0671202d/attachment.bin>


More information about the llvm-commits mailing list