rand/randfile.c: permit non-regular files in RAND_load_file.
[openssl.git] / crypto / rand / randfile.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include "internal/cryptlib.h"
11
12 #include <errno.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16
17 #include <openssl/crypto.h>
18 #include <openssl/rand.h>
19 #include <openssl/buffer.h>
20
21 #ifdef OPENSSL_SYS_VMS
22 # include <unixio.h>
23 #endif
24 #include <sys/types.h>
25 #ifndef OPENSSL_NO_POSIX_IO
26 # include <sys/stat.h>
27 # include <fcntl.h>
28 # ifdef _WIN32
29 #  include <windows.h>
30 #  include <io.h>
31 #  define stat    _stat
32 #  define chmod   _chmod
33 #  define open    _open
34 #  define fdopen  _fdopen
35 #  define fstat   _fstat
36 #  define fileno  _fileno
37 # endif
38 #endif
39
40 /*
41  * Following should not be needed, and we could have been stricter
42  * and demand S_IS*. But some systems just don't comply... Formally
43  * below macros are "anatomically incorrect", because normally they
44  * would look like ((m) & MASK == TYPE), but since MASK availability
45  * is as questionable, we settle for this poor-man fallback...
46  */
47 # if !defined(S_ISREG)
48 #   define S_ISREG(m) ((m) & S_IFREG)
49 # endif
50
51 #define RAND_FILE_SIZE 1024
52 #define RFILE ".rnd"
53
54 #ifdef OPENSSL_SYS_VMS
55 /*
56  * __FILE_ptr32 is a type provided by DEC C headers (types.h specifically)
57  * to make sure the FILE* is a 32-bit pointer no matter what.  We know that
58  * stdio functions return this type (a study of stdio.h proves it).
59  *
60  * This declaration is a nasty hack to get around vms' extension to fopen for
61  * passing in sharing options being disabled by /STANDARD=ANSI89
62  */
63 static __FILE_ptr32 (*const vms_fopen)(const char *, const char *, ...) =
64         (__FILE_ptr32 (*)(const char *, const char *, ...))fopen;
65 # define VMS_OPEN_ATTRS \
66         "shr=get,put,upd,del","ctx=bin,stm","rfm=stm","rat=none","mrs=0"
67 # define openssl_fopen(fname, mode) vms_fopen((fname), (mode), VMS_OPEN_ATTRS)
68 #endif
69
70 /*
71  * Note that these functions are intended for seed files only. Entropy
72  * devices and EGD sockets are handled in rand_unix.c  If |bytes| is
73  * -1 read the complete file; otherwise read the specified amount.
74  */
75 int RAND_load_file(const char *file, long bytes)
76 {
77     unsigned char buf[RAND_FILE_SIZE];
78 #ifndef OPENSSL_NO_POSIX_IO
79     struct stat sb;
80 #endif
81     int i, n, ret = 0;
82     FILE *in;
83
84     if (bytes == 0)
85         return 0;
86
87     if ((in = openssl_fopen(file, "rb")) == NULL) {
88         RANDerr(RAND_F_RAND_LOAD_FILE, RAND_R_CANNOT_OPEN_FILE);
89         ERR_add_error_data(2, "Filename=", file);
90         return -1;
91     }
92
93 #ifndef OPENSSL_NO_POSIX_IO
94     if (fstat(fileno(in), &sb) < 0) {
95         RANDerr(RAND_F_RAND_LOAD_FILE, RAND_R_INTERNAL_ERROR);
96         ERR_add_error_data(2, "Filename=", file);
97         return -1;
98     }
99
100     if (!S_ISREG(sb.st_mode) && bytes < 0)
101         bytes = 256;
102 #endif
103     /*
104      * Don't buffer, because even if |file| is regular file, we have
105      * no control over the buffer, so why would we want a copy of its
106      * contents lying around?
107      */
108     setbuf(in, NULL);
109
110     for ( ; ; ) {
111         if (bytes > 0)
112             n = (bytes < RAND_FILE_SIZE) ? (int)bytes : RAND_FILE_SIZE;
113         else
114             n = RAND_FILE_SIZE;
115         i = fread(buf, 1, n, in);
116 #ifdef EINTR
117         if (ferror(in) && errno == EINTR){
118             clearerr(in);
119             if (i == 0)
120                 continue;
121         }
122 #endif
123         if (i == 0)
124             break;
125
126         RAND_add(buf, i, (double)i);
127         ret += i;
128
129         /* If given a bytecount, and we did it, break. */
130         if (bytes > 0 && (bytes -= i) <= 0)
131             break;
132     }
133
134     OPENSSL_cleanse(buf, sizeof(buf));
135     fclose(in);
136     return ret;
137 }
138
139 int RAND_write_file(const char *file)
140 {
141     unsigned char buf[RAND_FILE_SIZE];
142     int ret = -1;
143     FILE *out = NULL;
144 #ifndef OPENSSL_NO_POSIX_IO
145     struct stat sb;
146
147     if (stat(file, &sb) >= 0 && !S_ISREG(sb.st_mode)) {
148         RANDerr(RAND_F_RAND_WRITE_FILE, RAND_R_NOT_A_REGULAR_FILE);
149         ERR_add_error_data(2, "Filename=", file);
150         return -1;
151     }
152 #endif
153
154     /* Collect enough random data. */
155     if (RAND_bytes(buf, (int)sizeof(buf)) != 1)
156         return  -1;
157
158 #if defined(O_CREAT) && !defined(OPENSSL_NO_POSIX_IO) && \
159     !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WINDOWS)
160     {
161 # ifndef O_BINARY
162 #  define O_BINARY 0
163 # endif
164         /*
165          * chmod(..., 0600) is too late to protect the file, permissions
166          * should be restrictive from the start
167          */
168         int fd = open(file, O_WRONLY | O_CREAT | O_BINARY, 0600);
169         if (fd != -1)
170             out = fdopen(fd, "wb");
171     }
172 #endif
173
174 #ifdef OPENSSL_SYS_VMS
175     /*
176      * VMS NOTE: Prior versions of this routine created a _new_ version of
177      * the rand file for each call into this routine, then deleted all
178      * existing versions named ;-1, and finally renamed the current version
179      * as ';1'. Under concurrent usage, this resulted in an RMS race
180      * condition in rename() which could orphan files (see vms message help
181      * for RMS$_REENT). With the fopen() calls below, openssl/VMS now shares
182      * the top-level version of the rand file. Note that there may still be
183      * conditions where the top-level rand file is locked. If so, this code
184      * will then create a new version of the rand file. Without the delete
185      * and rename code, this can result in ascending file versions that stop
186      * at version 32767, and this routine will then return an error. The
187      * remedy for this is to recode the calling application to avoid
188      * concurrent use of the rand file, or synchronize usage at the
189      * application level. Also consider whether or not you NEED a persistent
190      * rand file in a concurrent use situation.
191      */
192     out = openssl_fopen(file, "rb+");
193 #endif
194
195     if (out == NULL)
196         out = openssl_fopen(file, "wb");
197     if (out == NULL) {
198         RANDerr(RAND_F_RAND_WRITE_FILE, RAND_R_CANNOT_OPEN_FILE);
199         ERR_add_error_data(2, "Filename=", file);
200         return -1;
201     }
202
203 #if !defined(NO_CHMOD) && !defined(OPENSSL_NO_POSIX_IO)
204     /*
205      * Yes it's late to do this (see above comment), but better than nothing.
206      */
207     chmod(file, 0600);
208 #endif
209
210     ret = fwrite(buf, 1, RAND_FILE_SIZE, out);
211     fclose(out);
212     OPENSSL_cleanse(buf, RAND_FILE_SIZE);
213     return ret;
214 }
215
216 const char *RAND_file_name(char *buf, size_t size)
217 {
218     char *s = NULL;
219     size_t len;
220     int use_randfile = 1;
221
222 #if defined(_WIN32) && defined(CP_UTF8)
223     DWORD envlen;
224     WCHAR *var;
225
226     /* Look up various environment variables. */
227     if ((envlen = GetEnvironmentVariableW(var = L"RANDFILE", NULL, 0)) == 0) {
228         use_randfile = 0;
229         if ((envlen = GetEnvironmentVariableW(var = L"HOME", NULL, 0)) == 0
230                 && (envlen = GetEnvironmentVariableW(var = L"USERPROFILE",
231                                                   NULL, 0)) == 0)
232             envlen = GetEnvironmentVariableW(var = L"SYSTEMROOT", NULL, 0);
233     }
234
235     /* If we got a value, allocate space to hold it and then get it. */
236     if (envlen != 0) {
237         int sz;
238         WCHAR *val = _alloca(envlen * sizeof(WCHAR));
239
240         if (GetEnvironmentVariableW(var, val, envlen) < envlen
241                 && (sz = WideCharToMultiByte(CP_UTF8, 0, val, -1, NULL, 0,
242                                              NULL, NULL)) != 0) {
243             s = _alloca(sz);
244             if (WideCharToMultiByte(CP_UTF8, 0, val, -1, s, sz,
245                                     NULL, NULL) == 0)
246                 s = NULL;
247         }
248     }
249 #else
250     if (OPENSSL_issetugid() != 0) {
251         use_randfile = 0;
252     } else if ((s = getenv("RANDFILE")) == NULL || *s == '\0') {
253         use_randfile = 0;
254         s = getenv("HOME");
255     }
256 #endif
257
258 #ifdef DEFAULT_HOME
259     if (!use_randfile && s == NULL)
260         s = DEFAULT_HOME;
261 #endif
262     if (s == NULL || *s == '\0')
263         return NULL;
264
265     len = strlen(s);
266     if (use_randfile) {
267         if (len + 1 >= size)
268             return NULL;
269         strcpy(buf, s);
270     } else {
271         if (len + 1 + strlen(RFILE) + 1 >= size)
272             return NULL;
273         strcpy(buf, s);
274 #ifndef OPENSSL_SYS_VMS
275         strcat(buf, "/");
276 #endif
277         strcat(buf, RFILE);
278     }
279
280     return buf;
281 }