Avoid Windows 8 Getversion deprecated errors.
[openssl.git] / crypto / rand / rand_win.c
1 /* crypto/rand/rand_win.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58 /* ====================================================================
59  * Copyright (c) 1998-2000 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer. 
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111
112 #define OPENSSL_FIPSAPI
113
114 #include "cryptlib.h"
115 #include <openssl/rand.h>
116 #include "rand_lcl.h"
117
118 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32)
119 #include <windows.h>
120 #ifndef _WIN32_WINNT
121 # define _WIN32_WINNT 0x0400
122 #endif
123 #include <wincrypt.h>
124 #include <tlhelp32.h>
125
126 /* Limit the time spent walking through the heap, processes, threads and modules to
127    a maximum of 1000 miliseconds each, unless CryptoGenRandom failed */
128 #define MAXDELAY 1000
129
130 /* Intel hardware RNG CSP -- available from
131  * http://developer.intel.com/design/security/rng/redist_license.htm
132  */
133 #define PROV_INTEL_SEC 22
134 #define INTEL_DEF_PROV L"Intel Hardware Cryptographic Service Provider"
135
136 static void readtimer(void);
137 static void readscreen(void);
138
139 /* It appears like CURSORINFO, PCURSORINFO and LPCURSORINFO are only defined
140    when WINVER is 0x0500 and up, which currently only happens on Win2000.
141    Unfortunately, those are typedefs, so they're a little bit difficult to
142    detect properly.  On the other hand, the macro CURSOR_SHOWING is defined
143    within the same conditional, so it can be use to detect the absence of said
144    typedefs. */
145
146 #ifndef CURSOR_SHOWING
147 /*
148  * Information about the global cursor.
149  */
150 typedef struct tagCURSORINFO
151 {
152     DWORD   cbSize;
153     DWORD   flags;
154     HCURSOR hCursor;
155     POINT   ptScreenPos;
156 } CURSORINFO, *PCURSORINFO, *LPCURSORINFO;
157
158 #define CURSOR_SHOWING     0x00000001
159 #endif /* CURSOR_SHOWING */
160
161 #if !defined(OPENSSL_SYS_WINCE)
162 typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTW)(HCRYPTPROV *, LPCWSTR, LPCWSTR,
163                                     DWORD, DWORD);
164 typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV, DWORD, BYTE *);
165 typedef BOOL (WINAPI *CRYPTRELEASECONTEXT)(HCRYPTPROV, DWORD);
166
167 typedef HWND (WINAPI *GETFOREGROUNDWINDOW)(VOID);
168 typedef BOOL (WINAPI *GETCURSORINFO)(PCURSORINFO);
169 typedef DWORD (WINAPI *GETQUEUESTATUS)(UINT);
170
171 typedef HANDLE (WINAPI *CREATETOOLHELP32SNAPSHOT)(DWORD, DWORD);
172 typedef BOOL (WINAPI *CLOSETOOLHELP32SNAPSHOT)(HANDLE);
173 typedef BOOL (WINAPI *HEAP32FIRST)(LPHEAPENTRY32, DWORD, size_t);
174 typedef BOOL (WINAPI *HEAP32NEXT)(LPHEAPENTRY32);
175 typedef BOOL (WINAPI *HEAP32LIST)(HANDLE, LPHEAPLIST32);
176 typedef BOOL (WINAPI *PROCESS32)(HANDLE, LPPROCESSENTRY32);
177 typedef BOOL (WINAPI *THREAD32)(HANDLE, LPTHREADENTRY32);
178 typedef BOOL (WINAPI *MODULE32)(HANDLE, LPMODULEENTRY32);
179
180 #include <lmcons.h>
181 #include <lmstats.h>
182 #if 1 /* The NET API is Unicode only.  It requires the use of the UNICODE
183        * macro.  When UNICODE is defined LPTSTR becomes LPWSTR.  LMSTR was
184        * was added to the Platform SDK to allow the NET API to be used in
185        * non-Unicode applications provided that Unicode strings were still
186        * used for input.  LMSTR is defined as LPWSTR.
187        */
188 typedef NET_API_STATUS (NET_API_FUNCTION * NETSTATGET)
189         (LPWSTR, LPWSTR, DWORD, DWORD, LPBYTE*);
190 typedef NET_API_STATUS (NET_API_FUNCTION * NETFREE)(LPBYTE);
191 #endif /* 1 */
192 #endif /* !OPENSSL_SYS_WINCE */
193
194 int RAND_poll(void)
195 {
196         MEMORYSTATUS m;
197         HCRYPTPROV hProvider = 0;
198         DWORD w;
199         int good = 0;
200
201         /* Determine the OS version we are on so we can turn off things 
202          * that do not work properly.
203          */
204         OSVERSIONINFO osverinfo ;
205         osverinfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO) ;
206         GetVersionEx( &osverinfo ) ;
207
208 #if defined(OPENSSL_SYS_WINCE)
209 # if defined(_WIN32_WCE) && _WIN32_WCE>=300
210 /* Even though MSDN says _WIN32_WCE>=210, it doesn't seem to be available
211  * in commonly available implementations prior 300... */
212         {
213         BYTE buf[64];
214         /* poll the CryptoAPI PRNG */
215         /* The CryptoAPI returns sizeof(buf) bytes of randomness */
216         if (CryptAcquireContextW(&hProvider, NULL, NULL, PROV_RSA_FULL,
217                                 CRYPT_VERIFYCONTEXT))
218                 {
219                 if (CryptGenRandom(hProvider, sizeof(buf), buf))
220                         RAND_add(buf, sizeof(buf), sizeof(buf));
221                 CryptReleaseContext(hProvider, 0); 
222                 }
223         }
224 # endif
225 #else   /* OPENSSL_SYS_WINCE */
226         /*
227          * None of below libraries are present on Windows CE, which is
228          * why we #ifndef the whole section. This also excuses us from
229          * handling the GetProcAddress issue. The trouble is that in
230          * real Win32 API GetProcAddress is available in ANSI flavor
231          * only. In WinCE on the other hand GetProcAddress is a macro
232          * most commonly defined as GetProcAddressW, which accepts
233          * Unicode argument. If we were to call GetProcAddress under
234          * WinCE, I'd recommend to either redefine GetProcAddress as
235          * GetProcAddressA (there seem to be one in common CE spec) or
236          * implement own shim routine, which would accept ANSI argument
237          * and expand it to Unicode.
238          */
239         {
240         /* load functions dynamically - not available on all systems */
241         HMODULE advapi = LoadLibrary(TEXT("ADVAPI32.DLL"));
242         HMODULE kernel = LoadLibrary(TEXT("KERNEL32.DLL"));
243         HMODULE user = NULL;
244         HMODULE netapi = LoadLibrary(TEXT("NETAPI32.DLL"));
245         CRYPTACQUIRECONTEXTW acquire = NULL;
246         CRYPTGENRANDOM gen = NULL;
247         CRYPTRELEASECONTEXT release = NULL;
248         NETSTATGET netstatget = NULL;
249         NETFREE netfree = NULL;
250         BYTE buf[64];
251
252         if (netapi)
253                 {
254                 netstatget = (NETSTATGET) GetProcAddress(netapi,"NetStatisticsGet");
255                 netfree = (NETFREE) GetProcAddress(netapi,"NetApiBufferFree");
256                 }
257
258         if (netstatget && netfree)
259                 {
260                 LPBYTE outbuf;
261                 /* NetStatisticsGet() is a Unicode only function
262                  * STAT_WORKSTATION_0 contains 45 fields and STAT_SERVER_0
263                  * contains 17 fields.  We treat each field as a source of
264                  * one byte of entropy.
265                  */
266
267                 if (netstatget(NULL, L"LanmanWorkstation", 0, 0, &outbuf) == 0)
268                         {
269                         RAND_add(outbuf, sizeof(STAT_WORKSTATION_0), 45);
270                         netfree(outbuf);
271                         }
272                 if (netstatget(NULL, L"LanmanServer", 0, 0, &outbuf) == 0)
273                         {
274                         RAND_add(outbuf, sizeof(STAT_SERVER_0), 17);
275                         netfree(outbuf);
276                         }
277                 }
278
279         if (netapi)
280                 FreeLibrary(netapi);
281
282         /* It appears like this can cause an exception deep within ADVAPI32.DLL
283          * at random times on Windows 2000.  Reported by Jeffrey Altman.  
284          * Only use it on NT.
285          */
286         /* Wolfgang Marczy <WMarczy@topcall.co.at> reports that
287          * the RegQueryValueEx call below can hang on NT4.0 (SP6).
288          * So we don't use this at all for now. */
289 #if 0
290         if ( osverinfo.dwPlatformId == VER_PLATFORM_WIN32_NT &&
291                 osverinfo.dwMajorVersion < 5)
292                 {
293                 /* Read Performance Statistics from NT/2000 registry
294                  * The size of the performance data can vary from call
295                  * to call so we must guess the size of the buffer to use
296                  * and increase its size if we get an ERROR_MORE_DATA
297                  * return instead of ERROR_SUCCESS.
298                  */
299                 LONG   rc=ERROR_MORE_DATA;
300                 char * buf=NULL;
301                 DWORD bufsz=0;
302                 DWORD length;
303
304                 while (rc == ERROR_MORE_DATA)
305                         {
306                         buf = realloc(buf,bufsz+8192);
307                         if (!buf)
308                                 break;
309                         bufsz += 8192;
310
311                         length = bufsz;
312                         rc = RegQueryValueEx(HKEY_PERFORMANCE_DATA, TEXT("Global"),
313                                 NULL, NULL, buf, &length);
314                         }
315                 if (rc == ERROR_SUCCESS)
316                         {
317                         /* For entropy count assume only least significant
318                          * byte of each DWORD is random.
319                          */
320                         RAND_add(&length, sizeof(length), 0);
321                         RAND_add(buf, length, length / 4.0);
322
323                         /* Close the Registry Key to allow Windows to cleanup/close
324                          * the open handle
325                          * Note: The 'HKEY_PERFORMANCE_DATA' key is implicitly opened
326                          *       when the RegQueryValueEx above is done.  However, if
327                          *       it is not explicitly closed, it can cause disk
328                          *       partition manipulation problems.
329                          */
330                         RegCloseKey(HKEY_PERFORMANCE_DATA);
331                         }
332                 if (buf)
333                         free(buf);
334                 }
335 #endif
336
337         if (advapi)
338                 {
339                 /*
340                  * If it's available, then it's available in both ANSI
341                  * and UNICODE flavors even in Win9x, documentation says.
342                  * We favor Unicode...
343                  */
344                 acquire = (CRYPTACQUIRECONTEXTW) GetProcAddress(advapi,
345                         "CryptAcquireContextW");
346                 gen = (CRYPTGENRANDOM) GetProcAddress(advapi,
347                         "CryptGenRandom");
348                 release = (CRYPTRELEASECONTEXT) GetProcAddress(advapi,
349                         "CryptReleaseContext");
350                 }
351
352         if (acquire && gen && release)
353                 {
354                 /* poll the CryptoAPI PRNG */
355                 /* The CryptoAPI returns sizeof(buf) bytes of randomness */
356                 if (acquire(&hProvider, NULL, NULL, PROV_RSA_FULL,
357                         CRYPT_VERIFYCONTEXT))
358                         {
359                         if (gen(hProvider, sizeof(buf), buf) != 0)
360                                 {
361                                 RAND_add(buf, sizeof(buf), 0);
362                                 good = 1;
363 #if 0
364                                 printf("randomness from PROV_RSA_FULL\n");
365 #endif
366                                 }
367                         release(hProvider, 0); 
368                         }
369                 
370                 /* poll the Pentium PRG with CryptoAPI */
371                 if (acquire(&hProvider, 0, INTEL_DEF_PROV, PROV_INTEL_SEC, 0))
372                         {
373                         if (gen(hProvider, sizeof(buf), buf) != 0)
374                                 {
375                                 RAND_add(buf, sizeof(buf), sizeof(buf));
376                                 good = 1;
377 #if 0
378                                 printf("randomness from PROV_INTEL_SEC\n");
379 #endif
380                                 }
381                         release(hProvider, 0);
382                         }
383                 }
384
385         if (advapi)
386                 FreeLibrary(advapi);
387
388         if ((osverinfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
389              !OPENSSL_isservice()) &&
390             (user = LoadLibrary(TEXT("USER32.DLL"))))
391                 {
392                 GETCURSORINFO cursor;
393                 GETFOREGROUNDWINDOW win;
394                 GETQUEUESTATUS queue;
395
396                 win = (GETFOREGROUNDWINDOW) GetProcAddress(user, "GetForegroundWindow");
397                 cursor = (GETCURSORINFO) GetProcAddress(user, "GetCursorInfo");
398                 queue = (GETQUEUESTATUS) GetProcAddress(user, "GetQueueStatus");
399
400                 if (win)
401                         {
402                         /* window handle */
403                         HWND h = win();
404                         RAND_add(&h, sizeof(h), 0);
405                         }
406                 if (cursor)
407                         {
408                         /* unfortunately, its not safe to call GetCursorInfo()
409                          * on NT4 even though it exists in SP3 (or SP6) and
410                          * higher.
411                          */
412                         if ( osverinfo.dwPlatformId == VER_PLATFORM_WIN32_NT &&
413                                 osverinfo.dwMajorVersion < 5)
414                                 cursor = 0;
415                         }
416                 if (cursor)
417                         {
418                         /* cursor position */
419                         /* assume 2 bytes of entropy */
420                         CURSORINFO ci;
421                         ci.cbSize = sizeof(CURSORINFO);
422                         if (cursor(&ci))
423                                 RAND_add(&ci, ci.cbSize, 2);
424                         }
425
426                 if (queue)
427                         {
428                         /* message queue status */
429                         /* assume 1 byte of entropy */
430                         w = queue(QS_ALLEVENTS);
431                         RAND_add(&w, sizeof(w), 1);
432                         }
433
434                 FreeLibrary(user);
435                 }
436
437         /* Toolhelp32 snapshot: enumerate processes, threads, modules and heap
438          * http://msdn.microsoft.com/library/psdk/winbase/toolhelp_5pfd.htm
439          * (Win 9x and 2000 only, not available on NT)
440          *
441          * This seeding method was proposed in Peter Gutmann, Software
442          * Generation of Practically Strong Random Numbers,
443          * http://www.usenix.org/publications/library/proceedings/sec98/gutmann.html
444          * revised version at http://www.cryptoengines.com/~peter/06_random.pdf
445          * (The assignment of entropy estimates below is arbitrary, but based
446          * on Peter's analysis the full poll appears to be safe. Additional
447          * interactive seeding is encouraged.)
448          */
449
450         if (kernel)
451                 {
452                 CREATETOOLHELP32SNAPSHOT snap;
453                 CLOSETOOLHELP32SNAPSHOT close_snap;
454                 HANDLE handle;
455
456                 HEAP32FIRST heap_first;
457                 HEAP32NEXT heap_next;
458                 HEAP32LIST heaplist_first, heaplist_next;
459                 PROCESS32 process_first, process_next;
460                 THREAD32 thread_first, thread_next;
461                 MODULE32 module_first, module_next;
462
463                 HEAPLIST32 hlist;
464                 HEAPENTRY32 hentry;
465                 PROCESSENTRY32 p;
466                 THREADENTRY32 t;
467                 MODULEENTRY32 m;
468                 DWORD starttime = 0;
469
470                 snap = (CREATETOOLHELP32SNAPSHOT)
471                         GetProcAddress(kernel, "CreateToolhelp32Snapshot");
472                 close_snap = (CLOSETOOLHELP32SNAPSHOT)
473                         GetProcAddress(kernel, "CloseToolhelp32Snapshot");
474                 heap_first = (HEAP32FIRST) GetProcAddress(kernel, "Heap32First");
475                 heap_next = (HEAP32NEXT) GetProcAddress(kernel, "Heap32Next");
476                 heaplist_first = (HEAP32LIST) GetProcAddress(kernel, "Heap32ListFirst");
477                 heaplist_next = (HEAP32LIST) GetProcAddress(kernel, "Heap32ListNext");
478                 process_first = (PROCESS32) GetProcAddress(kernel, "Process32First");
479                 process_next = (PROCESS32) GetProcAddress(kernel, "Process32Next");
480                 thread_first = (THREAD32) GetProcAddress(kernel, "Thread32First");
481                 thread_next = (THREAD32) GetProcAddress(kernel, "Thread32Next");
482                 module_first = (MODULE32) GetProcAddress(kernel, "Module32First");
483                 module_next = (MODULE32) GetProcAddress(kernel, "Module32Next");
484
485                 if (snap && heap_first && heap_next && heaplist_first &&
486                         heaplist_next && process_first && process_next &&
487                         thread_first && thread_next && module_first &&
488                         module_next && (handle = snap(TH32CS_SNAPALL,0))
489                         != INVALID_HANDLE_VALUE)
490                         {
491                         /* heap list and heap walking */
492                         /* HEAPLIST32 contains 3 fields that will change with
493                          * each entry.  Consider each field a source of 1 byte
494                          * of entropy.
495                          * HEAPENTRY32 contains 5 fields that will change with 
496                          * each entry.  Consider each field a source of 1 byte
497                          * of entropy.
498                          */
499                         ZeroMemory(&hlist, sizeof(HEAPLIST32));
500                         hlist.dwSize = sizeof(HEAPLIST32);              
501                         if (good) starttime = GetTickCount();
502 #ifdef _MSC_VER
503                         if (heaplist_first(handle, &hlist))
504                                 {
505                                 /*
506                                    following discussion on dev ML, exception on WinCE (or other Win
507                                    platform) is theoretically of unknown origin; prevent infinite
508                                    loop here when this theoretical case occurs; otherwise cope with
509                                    the expected (MSDN documented) exception-throwing behaviour of
510                                    Heap32Next() on WinCE.
511
512                                    based on patch in original message by Tanguy Fautré (2009/03/02)
513                                    Subject: RAND_poll() and CreateToolhelp32Snapshot() stability
514                              */
515                                 int ex_cnt_limit = 42; 
516                                 do
517                                         {
518                                         RAND_add(&hlist, hlist.dwSize, 3);
519                                         __try
520                                                 {
521                                                 ZeroMemory(&hentry, sizeof(HEAPENTRY32));
522                                         hentry.dwSize = sizeof(HEAPENTRY32);
523                                         if (heap_first(&hentry,
524                                                 hlist.th32ProcessID,
525                                                 hlist.th32HeapID))
526                                                 {
527                                                 int entrycnt = 80;
528                                                 do
529                                                         RAND_add(&hentry,
530                                                                 hentry.dwSize, 5);
531                                                 while (heap_next(&hentry)
532                                                 && (!good || (GetTickCount()-starttime)<MAXDELAY)
533                                                         && --entrycnt > 0);
534                                                 }
535                                                 }
536                                         __except (EXCEPTION_EXECUTE_HANDLER)
537                                                 {
538                                                         /* ignore access violations when walking the heap list */
539                                                         ex_cnt_limit--;
540                                                 }
541                                         } while (heaplist_next(handle, &hlist) 
542                                                 && (!good || (GetTickCount()-starttime)<MAXDELAY)
543                                                 && ex_cnt_limit > 0);
544                                 }
545
546 #else
547                         if (heaplist_first(handle, &hlist))
548                                 {
549                                 do
550                                         {
551                                         RAND_add(&hlist, hlist.dwSize, 3);
552                                         hentry.dwSize = sizeof(HEAPENTRY32);
553                                         if (heap_first(&hentry,
554                                                 hlist.th32ProcessID,
555                                                 hlist.th32HeapID))
556                                                 {
557                                                 int entrycnt = 80;
558                                                 do
559                                                         RAND_add(&hentry,
560                                                                 hentry.dwSize, 5);
561                                                 while (heap_next(&hentry)
562                                                         && --entrycnt > 0);
563                                                 }
564                                         } while (heaplist_next(handle, &hlist) 
565                                                 && (!good || (GetTickCount()-starttime)<MAXDELAY));
566                                 }
567 #endif
568
569                         /* process walking */
570                         /* PROCESSENTRY32 contains 9 fields that will change
571                          * with each entry.  Consider each field a source of
572                          * 1 byte of entropy.
573                          */
574                         p.dwSize = sizeof(PROCESSENTRY32);
575                 
576                         if (good) starttime = GetTickCount();
577                         if (process_first(handle, &p))
578                                 do
579                                         RAND_add(&p, p.dwSize, 9);
580                                 while (process_next(handle, &p) && (!good || (GetTickCount()-starttime)<MAXDELAY));
581
582                         /* thread walking */
583                         /* THREADENTRY32 contains 6 fields that will change
584                          * with each entry.  Consider each field a source of
585                          * 1 byte of entropy.
586                          */
587                         t.dwSize = sizeof(THREADENTRY32);
588                         if (good) starttime = GetTickCount();
589                         if (thread_first(handle, &t))
590                                 do
591                                         RAND_add(&t, t.dwSize, 6);
592                                 while (thread_next(handle, &t) && (!good || (GetTickCount()-starttime)<MAXDELAY));
593
594                         /* module walking */
595                         /* MODULEENTRY32 contains 9 fields that will change
596                          * with each entry.  Consider each field a source of
597                          * 1 byte of entropy.
598                          */
599                         m.dwSize = sizeof(MODULEENTRY32);
600                         if (good) starttime = GetTickCount();
601                         if (module_first(handle, &m))
602                                 do
603                                         RAND_add(&m, m.dwSize, 9);
604                                 while (module_next(handle, &m)
605                                                 && (!good || (GetTickCount()-starttime)<MAXDELAY));
606                         if (close_snap)
607                                 close_snap(handle);
608                         else
609                                 CloseHandle(handle);
610
611                         }
612
613                 FreeLibrary(kernel);
614                 }
615         }
616 #endif /* !OPENSSL_SYS_WINCE */
617
618         /* timer data */
619         readtimer();
620         
621         /* memory usage statistics */
622         GlobalMemoryStatus(&m);
623         RAND_add(&m, sizeof(m), 1);
624
625         /* process ID */
626         w = GetCurrentProcessId();
627         RAND_add(&w, sizeof(w), 1);
628
629 #if 0
630         printf("Exiting RAND_poll\n");
631 #endif
632
633         return(1);
634 }
635
636 int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam)
637         {
638         double add_entropy=0;
639
640         switch (iMsg)
641                 {
642         case WM_KEYDOWN:
643                         {
644                         static WPARAM key;
645                         if (key != wParam)
646                                 add_entropy = 0.05;
647                         key = wParam;
648                         }
649                         break;
650         case WM_MOUSEMOVE:
651                         {
652                         static int lastx,lasty,lastdx,lastdy;
653                         int x,y,dx,dy;
654
655                         x=LOWORD(lParam);
656                         y=HIWORD(lParam);
657                         dx=lastx-x;
658                         dy=lasty-y;
659                         if (dx != 0 && dy != 0 && dx-lastdx != 0 && dy-lastdy != 0)
660                                 add_entropy=.2;
661                         lastx=x, lasty=y;
662                         lastdx=dx, lastdy=dy;
663                         }
664                 break;
665                 }
666
667         readtimer();
668         RAND_add(&iMsg, sizeof(iMsg), add_entropy);
669         RAND_add(&wParam, sizeof(wParam), 0);
670         RAND_add(&lParam, sizeof(lParam), 0);
671  
672         return (RAND_status());
673         }
674
675
676 void RAND_screen(void) /* function available for backward compatibility */
677 {
678         RAND_poll();
679         readscreen();
680 }
681
682
683 /* feed timing information to the PRNG */
684 static void readtimer(void)
685 {
686         DWORD w;
687         LARGE_INTEGER l;
688         static int have_perfc = 1;
689 #if defined(_MSC_VER) && defined(_M_X86)
690         static int have_tsc = 1;
691         DWORD cyclecount;
692
693         if (have_tsc) {
694           __try {
695             __asm {
696               _emit 0x0f
697               _emit 0x31
698               mov cyclecount, eax
699               }
700             RAND_add(&cyclecount, sizeof(cyclecount), 1);
701           } __except(EXCEPTION_EXECUTE_HANDLER) {
702             have_tsc = 0;
703           }
704         }
705 #else
706 # define have_tsc 0
707 #endif
708
709         if (have_perfc) {
710           if (QueryPerformanceCounter(&l) == 0)
711             have_perfc = 0;
712           else
713             RAND_add(&l, sizeof(l), 0);
714         }
715
716         if (!have_tsc && !have_perfc) {
717           w = GetTickCount();
718           RAND_add(&w, sizeof(w), 0);
719         }
720 }
721
722 /* feed screen contents to PRNG */
723 /*****************************************************************************
724  *
725  * Created 960901 by Gertjan van Oosten, gertjan@West.NL, West Consulting B.V.
726  *
727  * Code adapted from
728  * <URL:http://support.microsoft.com/default.aspx?scid=kb;[LN];97193>;
729  * the original copyright message is:
730  *
731  *   (C) Copyright Microsoft Corp. 1993.  All rights reserved.
732  *
733  *   You have a royalty-free right to use, modify, reproduce and
734  *   distribute the Sample Files (and/or any modified version) in
735  *   any way you find useful, provided that you agree that
736  *   Microsoft has no warranty obligations or liability for any
737  *   Sample Application Files which are modified.
738  */
739
740 static void readscreen(void)
741 {
742 #if !defined(OPENSSL_SYS_WINCE) && !defined(OPENSSL_SYS_WIN32_CYGWIN)
743   HDC           hScrDC;         /* screen DC */
744   HDC           hMemDC;         /* memory DC */
745   HBITMAP       hBitmap;        /* handle for our bitmap */
746   HBITMAP       hOldBitmap;     /* handle for previous bitmap */
747   BITMAP        bm;             /* bitmap properties */
748   unsigned int  size;           /* size of bitmap */
749   char          *bmbits;        /* contents of bitmap */
750   int           w;              /* screen width */
751   int           h;              /* screen height */
752   int           y;              /* y-coordinate of screen lines to grab */
753   int           n = 16;         /* number of screen lines to grab at a time */
754
755   if (check_winnt() && OPENSSL_isservice()>0)
756     return;
757
758   /* Create a screen DC and a memory DC compatible to screen DC */
759   hScrDC = CreateDC(TEXT("DISPLAY"), NULL, NULL, NULL);
760   hMemDC = CreateCompatibleDC(hScrDC);
761
762   /* Get screen resolution */
763   w = GetDeviceCaps(hScrDC, HORZRES);
764   h = GetDeviceCaps(hScrDC, VERTRES);
765
766   /* Create a bitmap compatible with the screen DC */
767   hBitmap = CreateCompatibleBitmap(hScrDC, w, n);
768
769   /* Select new bitmap into memory DC */
770   hOldBitmap = SelectObject(hMemDC, hBitmap);
771
772   /* Get bitmap properties */
773   GetObject(hBitmap, sizeof(BITMAP), (LPSTR)&bm);
774   size = (unsigned int)bm.bmWidthBytes * bm.bmHeight * bm.bmPlanes;
775
776   bmbits = OPENSSL_malloc(size);
777   if (bmbits) {
778     /* Now go through the whole screen, repeatedly grabbing n lines */
779     for (y = 0; y < h-n; y += n)
780         {
781         unsigned char md[MD_DIGEST_LENGTH];
782
783         /* Bitblt screen DC to memory DC */
784         BitBlt(hMemDC, 0, 0, w, n, hScrDC, 0, y, SRCCOPY);
785
786         /* Copy bitmap bits from memory DC to bmbits */
787         GetBitmapBits(hBitmap, size, bmbits);
788
789         /* Get the hash of the bitmap */
790         MD(bmbits,size,md);
791
792         /* Seed the random generator with the hash value */
793         RAND_add(md, MD_DIGEST_LENGTH, 0);
794         }
795
796     OPENSSL_free(bmbits);
797   }
798
799   /* Select old bitmap back into memory DC */
800   hBitmap = SelectObject(hMemDC, hOldBitmap);
801
802   /* Clean up */
803   DeleteObject(hBitmap);
804   DeleteDC(hMemDC);
805   DeleteDC(hScrDC);
806 #endif /* !OPENSSL_SYS_WINCE */
807 }
808
809 #endif