randfile.c 7.7 KB
Newer Older
R
Rich Salz 已提交
1 2
/*
 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8 9
 */

10
#include "internal/cryptlib.h"
D
Dr. Stephen Henson 已提交
11

U
Ulf Möller 已提交
12
#include <errno.h>
13
#include <stdio.h>
B
Ben Laurie 已提交
14 15
#include <stdlib.h>
#include <string.h>
16

17 18
#include <openssl/crypto.h>
#include <openssl/rand.h>
19
#include <openssl/buffer.h>
20

21
#ifdef OPENSSL_SYS_VMS
22
# include <unixio.h>
23
#endif
A
Andy Polyakov 已提交
24 25 26
#ifndef NO_SYS_TYPES_H
# include <sys/types.h>
#endif
27
#ifndef OPENSSL_NO_POSIX_IO
A
Andy Polyakov 已提交
28
# include <sys/stat.h>
29
# include <fcntl.h>
30 31
#endif

32 33 34 35 36 37 38
/*
 * Following should not be needed, and we could have been stricter
 * and demand S_IS*. But some systems just don't comply... Formally
 * below macros are "anatomically incorrect", because normally they
 * would look like ((m) & MASK == TYPE), but since MASK availability
 * is as questionable, we settle for this poor-man fallback...
 */
39 40
# if !defined(S_ISREG)
#   define S_ISREG(m) ((m) & S_IFREG)
41
# endif
A
Andy Polyakov 已提交
42

43
#ifdef _WIN32
44 45 46 47
# define stat    _stat
# define chmod   _chmod
# define open    _open
# define fdopen  _fdopen
48 49
#endif

50
#define RAND_FILE_SIZE 1024
51
#define RFILE ".rnd"
52

53
#ifdef OPENSSL_SYS_VMS
54 55 56
/*
 * __FILE_ptr32 is a type provided by DEC C headers (types.h specifically)
 * to make sure the FILE* is a 32-bit pointer no matter what.  We know that
57 58
 * stdio functions return this type (a study of stdio.h proves it).
 *
59
 * This declaration is a nasty hack to get around vms' extension to fopen for
60
 * passing in sharing options being disabled by /STANDARD=ANSI89
61
 */
62
static __FILE_ptr32 (*const vms_fopen)(const char *, const char *, ...) =
63 64 65
        (__FILE_ptr32 (*)(const char *, const char *, ...))fopen;
# define VMS_OPEN_ATTRS \
        "shr=get,put,upd,del","ctx=bin,stm","rfm=stm","rat=none","mrs=0"
66
# define openssl_fopen(fname, mode) vms_fopen((fname), (mode), VMS_OPEN_ATTRS)
67 68
#endif

69 70
/*
 * Note that these functions are intended for seed files only. Entropy
71 72
 * devices and EGD sockets are handled in rand_unix.c  If |bytes| is
 * -1 read the complete file; otherwise read the specified amount.
73
 */
U
Ulf Möller 已提交
74
int RAND_load_file(const char *file, long bytes)
75
{
76
    unsigned char buf[RAND_FILE_SIZE];
77
#ifndef OPENSSL_NO_POSIX_IO
78
    struct stat sb;
79
#endif
80 81
    int i, n, ret = 0;
    FILE *in;
82 83

    if (bytes == 0)
84
        return 0;
85

86
#ifndef OPENSSL_NO_POSIX_IO
87 88 89 90 91
    if (stat(file, &sb) < 0 || !S_ISREG(sb.st_mode)) {
        RANDerr(RAND_F_RAND_LOAD_FILE, RAND_R_NOT_A_REGULAR_FILE);
        ERR_add_error_data(2, "Filename=", file);
        return -1;
    }
92
#endif
93 94 95 96 97 98 99
    if ((in = openssl_fopen(file, "rb")) == NULL) {
        RANDerr(RAND_F_RAND_LOAD_FILE, RAND_R_CANNOT_OPEN_FILE);
        ERR_add_error_data(2, "Filename=", file);
        return -1;
    }

    for ( ; ; ) {
100
        if (bytes > 0)
101
            n = (bytes < RAND_FILE_SIZE) ? (int)bytes : RAND_FILE_SIZE;
102
        else
103
            n = RAND_FILE_SIZE;
104 105 106 107 108
        i = fread(buf, 1, n, in);
        if (i <= 0)
            break;
        RAND_add(buf, i, (double)i);
        ret += i;
109 110 111 112

        /* If given a bytecount, and we did it, break. */
        if (bytes > 0 && (bytes -= i) <= 0)
            break;
113
    }
114 115 116

    OPENSSL_cleanse(buf, sizeof(buf));
    fclose(in);
117
    return ret;
118
}
119

U
Ulf Möller 已提交
120
int RAND_write_file(const char *file)
121
{
122 123
    unsigned char buf[RAND_FILE_SIZE];
    int ret = -1;
124
    FILE *out = NULL;
125
#ifndef OPENSSL_NO_POSIX_IO
126
    struct stat sb;
127

128 129 130 131 132
    if (stat(file, &sb) >= 0 && !S_ISREG(sb.st_mode)) {
        RANDerr(RAND_F_RAND_WRITE_FILE, RAND_R_NOT_A_REGULAR_FILE);
        ERR_add_error_data(2, "Filename=", file);
        return -1;
    }
P
Paul Hovey 已提交
133
#endif
134

135 136 137 138
    /* Collect enough random data. */
    if (RAND_bytes(buf, (int)sizeof(buf)) != 1)
        return  -1;

139 140
#if defined(O_CREAT) && !defined(OPENSSL_NO_POSIX_IO) && \
    !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WINDOWS)
