Let me preface this by saying that my original goal was to determine the power state that a Windows OS is entering into before the actual power state kicks in. I asked a similar question on another thread for which I received a bunch of smirks regarding why I need to know this. So without going into lengthy explanation regarding why I need this, let me briefly say that the hardware I have connected to a PC will need this information for its own power management.
At this point I am also trying to avoid writing a device driver so instead I want to try to find a solution from a user mode/local service code.
OK, now back to the matter at hand. Since the Windows OS provides just the basic power notification that, for instance, won't let me differentiate between rebooting vs. shut-down, or sleep vs. hibernation, I thought to implement a global hook on Windows APIs that initiate these power states (which are SetSuspendState for sleep/hibernation and InitiateSystemShutdown for rebooting/shut-down.) I also found this article that explains how to implement the global API hook with C++/WinAPIs.
So being able to intercept a command for a power event before it happens the idea is to write into the system registry the type of the power event (see POWER_ACTION and SYSTEM_POWER_STATE below) and read it from the user-mode/local service code after it receives the WM_POWERBROADCAST notification.
I've never done global API hooking so before I jump into coding it, I'm asking for advice of professionals on this site -- what do you think, can this work?
Also a couple of technical questions about APIs themselves:
1: I did some research and it seems like most higher level power APIs on a kernel level boil down to either NtInitiatePowerAction or ZwInitiatePowerAction exported from Ntdll.dll. Both seem to do the same, but the question is, which one should I hook to?
2: There's a lack of documentation from Microsoft on those kernel level APIs. The only stuff I was able to find is this. Does anyone have any info to add to it?
NTSYSAPI
NTSTATUS
NTAPI
NtInitiatePowerAction(
IN POWER_ACTION SystemAction,
IN SYSTEM_POWER_STATE MinSystemState,
IN ULONG Flags,
IN BOOLEAN Asynchronous
);
typedef enum _POWER_ACTION {
PowerActionNone,
PowerActionReserved,
PowerActionSleep,
PowerActionHibernate,
PowerActionShutdown,
PowerActionShutdownReset,
PowerActionShutdownOff
} POWER_ACTION, *PPOWER_ACTION;
typedef enum _SYSTEM_POWER_STATE {
PowerSystemUnspecified = 0,
PowerSystemWorking,
PowerSystemSleeping1,
PowerSystemSleeping2,
PowerSystemSleeping3,
PowerSystemHibernate,
PowerSystemShutdown
} SYSTEM_POWER_STATE, *PSYSTEM_POWER_STATE;
//Flags seem to be the these ones
POWER_ACTION_QUERY_ALLOWED
POWER_ACTION_UI_ALLOWED
POWER_ACTION_OVERRIDE_APPS
POWER_ACTION_LOCK_CONSOLE
POWER_ACTION_DISABLE_WAKES
POWER_ACTION_CRITICAL
Actual values for flags above can be these here.
3: I need this to work under Windows XP SP3 and later OS. It seems like all this stuff is supported since XP, but my concern is those kernel level APIs that don't seem to be mentioned in the official MSDN documentation.
So anyway, I'd appreciate to hear any insight on this?