2a4f76781305036e847ca96217abc211b0a79656
[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 #include "cryptlib.h"
113 #include <openssl/rand.h>
114 #include "rand_lcl.h"
115
116 #if defined(WINDOWS) || defined(WIN32)
117 #include <windows.h>
118 #ifndef _WIN32_WINNT
119 # define _WIN32_WINNT 0x0400
120 #endif
121 #include <wincrypt.h>
122 #include <tlhelp32.h>
123
124 /* Intel hardware RNG CSP -- available from
125  * http://developer.intel.com/design/security/rng/redist_license.htm
126  */
127 #define PROV_INTEL_SEC 22
128 #define INTEL_DEF_PROV "Intel Hardware Cryptographic Service Provider"
129
130 static void readtimer(void);
131 static void readscreen(void);
132
133 /* It appears like CURSORINFO, PCURSORINFO and LPCURSORINFO are only defined
134    when WINVER is 0x0500 and up, which currently only happens on Win2000.
135    Unfortunately, those are typedefs, so they're a little bit difficult to
136    detect properly.  On the other hand, the macro CURSOR_SHOWING is defined
137    within the same conditional, so it can be use to detect the absence of said
138    typedefs. */
139
140 #ifndef CURSOR_SHOWING
141 /*
142  * Information about the global cursor.
143  */
144 typedef struct tagCURSORINFO
145 {
146     DWORD   cbSize;
147     DWORD   flags;
148     HCURSOR hCursor;
149     POINT   ptScreenPos;
150 } CURSORINFO, *PCURSORINFO, *LPCURSORINFO;
151
152 #define CURSOR_SHOWING     0x00000001
153 #endif /* CURSOR_SHOWING */
154
155 typedef BOOL (WINAPI *CRYPTACQUIRECONTEXT)(HCRYPTPROV *, LPCTSTR, LPCTSTR,
156                                     DWORD, DWORD);
157 typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV, DWORD, BYTE *);
158 typedef BOOL (WINAPI *CRYPTRELEASECONTEXT)(HCRYPTPROV, DWORD);
159
160 typedef HWND (WINAPI *GETFOREGROUNDWINDOW)(VOID);
161 typedef BOOL (WINAPI *GETCURSORINFO)(PCURSORINFO);
162 typedef DWORD (WINAPI *GETQUEUESTATUS)(UINT);
163
164 typedef HANDLE (WINAPI *CREATETOOLHELP32SNAPSHOT)(DWORD, DWORD);
165 typedef BOOL (WINAPI *HEAP32FIRST)(LPHEAPENTRY32, DWORD, DWORD);
166 typedef BOOL (WINAPI *HEAP32NEXT)(LPHEAPENTRY32);
167 typedef BOOL (WINAPI *HEAP32LIST)(HANDLE, LPHEAPLIST32);
168 typedef BOOL (WINAPI *PROCESS32)(HANDLE, LPPROCESSENTRY32);
169 typedef BOOL (WINAPI *THREAD32)(HANDLE, LPTHREADENTRY32);
170 typedef BOOL (WINAPI *MODULE32)(HANDLE, LPMODULEENTRY32);
171
172 #include <lmcons.h>
173 #include <lmstats.h>
174 #if 0 /* Some compilers use LMSTR, others (VC6, for example) use LPTSTR.
175        * This part is disabled until a fix is found.
176        */
177 typedef NET_API_STATUS (NET_API_FUNCTION * NETSTATGET)
178         (LMSTR, LMSTR, DWORD, DWORD, LPBYTE*);
179 typedef NET_API_STATUS (NET_API_FUNCTION * NETFREE)(LPBYTE);
180 #endif
181
182 int RAND_poll(void)
183 {
184         MEMORYSTATUS m;
185         HCRYPTPROV hProvider = 0;
186         BYTE buf[64];
187         DWORD w;
188         HWND h;
189
190         HMODULE advapi, kernel, user, netapi;
191         CRYPTACQUIRECONTEXT acquire = 0;
192         CRYPTGENRANDOM gen = 0;
193         CRYPTRELEASECONTEXT release = 0;
194 #if 0 /* This part is disabled until a fix for the problem with the
195        * definition of NETSTATGET is found.
196        */
197         NETSTATGET netstatget = 0;
198         NETFREE netfree = 0;
199 #endif
200
201         /* load functions dynamically - not available on all systems */
202         advapi = LoadLibrary("ADVAPI32.DLL");
203         kernel = LoadLibrary("KERNEL32.DLL");
204         user = LoadLibrary("USER32.DLL");
205         netapi = LoadLibrary("NETAPI32.DLL");
206
207 #if 0 /* This part is disabled until a fix for the problem with the
208        * definition of NETSTATGET is found.  Also, note that VC6 doesn't
209        * understand strings starting with L".
210        */
211         if (netapi)
212                 {
213                 netstatget = (NETSTATGET) GetProcAddress(netapi,"NetStatisticsGet");
214                 netfree = (NETFREE) GetProcAddress(netapi,"NetApiBufferFree");
215                 }
216
217         if (netstatget && netfree)
218                 {
219                 LPBYTE outbuf;
220                 /* NetStatisticsGet() is a Unicode only function */
221                 if (netstatget(NULL, L"LanmanWorkstation", 0, 0, &outbuf) == 0)
222                         {
223                         RAND_add(outbuf, sizeof(STAT_WORKSTATION_0), 0);
224                         netfree(outbuf);
225                         }
226                 if (netstatget(NULL, L"LanmanServer", 0, 0, &outbuf) == 0)
227                         {
228                         RAND_add(outbuf, sizeof(STAT_SERVER_0), 0);
229                         netfree(outbuf);
230                         }
231                 }
232
233         if (netapi)
234                 FreeLibrary(netapi);
235 #endif
236  
237         /* Read Performance Statistics from NT/2000 registry */
238         /* The size of the performance data can vary from call to call */
239         /* so we must guess the size of the buffer to use and increase */
240         /* its size if we get an ERROR_MORE_DATA return instead of     */
241         /* ERROR_SUCCESS.                                              */
242         {
243         LONG   rc=ERROR_MORE_DATA;
244         char * buf=NULL;
245         DWORD bufsz=0;
246         DWORD length;
247
248         while (rc == ERROR_MORE_DATA)
249                 {
250                 buf = realloc(buf,bufsz+8192);
251                 if (!buf)
252                         break;
253                 bufsz += 8192;
254
255                 length = bufsz;
256                 rc = RegQueryValueEx(HKEY_PERFORMANCE_DATA, "Global",
257                         NULL, NULL, buf, &length);
258                 }
259         if (rc == ERROR_SUCCESS)
260                 {
261                 RAND_add(&length, sizeof(length), 0);
262                 RAND_add(buf, length, 0);
263                 }
264         if (buf)
265                 free(buf);
266         }
267
268         if (advapi)
269                 {
270                 acquire = (CRYPTACQUIRECONTEXT) GetProcAddress(advapi,
271                         "CryptAcquireContextA");
272                 gen = (CRYPTGENRANDOM) GetProcAddress(advapi,
273                         "CryptGenRandom");
274                 release = (CRYPTRELEASECONTEXT) GetProcAddress(advapi,
275                         "CryptReleaseContext");
276                 }
277
278         if (acquire && gen && release)
279                 {
280                 /* poll the CryptoAPI PRNG */
281                 if (acquire(&hProvider, 0, 0, PROV_RSA_FULL,
282                         CRYPT_VERIFYCONTEXT))
283                         {
284                         if (gen(hProvider, sizeof(buf), buf) != 0)
285                                 {
286                                 RAND_add(buf, sizeof(buf), 0);
287 #ifdef DEBUG
288                                 printf("randomness from PROV_RSA_FULL\n");
289 #endif
290                                 }
291                         release(hProvider, 0); 
292                         }
293                 
294                 /* poll the Pentium PRG with CryptoAPI */
295                 if (acquire(&hProvider, 0, INTEL_DEF_PROV, PROV_INTEL_SEC, 0))
296                         {
297                         if (gen(hProvider, sizeof(buf), buf) != 0)
298                                 {
299                                 RAND_add(buf, sizeof(buf), 0);
300 #ifdef DEBUG
301                                 printf("randomness from PROV_INTEL_SEC\n");
302 #endif
303                                 }
304                         release(hProvider, 0);
305                         }
306                 }
307
308         if (advapi)
309                 FreeLibrary(advapi);
310
311         /* timer data */
312         readtimer();
313         
314         /* memory usage statistics */
315         GlobalMemoryStatus(&m);
316         RAND_add(&m, sizeof(m), 1);
317
318         /* process ID */
319         w = GetCurrentProcessId();
320         RAND_add(&w, sizeof(w), 0);
321
322         if (user)
323                 {
324                 GETCURSORINFO cursor;
325                 GETFOREGROUNDWINDOW win;
326                 GETQUEUESTATUS queue;
327
328                 win = (GETFOREGROUNDWINDOW) GetProcAddress(user, "GetForegroundWindow");
329                 cursor = (GETCURSORINFO) GetProcAddress(user, "GetCursorInfo");
330                 queue = (GETQUEUESTATUS) GetProcAddress(user, "GetQueueStatus");
331
332                 if (win)
333                 {
334                         /* window handle */
335                         h = win();
336                         RAND_add(&h, sizeof(h), 0);
337                 }
338
339                 if (cursor)
340                         {
341                         /* unfortunately, its not safe to call GetCursorInfo()
342                          * on NT4 even though it exists in SP3 (or SP6) and
343                          * higher.
344                          */
345                         OSVERSIONINFO osverinfo ;
346                         osverinfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO) ;
347                         GetVersionEx( &osverinfo ) ;
348
349                         if ( osverinfo.dwPlatformId == VER_PLATFORM_WIN32_NT &&
350                                 osverinfo.dwMajorVersion < 5)
351                                 cursor = 0;
352                         }
353
354                 if (cursor)
355                         {
356                         /* cursor position */
357                         CURSORINFO ci;
358                         ci.cbSize = sizeof(CURSORINFO);
359                         if (cursor(&ci))
360                                 RAND_add(&ci, ci.cbSize, 0);
361                         }
362
363                 if (queue)
364                         {
365                         /* message queue status */
366                         w = queue(QS_ALLEVENTS);
367                         RAND_add(&w, sizeof(w), 0);
368                         }
369
370                 FreeLibrary(user);
371                 }
372
373         /* Toolhelp32 snapshot: enumerate processes, threads, modules and heap
374          * http://msdn.microsoft.com/library/psdk/winbase/toolhelp_5pfd.htm
375          * (Win 9x and 2000 only, not available on NT)
376          *
377          * This seeding method was proposed in Peter Gutmann, Software
378          * Generation of Practically Strong Random Numbers,
379          * http://www.usenix.org/publications/library/proceedings/sec98/gutmann.html
380      * revised version at http://www.cryptoengines.com/~peter/06_random.pdf
381          * (The assignment of entropy estimates below is arbitrary, but based
382          * on Peter's analysis the full poll appears to be safe. Additional
383          * interactive seeding is encouraged.)
384          */
385
386         if (kernel)
387                 {
388                 CREATETOOLHELP32SNAPSHOT snap;
389                 HANDLE handle;
390
391                 HEAP32FIRST heap_first;
392                 HEAP32NEXT heap_next;
393                 HEAP32LIST heaplist_first, heaplist_next;
394                 PROCESS32 process_first, process_next;
395                 THREAD32 thread_first, thread_next;
396                 MODULE32 module_first, module_next;
397
398                 HEAPLIST32 hlist;
399                 HEAPENTRY32 hentry;
400                 PROCESSENTRY32 p;
401                 THREADENTRY32 t;
402                 MODULEENTRY32 m;
403
404                 snap = (CREATETOOLHELP32SNAPSHOT)
405                   GetProcAddress(kernel, "CreateToolhelp32Snapshot");
406                 heap_first = (HEAP32FIRST) GetProcAddress(kernel, "Heap32First");
407                 heap_next = (HEAP32NEXT) GetProcAddress(kernel, "Heap32Next");
408                 heaplist_first = (HEAP32LIST) GetProcAddress(kernel, "Heap32ListFirst");
409                 heaplist_next = (HEAP32LIST) GetProcAddress(kernel, "Heap32ListNext");
410                 process_first = (PROCESS32) GetProcAddress(kernel, "Process32First");
411                 process_next = (PROCESS32) GetProcAddress(kernel, "Process32Next");
412                 thread_first = (THREAD32) GetProcAddress(kernel, "Thread32First");
413                 thread_next = (THREAD32) GetProcAddress(kernel, "Thread32Next");
414                 module_first = (MODULE32) GetProcAddress(kernel, "Module32First");
415                 module_next = (MODULE32) GetProcAddress(kernel, "Module32Next");
416
417                 if (snap && heap_first && heap_next && heaplist_first &&
418                         heaplist_next && process_first && process_next &&
419                         thread_first && thread_next && module_first &&
420                         module_next && (handle = snap(TH32CS_SNAPALL,0))
421                         != NULL)
422                         {
423                         /* heap list and heap walking */
424                         hlist.dwSize = sizeof(HEAPLIST32);              
425                         if (heaplist_first(handle, &hlist))
426                                 do
427                                         {
428                                         RAND_add(&hlist, hlist.dwSize, 0);
429                                         hentry.dwSize = sizeof(HEAPENTRY32);
430                                         if (heap_first(&hentry,
431                                                 hlist.th32ProcessID,
432                                                 hlist.th32HeapID))
433                                                 {
434                                                 int entrycnt = 50;
435                                                 do
436                                                         RAND_add(&hentry,
437                                                                 hentry.dwSize, 0);
438                                                 while (heap_next(&hentry)
439                                                         && --entrycnt > 0);
440                                                 }
441                                         } while (heaplist_next(handle,
442                                                 &hlist));
443
444                         /* process walking */
445                         p.dwSize = sizeof(PROCESSENTRY32);
446                         if (process_first(handle, &p))
447                                 do
448                                         RAND_add(&p, p.dwSize, 0);
449                                 while (process_next(handle, &p));
450                         
451                         /* thread walking */
452                         t.dwSize = sizeof(THREADENTRY32);
453                         if (thread_first(handle, &t))
454                                 do
455                                         RAND_add(&t, t.dwSize, 0);
456                                 while (thread_next(handle, &t));
457                         
458                         /* module walking */
459                         m.dwSize = sizeof(MODULEENTRY32);
460                         if (module_first(handle, &m))
461                                 do
462                                         RAND_add(&m, m.dwSize, 1);
463                                 while (module_next(handle, &m));
464                         
465                         CloseHandle(handle);
466                         }
467
468                 FreeLibrary(kernel);
469                 }
470
471 #ifdef DEBUG
472         printf("Exiting RAND_poll\n");
473 #endif
474
475         return(1);
476 }
477
478 int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam)
479         {
480         double add_entropy=0;
481
482         switch (iMsg)
483                 {
484         case WM_KEYDOWN:
485                         {
486                         static WPARAM key;
487                         if (key != wParam)
488                                 add_entropy = 0.05;
489                         key = wParam;
490                         }
491                         break;
492         case WM_MOUSEMOVE:
493                         {
494                         static int lastx,lasty,lastdx,lastdy;
495                         int x,y,dx,dy;
496
497                         x=LOWORD(lParam);
498                         y=HIWORD(lParam);
499                         dx=lastx-x;
500                         dy=lasty-y;
501                         if (dx != 0 && dy != 0 && dx-lastdx != 0 && dy-lastdy != 0)
502                                 add_entropy=.2;
503                         lastx=x, lasty=y;
504                         lastdx=dx, lastdy=dy;
505                         }
506                 break;
507                 }
508
509         readtimer();
510         RAND_add(&iMsg, sizeof(iMsg), add_entropy);
511         RAND_add(&wParam, sizeof(wParam), 0);
512         RAND_add(&lParam, sizeof(lParam), 0);
513  
514         return (RAND_status());
515         }
516
517
518 void RAND_screen(void) /* function available for backward compatibility */
519 {
520         RAND_poll();
521         readscreen();
522 }
523
524
525 /* feed timing information to the PRNG */
526 static void readtimer(void)
527 {
528         DWORD w, cyclecount;
529         LARGE_INTEGER l;
530         static int have_perfc = 1;
531 #ifndef __GNUC__
532         static int have_tsc = 1;
533
534         if (have_tsc) {
535           __try {
536             __asm {
537               rdtsc
538               mov cyclecount, eax
539               }
540             RAND_add(&cyclecount, sizeof(cyclecount), 1);
541           } __except(EXCEPTION_EXECUTE_HANDLER) {
542             have_tsc = 0;
543           }
544         }
545 #else
546 # define have_tsc 0
547 #endif
548
549         if (have_perfc) {
550           if (QueryPerformanceCounter(&l) == 0)
551             have_perfc = 0;
552           else
553             RAND_add(&l, sizeof(l), 0);
554         }
555
556         if (!have_tsc && !have_perfc) {
557           w = GetTickCount();
558           RAND_add(&w, sizeof(w), 0);
559         }
560 }
561
562 /* feed screen contents to PRNG */
563 /*****************************************************************************
564  *
565  * Created 960901 by Gertjan van Oosten, gertjan@West.NL, West Consulting B.V.
566  *
567  * Code adapted from
568  * <URL:http://www.microsoft.com/kb/developr/win_dk/q97193.htm>;
569  * the original copyright message is:
570  *
571  *   (C) Copyright Microsoft Corp. 1993.  All rights reserved.
572  *
573  *   You have a royalty-free right to use, modify, reproduce and
574  *   distribute the Sample Files (and/or any modified version) in
575  *   any way you find useful, provided that you agree that
576  *   Microsoft has no warranty obligations or liability for any
577  *   Sample Application Files which are modified.
578  */
579
580 static void readscreen(void)
581 {
582   HDC           hScrDC;         /* screen DC */
583   HDC           hMemDC;         /* memory DC */
584   HBITMAP       hBitmap;        /* handle for our bitmap */
585   HBITMAP       hOldBitmap;     /* handle for previous bitmap */
586   BITMAP        bm;             /* bitmap properties */
587   unsigned int  size;           /* size of bitmap */
588   char          *bmbits;        /* contents of bitmap */
589   int           w;              /* screen width */
590   int           h;              /* screen height */
591   int           y;              /* y-coordinate of screen lines to grab */
592   int           n = 16;         /* number of screen lines to grab at a time */
593
594   /* Create a screen DC and a memory DC compatible to screen DC */
595   hScrDC = CreateDC("DISPLAY", NULL, NULL, NULL);
596   hMemDC = CreateCompatibleDC(hScrDC);
597
598   /* Get screen resolution */
599   w = GetDeviceCaps(hScrDC, HORZRES);
600   h = GetDeviceCaps(hScrDC, VERTRES);
601
602   /* Create a bitmap compatible with the screen DC */
603   hBitmap = CreateCompatibleBitmap(hScrDC, w, n);
604
605   /* Select new bitmap into memory DC */
606   hOldBitmap = SelectObject(hMemDC, hBitmap);
607
608   /* Get bitmap properties */
609   GetObject(hBitmap, sizeof(BITMAP), (LPSTR)&bm);
610   size = (unsigned int)bm.bmWidthBytes * bm.bmHeight * bm.bmPlanes;
611
612   bmbits = OPENSSL_malloc(size);
613   if (bmbits) {
614     /* Now go through the whole screen, repeatedly grabbing n lines */
615     for (y = 0; y < h-n; y += n)
616         {
617         unsigned char md[MD_DIGEST_LENGTH];
618
619         /* Bitblt screen DC to memory DC */
620         BitBlt(hMemDC, 0, 0, w, n, hScrDC, 0, y, SRCCOPY);
621
622         /* Copy bitmap bits from memory DC to bmbits */
623         GetBitmapBits(hBitmap, size, bmbits);
624
625         /* Get the hash of the bitmap */
626         MD(bmbits,size,md);
627
628         /* Seed the random generator with the hash value */
629         RAND_add(md, MD_DIGEST_LENGTH, 0);
630         }
631
632     OPENSSL_free(bmbits);
633   }
634
635   /* Select old bitmap back into memory DC */
636   hBitmap = SelectObject(hMemDC, hOldBitmap);
637
638   /* Clean up */
639   DeleteObject(hBitmap);
640   DeleteDC(hMemDC);
641   DeleteDC(hScrDC);
642 }
643
644 #else /* Unix version */
645
646 #include <time.h>
647
648 int RAND_poll(void)
649 {
650         unsigned long l;
651         pid_t curr_pid = getpid();
652 #ifdef DEVRANDOM
653         FILE *fh;
654 #endif
655
656 #ifdef DEVRANDOM
657         /* Use a random entropy pool device. Linux, FreeBSD and OpenBSD
658          * have this. Use /dev/urandom if you can as /dev/random may block
659          * if it runs out of random entries.  */
660
661         if ((fh = fopen(DEVRANDOM, "r")) != NULL)
662                 {
663                 unsigned char tmpbuf[ENTROPY_NEEDED];
664                 int n;
665                 
666                 setvbuf(fh, NULL, _IONBF, 0);
667                 n=fread((unsigned char *)tmpbuf,1,ENTROPY_NEEDED,fh);
668                 fclose(fh);
669                 RAND_add(tmpbuf,sizeof tmpbuf,n);
670                 memset(tmpbuf,0,n);
671                 }
672 #endif
673
674         /* put in some default random data, we need more than just this */
675         l=curr_pid;
676         RAND_add(&l,sizeof(l),0);
677         l=getuid();
678         RAND_add(&l,sizeof(l),0);
679
680         l=time(NULL);
681         RAND_add(&l,sizeof(l),0);
682
683 #ifdef DEVRANDOM
684         return 1;
685 #endif
686         return 0;
687 }
688
689 #endif