1 | /* $Id: rand-posix.cpp 8245 2008-04-21 17:24:28Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Random Numbers and Byte Streams, POSIX.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 |
|
---|
32 | /*******************************************************************************
|
---|
33 | * Header Files *
|
---|
34 | *******************************************************************************/
|
---|
35 | #include <errno.h>
|
---|
36 | #include <sys/stat.h>
|
---|
37 | #include <sys/types.h>
|
---|
38 | #include <sys/ioctl.h>
|
---|
39 | #include <sys/fcntl.h>
|
---|
40 | #include <fcntl.h>
|
---|
41 | #ifdef _MSC_VER
|
---|
42 | # include <io.h>
|
---|
43 | # include <stdio.h>
|
---|
44 | #else
|
---|
45 | # include <unistd.h>
|
---|
46 | # include <sys/time.h>
|
---|
47 | #endif
|
---|
48 |
|
---|
49 | #include <iprt/rand.h>
|
---|
50 | #include <iprt/err.h>
|
---|
51 | #include <iprt/assert.h>
|
---|
52 | #include "internal/rand.h"
|
---|
53 |
|
---|
54 |
|
---|
55 | /*******************************************************************************
|
---|
56 | * Global Variables *
|
---|
57 | *******************************************************************************/
|
---|
58 | /** File handle of /dev/random. */
|
---|
59 | static int g_fhDevRandom = -1;
|
---|
60 |
|
---|
61 |
|
---|
62 | void rtRandLazyInitNative(void)
|
---|
63 | {
|
---|
64 | if (g_fhDevRandom != -1)
|
---|
65 | return;
|
---|
66 |
|
---|
67 | int fh = open("/dev/urandom", O_RDONLY);
|
---|
68 | if (fh <= 0)
|
---|
69 | fh = open("/dev/random", O_RDONLY | O_NONBLOCK);
|
---|
70 | if (fh >= 0)
|
---|
71 | {
|
---|
72 | fcntl(fh, F_SETFD, FD_CLOEXEC);
|
---|
73 | g_fhDevRandom = fh;
|
---|
74 | }
|
---|
75 | }
|
---|
76 |
|
---|
77 |
|
---|
78 | int rtRandGenBytesNative(void *pv, size_t cb)
|
---|
79 | {
|
---|
80 | int fh = g_fhDevRandom;
|
---|
81 | if (fh == -1)
|
---|
82 | return VERR_NOT_SUPPORTED;
|
---|
83 |
|
---|
84 | ssize_t cbRead = read(fh, pv, cb);
|
---|
85 | if ((size_t)cbRead != cb)
|
---|
86 | {
|
---|
87 | /*
|
---|
88 | * Use the fallback for the remainder if /dev/urandom / /dev/random
|
---|
89 | * is out to lunch.
|
---|
90 | */
|
---|
91 | if (cbRead <= 0)
|
---|
92 | rtRandGenBytesFallback(pv, cb);
|
---|
93 | else
|
---|
94 | {
|
---|
95 | AssertRelease((size_t)cbRead < cb);
|
---|
96 | rtRandGenBytesFallback((uint8_t *)pv + cbRead, cb - cbRead);
|
---|
97 | }
|
---|
98 | }
|
---|
99 | return VINF_SUCCESS;
|
---|
100 | }
|
---|
101 |
|
---|