Run entire source base through GNU indent to tidy up the varying
[u/mdw/putty] / noise.c
CommitLineData
374330e2 1/*
2 * Noise generation for PuTTY's cryptographic random number
3 * generator.
4 */
5
6#include <windows.h>
7#include <stdio.h>
8
9#include "putty.h"
10#include "ssh.h"
d5859615 11#include "storage.h"
374330e2 12
13/*
a4e14164 14 * GetSystemPowerStatus function.
15 */
32874aea 16typedef BOOL(WINAPI * gsps_t) (LPSYSTEM_POWER_STATUS);
75cab814 17static gsps_t gsps;
a4e14164 18
19/*
374330e2 20 * This function is called once, at PuTTY startup, and will do some
21 * seriously silly things like listing directories and getting disk
22 * free space and a process snapshot.
23 */
24
32874aea 25void noise_get_heavy(void (*func) (void *, int))
26{
374330e2 27 HANDLE srch;
374330e2 28 WIN32_FIND_DATA finddata;
32874aea 29 char winpath[MAX_PATH + 3];
a4e14164 30 HMODULE mod;
374330e2 31
32 GetWindowsDirectory(winpath, sizeof(winpath));
33 strcat(winpath, "\\*");
34 srch = FindFirstFile(winpath, &finddata);
35 if (srch != INVALID_HANDLE_VALUE) {
36 do {
37 func(&finddata, sizeof(finddata));
38 } while (FindNextFile(srch, &finddata));
39 FindClose(srch);
40 }
41
d5859615 42 read_random_seed(func);
a4e14164 43
44 gsps = NULL;
45 mod = GetModuleHandle("KERNEL32");
46 if (mod) {
32874aea 47 gsps = (gsps_t) GetProcAddress(mod, "GetSystemPowerStatus");
a4e14164 48 }
374330e2 49}
50
32874aea 51void random_save_seed(void)
52{
d5859615 53 int len;
54 void *data;
374330e2 55
d5859615 56 random_get_savedata(&data, &len);
57 write_random_seed(data, len);
de3df031 58}
59
60/*
374330e2 61 * This function is called every time the random pool needs
62 * stirring, and will acquire the system time in all available
63 * forms and the battery status.
64 */
32874aea 65void noise_get_light(void (*func) (void *, int))
66{
374330e2 67 SYSTEMTIME systime;
68 DWORD adjust[2];
69 BOOL rubbish;
70 SYSTEM_POWER_STATUS pwrstat;
71
72 GetSystemTime(&systime);
73 func(&systime, sizeof(systime));
74
75 GetSystemTimeAdjustment(&adjust[0], &adjust[1], &rubbish);
76 func(&adjust, sizeof(adjust));
77
a4e14164 78 /*
79 * Call GetSystemPowerStatus if present.
80 */
81 if (gsps) {
32874aea 82 if (gsps(&pwrstat))
83 func(&pwrstat, sizeof(pwrstat));
a4e14164 84 }
374330e2 85}
86
87/*
7d6ee6ff 88 * This function is called on a timer, and it will monitor
89 * frequently changing quantities such as the state of physical and
90 * virtual memory, the state of the process's message queue, which
91 * window is in the foreground, which owns the clipboard, etc.
92 */
32874aea 93void noise_regular(void)
94{
7d6ee6ff 95 HWND w;
96 DWORD z;
97 POINT pt;
98 MEMORYSTATUS memstat;
99 FILETIME times[4];
100
32874aea 101 w = GetForegroundWindow();
102 random_add_noise(&w, sizeof(w));
103 w = GetCapture();
104 random_add_noise(&w, sizeof(w));
105 w = GetClipboardOwner();
106 random_add_noise(&w, sizeof(w));
107 z = GetQueueStatus(QS_ALLEVENTS);
108 random_add_noise(&z, sizeof(z));
7d6ee6ff 109
32874aea 110 GetCursorPos(&pt);
111 random_add_noise(&pt, sizeof(pt));
7d6ee6ff 112
32874aea 113 GlobalMemoryStatus(&memstat);
114 random_add_noise(&memstat, sizeof(memstat));
7d6ee6ff 115
32874aea 116 GetThreadTimes(GetCurrentThread(), times, times + 1, times + 2,
117 times + 3);
7d6ee6ff 118 random_add_noise(&times, sizeof(times));
32874aea 119 GetProcessTimes(GetCurrentProcess(), times, times + 1, times + 2,
120 times + 3);
7d6ee6ff 121 random_add_noise(&times, sizeof(times));
122}
123
124/*
374330e2 125 * This function is called on every keypress or mouse move, and
126 * will add the current Windows time and performance monitor
127 * counter to the noise pool. It gets the scan code or mouse
128 * position passed in.
129 */
32874aea 130void noise_ultralight(DWORD data)
131{
374330e2 132 DWORD wintime;
133 LARGE_INTEGER perftime;
134
135 random_add_noise(&data, sizeof(DWORD));
136
137 wintime = GetTickCount();
138 random_add_noise(&wintime, sizeof(DWORD));
139
140 if (QueryPerformanceCounter(&perftime))
141 random_add_noise(&perftime, sizeof(perftime));
142}