VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/posix/rand-posix.cpp@ 37596

Last change on this file since 37596 was 37596, checked in by vboxsync, 13 years ago

*: RTFILE becomes a pointer, RTFileOpen++ expands it's flags paramter from uint32_t to uint64_t.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.0 KB
Line 
1/* $Id: rand-posix.cpp 37596 2011-06-22 19:30:06Z vboxsync $ */
2/** @file
3 * IPRT - Random Numbers and Byte Streams, POSIX.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Oracle Corporation
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/mem.h>
47#include <iprt/err.h>
48#include <iprt/assert.h>
49#include "internal/rand.h"
50#include "internal/magics.h"
51
52
53
54/** @copydoc RTRANDINT::pfnGetBytes */
55static DECLCALLBACK(void) rtRandAdvPosixGetBytes(PRTRANDINT pThis, uint8_t *pb, size_t cb)
56{
57 ssize_t cbRead = read(pThis->u.File.hFile, pb, cb);
58 if ((size_t)cbRead != cb)
59 {
60 ssize_t cTries = RT_MIN(cb, 256);
61 do
62 {
63 if (cbRead > 0)
64 {
65 cb -= cbRead;
66 pb += cbRead;
67 }
68 cbRead = read(pThis->u.File.hFile, pb, cb);
69 } while ( (size_t)cbRead != cb
70 && cTries-- > 0);
71 AssertReleaseMsg((size_t)cbRead == cb, ("%zu != %zu, cTries=%zd errno=%d\n", cbRead, cb, cTries, errno));
72 }
73}
74
75
76/** @copydoc RTRANDINT::pfnDestroy */
77static DECLCALLBACK(int) rtRandAdvPosixDestroy(PRTRANDINT pThis)
78{
79 pThis->u32Magic = ~RTRANDINT_MAGIC;
80 int fd = pThis->u.File.hFile;
81 pThis->u.File.hFile = -1;
82 RTMemFree(pThis);
83 close(fd);
84 return VINF_SUCCESS;
85}
86
87
88static int rtRandAdvPosixCreateSystem(PRTRAND phRand, const char *pszDev) RT_NO_THROW
89{
90 /*
91 * Try open it first and then setup the handle structure.
92 */
93 int fd = open(pszDev, O_RDONLY);
94 if (fd < 0)
95 return RTErrConvertFromErrno(errno);
96 int rc;
97 if (fcntl(fd, F_SETFD, FD_CLOEXEC) != -1)
98 {
99 PRTRANDINT pThis = (PRTRANDINT)RTMemAlloc(sizeof(*pThis));
100 if (pThis)
101 {
102 pThis->u32Magic = RTRANDINT_MAGIC;
103 pThis->pfnGetBytes = rtRandAdvPosixGetBytes;
104 pThis->pfnGetU32 = rtRandAdvSynthesizeU32FromBytes;
105 pThis->pfnGetU64 = rtRandAdvSynthesizeU64FromBytes;
106 pThis->pfnSeed = rtRandAdvStubSeed;
107 pThis->pfnSaveState = rtRandAdvStubSaveState;
108 pThis->pfnRestoreState = rtRandAdvStubRestoreState;
109 pThis->pfnDestroy = rtRandAdvPosixDestroy;
110 pThis->u.File.hFile = fd;
111
112 *phRand = pThis;
113 return VINF_SUCCESS;
114 }
115
116 /* bail out */
117 rc = VERR_NO_MEMORY;
118 }
119 else
120 rc = RTErrConvertFromErrno(errno);
121 close(fd);
122 return rc;
123}
124
125
126RTDECL(int) RTRandAdvCreateSystemFaster(PRTRAND phRand) RT_NO_THROW
127{
128 return rtRandAdvPosixCreateSystem(phRand, "/dev/urandom");
129}
130
131
132RTDECL(int) RTRandAdvCreateSystemTruer(PRTRAND phRand) RT_NO_THROW
133{
134 return rtRandAdvPosixCreateSystem(phRand, "/dev/random");
135}
136
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette