VirtualBox

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

Last change on this file since 43363 was 43363, checked in by vboxsync, 12 years ago

Haiku Additions.

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