aboutsummaryrefslogtreecommitdiff
path: root/crypto/rand/randfile.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-11-03 16:22:40 +0000
committerAndy Polyakov <appro@openssl.org>2005-11-03 16:22:40 +0000
commit49e3c9d8e69b92e06a9c0f8ea88853e570c235fe (patch)
tree9d6702e5477f5a7b406ac62b03436e416f03bc60 /crypto/rand/randfile.c
parent1715e4885aecd804f22be7ac17afbbae6c154048 (diff)
downloadopenssl-49e3c9d8e69b92e06a9c0f8ea88853e570c235fe.zip
openssl-49e3c9d8e69b92e06a9c0f8ea88853e570c235fe.tar.gz
openssl-49e3c9d8e69b92e06a9c0f8ea88853e570c235fe.tar.bz2
Mask libcrypto references to stat with OPENSSL_NO_POSIX_IO.
Diffstat (limited to 'crypto/rand/randfile.c')
-rw-r--r--crypto/rand/randfile.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/crypto/rand/randfile.c b/crypto/rand/randfile.c
index d69bdf8..7533ea5 100644
--- a/crypto/rand/randfile.c
+++ b/crypto/rand/randfile.c
@@ -75,9 +75,7 @@
#ifndef NO_SYS_TYPES_H
# include <sys/types.h>
#endif
-#ifdef MAC_OS_pre_X
-# include <stat.h>
-#else
+#ifndef OPENSSL_NO_POSIX_IO
# include <sys/stat.h>
#endif
@@ -96,21 +94,25 @@ int RAND_load_file(const char *file, long bytes)
* if bytes == -1, read complete file. */
MS_STATIC unsigned char buf[BUFSIZE];
+#ifndef OPENSSL_NO_POSIX_IO
struct stat sb;
+#endif
int i,ret=0,n;
FILE *in;
if (file == NULL) return(0);
+#ifndef OPENSSL_NO_POSIX_IO
i=stat(file,&sb);
/* If the state fails, put some crap in anyway */
RAND_add(&sb,sizeof(sb),0.0);
if (i < 0) return(0);
+#endif
if (bytes == 0) return(ret);
in=fopen(file,"rb");
if (in == NULL) goto err;
-#if defined(S_IFBLK) && defined(S_IFCHR)
+#if defined(S_IFBLK) && defined(S_IFCHR) && !defined(OPNESSL_NO_POSIX_IO)
if (sb.st_mode & (S_IFBLK | S_IFCHR)) {
/* this file is a device. we don't want read an infinite number
* of bytes from a random device, nor do we want to use buffered
@@ -149,6 +151,7 @@ int RAND_write_file(const char *file)
int i,ret=0,rand_err=0;
FILE *out = NULL;
int n;
+#ifndef OPENSSL_NO_POSIX_IO
struct stat sb;
i=stat(file,&sb);
@@ -164,8 +167,9 @@ int RAND_write_file(const char *file)
}
#endif
}
+#endif
-#if defined(O_CREAT) && !defined(OPENSSL_SYS_WIN32)
+#if defined(O_CREAT) && !defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_POSIX_IO)
{
/* For some reason Win32 can't write to files created this way */