2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2014-2018 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-04-10 08:19:58 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <qt/winshutdownmonitor.h>
|
2014-04-10 08:19:58 +02:00
|
|
|
|
2018-06-13 16:02:39 +02:00
|
|
|
#if defined(Q_OS_WIN)
|
2018-05-16 21:17:40 +02:00
|
|
|
#include <shutdown.h>
|
2018-10-23 00:51:11 +02:00
|
|
|
#include <util/system.h>
|
2014-04-10 08:19:58 +02:00
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
2014-06-24 14:33:38 +02:00
|
|
|
#include <openssl/rand.h>
|
|
|
|
|
2014-04-10 08:19:58 +02:00
|
|
|
// If we don't want a message to be processed by Qt, return true and set result to
|
|
|
|
// the value that the window procedure should return. Otherwise return false.
|
|
|
|
bool WinShutdownMonitor::nativeEventFilter(const QByteArray &eventType, void *pMessage, long *pnResult)
|
|
|
|
{
|
|
|
|
Q_UNUSED(eventType);
|
|
|
|
|
|
|
|
MSG *pMsg = static_cast<MSG *>(pMessage);
|
|
|
|
|
2014-06-24 14:33:38 +02:00
|
|
|
// Seed OpenSSL PRNG with Windows event data (e.g. mouse movements and other user interactions)
|
|
|
|
if (RAND_event(pMsg->message, pMsg->wParam, pMsg->lParam) == 0) {
|
|
|
|
// Warn only once as this is performance-critical
|
|
|
|
static bool warned = false;
|
|
|
|
if (!warned) {
|
2016-06-20 19:46:59 +02:00
|
|
|
LogPrintf("%s: OpenSSL RAND_event() failed to seed OpenSSL PRNG with enough data.\n", __func__);
|
2014-06-24 14:33:38 +02:00
|
|
|
warned = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-10 08:19:58 +02:00
|
|
|
switch(pMsg->message)
|
|
|
|
{
|
|
|
|
case WM_QUERYENDSESSION:
|
|
|
|
{
|
|
|
|
// Initiate a client shutdown after receiving a WM_QUERYENDSESSION and block
|
|
|
|
// Windows session end until we have finished client shutdown.
|
|
|
|
StartShutdown();
|
|
|
|
*pnResult = FALSE;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_ENDSESSION:
|
|
|
|
{
|
|
|
|
*pnResult = FALSE;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WinShutdownMonitor::registerShutdownBlockReason(const QString& strReason, const HWND& mainWinId)
|
|
|
|
{
|
|
|
|
typedef BOOL (WINAPI *PSHUTDOWNBRCREATE)(HWND, LPCWSTR);
|
2018-02-12 15:48:37 +01:00
|
|
|
PSHUTDOWNBRCREATE shutdownBRCreate = (PSHUTDOWNBRCREATE)GetProcAddress(GetModuleHandleA("User32.dll"), "ShutdownBlockReasonCreate");
|
2017-08-07 07:36:37 +02:00
|
|
|
if (shutdownBRCreate == nullptr) {
|
2014-06-24 14:33:38 +02:00
|
|
|
qWarning() << "registerShutdownBlockReason: GetProcAddress for ShutdownBlockReasonCreate failed";
|
2014-04-10 08:19:58 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shutdownBRCreate(mainWinId, strReason.toStdWString().c_str()))
|
2014-06-24 14:33:38 +02:00
|
|
|
qWarning() << "registerShutdownBlockReason: Successfully registered: " + strReason;
|
2014-04-10 08:19:58 +02:00
|
|
|
else
|
2014-06-24 14:33:38 +02:00
|
|
|
qWarning() << "registerShutdownBlockReason: Failed to register: " + strReason;
|
2014-04-10 08:19:58 +02:00
|
|
|
}
|
|
|
|
#endif
|