1 | /* $Id: rand-posix.cpp 5999 2007-12-07 15:05:06Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - Random Numbers and Byte Streams, POSIX.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*******************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *******************************************************************************/
|
---|
31 | #include <errno.h>
|
---|
32 | #include <sys/stat.h>
|
---|
33 | #include <sys/types.h>
|
---|
34 | #include <sys/ioctl.h>
|
---|
35 | #include <sys/fcntl.h>
|
---|
36 | #include <fcntl.h>
|
---|
37 | #ifdef _MSC_VER
|
---|
38 | # include <io.h>
|
---|
39 | # include <stdio.h>
|
---|
40 | #else
|
---|
41 | # include <unistd.h>
|
---|
42 | # include <sys/time.h>
|
---|
43 | #endif
|
---|
44 |
|
---|
45 | #include <iprt/rand.h>
|
---|
46 | #include <iprt/err.h>
|
---|
47 | #include <iprt/assert.h>
|
---|
48 | #include "internal/rand.h"
|
---|
49 |
|
---|
50 |
|
---|
51 | /*******************************************************************************
|
---|
52 | * Global Variables *
|
---|
53 | *******************************************************************************/
|
---|
54 | /** File handle of /dev/random. */
|
---|
55 | static int g_fhDevRandom = -1;
|
---|
56 |
|
---|
57 |
|
---|
58 | void rtRandLazyInitNative(void)
|
---|
59 | {
|
---|
60 | if (g_fhDevRandom != -1)
|
---|
61 | return;
|
---|
62 |
|
---|
63 | int fh = open("/dev/urandom", O_RDONLY);
|
---|
64 | if (fh <= 0)
|
---|
65 | fh = open("/dev/random", O_RDONLY | O_NONBLOCK);
|
---|
66 | if (fh >= 0)
|
---|
67 | {
|
---|
68 | fcntl(fh, F_SETFD, FD_CLOEXEC);
|
---|
69 | g_fhDevRandom = fh;
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|
73 |
|
---|
74 | int rtRandGenBytesNative(void *pv, size_t cb)
|
---|
75 | {
|
---|
76 | int fh = g_fhDevRandom;
|
---|
77 | if (fh == -1)
|
---|
78 | return VERR_NOT_SUPPORTED;
|
---|
79 |
|
---|
80 | ssize_t cbRead = read(fh, pv, cb);
|
---|
81 | if ((size_t)cbRead != cb)
|
---|
82 | {
|
---|
83 | /*
|
---|
84 | * Use the fallback for the remainder if /dev/urandom / /dev/random
|
---|
85 | * is out to lunch.
|
---|
86 | */
|
---|
87 | if (cbRead <= 0)
|
---|
88 | rtRandGenBytesFallback(pv, cb);
|
---|
89 | else
|
---|
90 | {
|
---|
91 | AssertRelease((size_t)cbRead < cb);
|
---|
92 | rtRandGenBytesFallback((uint8_t *)pv + cbRead, cb - cbRead);
|
---|
93 | }
|
---|
94 | }
|
---|
95 | return VINF_SUCCESS;
|
---|
96 | }
|
---|
97 |
|
---|