e35f391fa5
* fhandler.h: Move fcntl.h include here. (fhandler_base::set_flags): Accept supplied_bin argument. Make non-inlined. * dtable.cc (dtable::init_std_file_from_handle): Just use binmode from pc. (reset_to_open_binmode): Use set_flags. * cygwin.din (open): Avoid newlib wrapper. (read): Ditto. (unlink): Ditto. (write): Ditto. * fhandler.cc (fhandler_base::set_flags): Accept supplied_bin argument. Make binmode decisions here. (fhandler_base::open): Avoid using pc if it is NULL. Eliminate binmode logic. Just call set_flags with binmode argument. (fhandler_base::init): Call set_flags with binmode argument. * fhandler_clipboard.cc (fhandler_dev_clipboard::open): Ditto. * fhandler_console.cc (fhandler_console::open): Ditto. (fhandler_console::init): Force binary on open. * fhandler_disk_file.cc (fhandler_disk_file::open): Don't set binmode here. Let it happen in base class. * fhandler_dsp.cc (fhandler_dev_dsp::open): Force binmode open. Set return value appropriately if unable to open. * fhandler_proc.cc (fhandler_proc::open): Make sure flags are set before open_status. * fhandler_process.cc (fhandler_process::open): Ditto. * fhandler_registry.cc (fhandler_registry::open): Ditto. * fhandler_random.cc (fhandler_dev_random::fhandler_dev_random): Ditto. * fhandler_raw.cc (fhandler_dev_raw::open): Force O_BINARY by default. * fhandler_serial.cc (fhandler_serial::init): Ditto. * fhandler_tty.cc (fhandler_tty_slave::open): Ditto. (fhandler_pty_master::open): Ditto. * fhandler_virtual.cc (fhandler_virtual::open): Ditto. * fhandler_windows.cc (fhandler_windows::open): Ditto. * fhandler_zero.cc (fhandler_dev_zero::open): Ditto. * net.cc (fdsock): Ditto. * path.cc (path_conv::check): Avoid checking for extension when error or directory. (set_flags): Set PATH_TEXT explicitly, when appropriate. (mount_info::conv_to_win32_path): Use set_flags() to set path flags. * path.h (PATH_TEXT): New enum. (path_conv::binmode): Return appropriate constant based on binmode. * pipe.cc (make_pipe): Set binmode to O_TEXT xor O_BINARY. * syscalls.cc (setmode_helper): Make debugging message a little clearer. (setmode): Set binmode via set_flags.
166 lines
3.9 KiB
C++
166 lines
3.9 KiB
C++
/* fhandler_random.cc: code to access /dev/random and /dev/urandom
|
|
|
|
Copyright 2000, 2001, 2002 Red Hat, Inc.
|
|
|
|
Written by Corinna Vinschen (vinschen@cygnus.com)
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#include "winsup.h"
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include "cygerrno.h"
|
|
#include "security.h"
|
|
#include "fhandler.h"
|
|
|
|
#define RANDOM 8
|
|
#define URANDOM 9
|
|
|
|
#define PSEUDO_MULTIPLIER (6364136223846793005LL)
|
|
#define PSEUDO_SHIFTVAL (21)
|
|
|
|
fhandler_dev_random::fhandler_dev_random (int nunit)
|
|
: fhandler_base (FH_RANDOM), unit(nunit), crypt_prov((HCRYPTPROV) NULL)
|
|
{
|
|
}
|
|
|
|
int
|
|
fhandler_dev_random::open (path_conv *, int flags, mode_t)
|
|
{
|
|
set_flags (flags & ~O_TEXT, O_BINARY);
|
|
set_open_status ();
|
|
return 1;
|
|
}
|
|
|
|
BOOL
|
|
fhandler_dev_random::crypt_gen_random (void *ptr, size_t len)
|
|
{
|
|
if (!crypt_prov
|
|
&& !CryptAcquireContext (&crypt_prov, NULL, MS_DEF_PROV, PROV_RSA_FULL,
|
|
CRYPT_VERIFYCONTEXT | CRYPT_MACHINE_KEYSET)
|
|
&& !CryptAcquireContext (&crypt_prov, NULL, MS_DEF_PROV, PROV_RSA_FULL,
|
|
CRYPT_VERIFYCONTEXT | CRYPT_MACHINE_KEYSET
|
|
| CRYPT_NEWKEYSET))
|
|
{
|
|
debug_printf ("%E = CryptAquireContext()");
|
|
return FALSE;
|
|
}
|
|
if (!CryptGenRandom (crypt_prov, len, (BYTE *)ptr))
|
|
{
|
|
debug_printf ("%E = CryptGenRandom()");
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
int
|
|
fhandler_dev_random::pseudo_write (const void *ptr, size_t len)
|
|
{
|
|
/* Use buffer to mess up the pseudo random number generator. */
|
|
for (size_t i = 0; i < len; ++i)
|
|
pseudo = (pseudo + ((unsigned char *)ptr)[i]) * PSEUDO_MULTIPLIER + 1;
|
|
return len;
|
|
}
|
|
|
|
int
|
|
fhandler_dev_random::write (const void *ptr, size_t len)
|
|
{
|
|
if (!len)
|
|
return 0;
|
|
if (!ptr)
|
|
{
|
|
set_errno (EINVAL);
|
|
return -1;
|
|
}
|
|
|
|
/* Limit len to a value <= 512 since we don't want to overact.
|
|
Copy to local buffer because CryptGenRandom violates const. */
|
|
unsigned char buf[512];
|
|
size_t limited_len = len <= 512 ? len : 512;
|
|
memcpy (buf, ptr, limited_len);
|
|
|
|
/* Mess up system entropy source. Return error if device is /dev/random. */
|
|
if (!crypt_gen_random (buf, limited_len) && unit == RANDOM)
|
|
{
|
|
__seterrno ();
|
|
return -1;
|
|
}
|
|
/* Mess up the pseudo random number generator. */
|
|
pseudo_write (buf, limited_len);
|
|
return len;
|
|
}
|
|
|
|
int
|
|
fhandler_dev_random::pseudo_read (void *ptr, size_t len)
|
|
{
|
|
/* Use pseudo random number generator as fallback entropy source.
|
|
This multiplier was obtained from Knuth, D.E., "The Art of
|
|
Computer Programming," Vol 2, Seminumerical Algorithms, Third
|
|
Edition, Addison-Wesley, 1998, p. 106 (line 26) & p. 108 */
|
|
for (size_t i = 0; i < len; ++i)
|
|
{
|
|
pseudo = pseudo * PSEUDO_MULTIPLIER + 1;
|
|
((unsigned char *)ptr)[i] = (pseudo >> PSEUDO_SHIFTVAL) & UCHAR_MAX;
|
|
}
|
|
return len;
|
|
}
|
|
|
|
int __stdcall
|
|
fhandler_dev_random::read (void *ptr, size_t len)
|
|
{
|
|
if (!len)
|
|
return 0;
|
|
if (!ptr)
|
|
{
|
|
set_errno (EINVAL);
|
|
return -1;
|
|
}
|
|
|
|
if (crypt_gen_random (ptr, len))
|
|
return len;
|
|
/* If device is /dev/urandom, use pseudo number generator as fallback.
|
|
Don't do this for /dev/random since it's intended for uses that need
|
|
very high quality randomness. */
|
|
if (unit == URANDOM)
|
|
return pseudo_read (ptr, len);
|
|
|
|
__seterrno ();
|
|
return -1;
|
|
}
|
|
|
|
__off64_t
|
|
fhandler_dev_random::lseek (__off64_t, int)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
fhandler_dev_random::close (void)
|
|
{
|
|
if (crypt_prov)
|
|
while (!CryptReleaseContext (crypt_prov, 0)
|
|
&& GetLastError () == ERROR_BUSY)
|
|
Sleep(10);
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
fhandler_dev_random::dup (fhandler_base *child)
|
|
{
|
|
fhandler_dev_random *fhr = (fhandler_dev_random *) child;
|
|
fhr->unit = unit;
|
|
fhr->crypt_prov = (HCRYPTPROV)NULL;
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
fhandler_dev_random::dump ()
|
|
{
|
|
paranoid_printf("here, fhandler_dev_random");
|
|
}
|
|
|