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

Side by Side Diff: runtime/bin/crypto_openbsd.cc

Issue 1559053002: Refs #10260 OpenBSD support #25327 Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Replace // FIXME with // TODO(mulander) Created 4 years, 11 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "platform/globals.h" 5 #include "platform/globals.h"
6 #if defined(TARGET_OS_ANDROID) 6 #if defined(TARGET_OS_OPENBSD)
7 7
8 #include <errno.h> // NOLINT 8 #include <errno.h> // NOLINT
9 #include <fcntl.h> // NOLINT 9 #include <fcntl.h> // NOLINT
10 10
11 #include "bin/fdutils.h" 11 #include "bin/fdutils.h"
12 #include "bin/crypto.h" 12 #include "bin/crypto.h"
13 13
14 #include "platform/signal_blocker.h" 14 #include "platform/signal_blocker.h"
15 15
16 16
17 namespace dart { 17 namespace dart {
18 namespace bin { 18 namespace bin {
19 19
20 // TODO(mulander): Consider using getentropy(2)
Ivan Posva 2016/01/11 23:58:40 Once you get there, please explain why you do use
mulander 2016/01/12 00:22:45 You are correct. When that comment was made it was
20 bool Crypto::GetRandomBytes(intptr_t count, uint8_t* buffer) { 21 bool Crypto::GetRandomBytes(intptr_t count, uint8_t* buffer) {
21 ThreadSignalBlocker signal_blocker(SIGPROF); 22 ThreadSignalBlocker signal_blocker(SIGPROF);
22 intptr_t fd = TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER( 23 intptr_t fd = TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER(
23 open("/dev/urandom", O_RDONLY)); 24 open("/dev/urandom", O_RDONLY));
24 if (fd < 0) return false; 25 if (fd < 0) return false;
25 intptr_t bytes_read = 0; 26 intptr_t bytes_read = 0;
26 do { 27 do {
27 int res = TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER( 28 int res = TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER(
28 read(fd, buffer + bytes_read, count - bytes_read)); 29 read(fd, buffer + bytes_read, count - bytes_read));
29 if (res < 0) { 30 if (res < 0) {
30 int err = errno; 31 int err = errno;
31 VOID_TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER(close(fd)); 32 VOID_TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER(close(fd));
32 errno = err; 33 errno = err;
33 return false; 34 return false;
34 } 35 }
35 bytes_read += res; 36 bytes_read += res;
36 } while (bytes_read < count); 37 } while (bytes_read < count);
37 VOID_TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER(close(fd)); 38 VOID_TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER(close(fd));
38 return true; 39 return true;
39 } 40 }
40 41
41 } // namespace bin 42 } // namespace bin
42 } // namespace dart 43 } // namespace dart
43 44
44 #endif // defined(TARGET_OS_ANDROID) 45 #endif // defined(TARGET_OS_OPENBSD)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698