141 142 143 144 145 146 147 148 149 150 151 152
    {
# ifndef O_BINARY
#  define O_BINARY 0
# endif
        /*
         * chmod(..., 0600) is too late to protect the file, permissions
         * should be restrictive from the start
         */
        int fd = open(file, O_WRONLY | O_CREAT | O_BINARY, 0600);
        if (fd != -1)
            out = fdopen(fd, "wb");
    }
A
Andy Polyakov 已提交
153
#endif
154 155

#ifdef OPENSSL_SYS_VMS
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
    /*
     * VMS NOTE: Prior versions of this routine created a _new_ version of
     * the rand file for each call into this routine, then deleted all
     * existing versions named ;-1, and finally renamed the current version
     * as ';1'. Under concurrent usage, this resulted in an RMS race
     * condition in rename() which could orphan files (see vms message help
     * for RMS$_REENT). With the fopen() calls below, openssl/VMS now shares
     * the top-level version of the rand file. Note that there may still be
     * conditions where the top-level rand file is locked. If so, this code
     * will then create a new version of the rand file. Without the delete
     * and rename code, this can result in ascending file versions that stop
     * at version 32767, and this routine will then return an error. The
     * remedy for this is to recode the calling application to avoid
     * concurrent use of the rand file, or synchronize usage at the
     * application level. Also consider whether or not you NEED a persistent
     * rand file in a concurrent use situation.
     */
173
    out = openssl_fopen(file, "rb+");
174
#endif
175

176
    if (out == NULL)
177
        out = openssl_fopen(file, "wb");
R
Rich Salz 已提交
178
    if (out == NULL) {
R
Rich Salz 已提交
179
        RANDerr(RAND_F_RAND_WRITE_FILE, RAND_R_CANNOT_OPEN_FILE);
R
Rich Salz 已提交
180
        ERR_add_error_data(2, "Filename=", file);
181
        return -1;
R
Rich Salz 已提交
182
    }
183

M
Matt Caswell 已提交
184
#if !defined(NO_CHMOD) && !defined(OPENSSL_NO_POSIX_IO)
185 186 187
    /*
     * Yes it's late to do this (see above comment), but better than nothing.
     */
188
    chmod(file, 0600);
A
Andy Polyakov 已提交
189
#endif
190

191
    ret = fwrite(buf, 1, RAND_FILE_SIZE, out);
192
    fclose(out);
193 194
    OPENSSL_cleanse(buf, RAND_FILE_SIZE);
    return ret;
195
}
196

197
const char *RAND_file_name(char *buf, size_t size)
198 199
{
    char *s = NULL;
200
    size_t len;
201
    int use_randfile = 1;
202

203
#if defined(_WIN32) && defined(CP_UTF8)
204 205 206 207 208 209 210 211 212 213
    DWORD envlen;
    WCHAR *var;

    /* Look up various environment variables. */
    if ((envlen = GetEnvironmentVariableW(var = L"RANDFILE", NULL, 0)) == 0) {
        use_randfile = 0;
        if ((envlen = GetEnvironmentVariableW(var = L"HOME", NULL, 0)) == 0
                && (envlen = GetEnvironmentVariableW(var = L"USERPROFILE",
                                                  NULL, 0)) == 0)
            envlen = GetEnvironmentVariableW(var = L"SYSTEMROOT", NULL, 0);
214 215
    }

216 217
    /* If we got a value, allocate space to hold it and then get it. */
    if (envlen != 0) {
218
        int sz;
219
        WCHAR *val = _alloca(envlen * sizeof(WCHAR));
220

221 222 223
        if (GetEnvironmentVariableW(var, val, envlen) < envlen
                && (sz = WideCharToMultiByte(CP_UTF8, 0, val, -1, NULL, 0,
                                             NULL, NULL)) != 0) {
224 225 226 227
            s = _alloca(sz);
            if (WideCharToMultiByte(CP_UTF8, 0, val, -1, s, sz,
                                    NULL, NULL) == 0)
                s = NULL;
228
        }
229
    }
230
#else
231
    if (OPENSSL_issetugid() != 0) {
232
        use_randfile = 0;
233 234 235
    } else if ((s = getenv("RANDFILE")) == NULL || *s == '\0') {
        use_randfile = 0;
        s = getenv("HOME");
236
    }
237
#endif
238

239
#ifdef DEFAULT_HOME
240
    if (!use_randfile && s == NULL)
241
        s = DEFAULT_HOME;
242
#endif
243 244 245 246 247 248 249 250 251 252 253 254
    if (s == NULL || *s == '\0')
        return NULL;

    len = strlen(s);
    if (use_randfile) {
        if (len + 1 >= size)
            return NULL;
        strcpy(buf, s);
    } else {
        if (len + 1 + strlen(RFILE) + 1 >= size)
            return NULL;
        strcpy(buf, s);
255
#ifndef OPENSSL_SYS_VMS
256
        strcat(buf, "/");
U
Ulf Möller 已提交
257
#endif
258
        strcat(buf, RFILE);
259
    }
260

261
    return buf;
262
}