X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=noise.c;h=c5966a712c885fa9fcb088187323795bc76f935a;hb=9b15a8010102fc83dcd7eef78014a65f11619d63;hp=88b13a97b0b708b7ae13a2a7e45b14cf63dc68f2;hpb=aad0a52dfb453b77fa6c0b36fadf16ae4b19a30c;p=PuTTY.git diff --git a/noise.c b/noise.c index 88b13a97..c5966a71 100644 --- a/noise.c +++ b/noise.c @@ -10,6 +10,12 @@ #include "ssh.h" #include "storage.h" +/* + * GetSystemPowerStatus function. + */ +typedef BOOL (WINAPI *gsps_t)(LPSYSTEM_POWER_STATUS); +static gsps_t gsps; + /* * This function is called once, at PuTTY startup, and will do some * seriously silly things like listing directories and getting disk @@ -20,6 +26,7 @@ void noise_get_heavy(void (*func) (void *, int)) { HANDLE srch; WIN32_FIND_DATA finddata; char winpath[MAX_PATH+3]; + HMODULE mod; GetWindowsDirectory(winpath, sizeof(winpath)); strcat(winpath, "\\*"); @@ -32,6 +39,12 @@ void noise_get_heavy(void (*func) (void *, int)) { } read_random_seed(func); + + gsps = NULL; + mod = GetModuleHandle("KERNEL32"); + if (mod) { + gsps = (gsps_t)GetProcAddress(mod, "GetSystemPowerStatus"); + } } void random_save_seed(void) { @@ -59,10 +72,41 @@ void noise_get_light(void (*func) (void *, int)) { GetSystemTimeAdjustment(&adjust[0], &adjust[1], &rubbish); func(&adjust, sizeof(adjust)); -#ifndef WIN32S_COMPAT - if (GetSystemPowerStatus(&pwrstat)) - func(&pwrstat, sizeof(pwrstat)); -#endif + /* + * Call GetSystemPowerStatus if present. + */ + if (gsps) { + if (gsps(&pwrstat)) + func(&pwrstat, sizeof(pwrstat)); + } +} + +/* + * This function is called on a timer, and it will monitor + * frequently changing quantities such as the state of physical and + * virtual memory, the state of the process's message queue, which + * window is in the foreground, which owns the clipboard, etc. + */ +void noise_regular(void) { + HWND w; + DWORD z; + POINT pt; + MEMORYSTATUS memstat; + FILETIME times[4]; + + w = GetForegroundWindow(); random_add_noise(&w, sizeof(w)); + w = GetCapture(); random_add_noise(&w, sizeof(w)); + w = GetClipboardOwner(); random_add_noise(&w, sizeof(w)); + z = GetQueueStatus(QS_ALLEVENTS); random_add_noise(&z, sizeof(z)); + + GetCursorPos(&pt); random_add_noise(&pt, sizeof(pt)); + + GlobalMemoryStatus(&memstat); random_add_noise(&memstat, sizeof(memstat)); + + GetThreadTimes(GetCurrentThread(), times, times+1, times+2, times+3); + random_add_noise(×, sizeof(times)); + GetProcessTimes(GetCurrentProcess(), times, times+1, times+2, times+3); + random_add_noise(×, sizeof(times)); } /*