We have some global keyboard hooks installed via SetWindowsHookEx with WH_KEYBOARD_LL that appear to randomly get unhooked by Windows.

We verified that they hook was no longer attached because calling UnhookWindowsHookEx on the handle returns false. (Also verified that it returns true when it was working properly)

There doesn't seem to be a consistent repro, I've heard that they can get unhooked due to timeouts or exceptions getting thrown, but I've tried both just letting it sit on a breakpoint in the handling method for over a minute, as well as just throwing a random exception (C#) and it still appears to work.

In our callback we quickly post to another thread, so that probably isn't the issue. I've read about solutions in Windows 7 for setting the timeout higher in the registry because Windows 7 is more aggressive about the timeouts apparently (we're all running Win7 here, so not sure if this occurs on other OS's) , but that doesn't seem like an ideal solution.

I've considered just having a background thread running to refresh the hook every once in a while, which is hackish, but I don't know of any real negative consequences of doing that, and it seems better than changing a global Windows registry setting.

Any other suggestions or solutions? Both the class that sets the hooks and the delegates they are attached to are static, so they shouldn't be getting GC'd.

EDIT: Verified with calls to GC.Collect(); that they still work, so they are not getting garbaged collected.

link|improve this question

78% accept rate
1  
Having the thread that made the SetWindowsHookEx call exit or terminate will do this. – Hans Passant Apr 16 '10 at 20:10
@Hans That's not it for us, but it could help someone else. They're hooked up up right before Application.Run and unhooked right after. – Davy8 Apr 16 '10 at 20:38
I seem to recall that Managed Threads are not 1:1 with Unmanaged Threads. Perhaps the Unmanaged thread terminated? – sixlettervariables Apr 19 '10 at 15:38
As far as the timeout goes, have you tried System.Threading.Thread.Sleep() in your hook callback? Could be a long shot, but using an IDE breakpoint might not be an exact representation of a blocked hook callback. – Zach Johnson Apr 19 '10 at 16:03
@six I don't believe that is the case, but do you know how I could check? We have the following code GlobalHooks.InstallHooks(); Application.Run(mainForm); GlobalHooks.UninstallHooks(); which call all the SetWindowsHookEx and UnhookWindowsHookExrespectively. If the thread dies, the application should also close since it's all on the Main thread. – Davy8 Apr 19 '10 at 16:51
show 3 more comments
feedback

6 Answers

up vote 4 down vote accepted
+50

I think this has to be a timeout issue.

Other developers have reported a Windows7 specific problem with low level hooks being unhooked if they exceed an (undocumented) timeout value.

See this thread for other developers discussing the same problem. It may be that you need to perform a busy loop (or a slow Garbage Collection) rather than a Sleep to cause the unhooking behavior. A breakpoint in the LowLevelKeyboardProc function might also create timeout problems. (There's also the observation that a heavy CPU load by another task might provoke the behavior - presumably because the other task steals CPU cycles from the LowLevelKeyboardProc function and causes it to take too long.)

The solution suggested in that thread is to try setting the LowLevelHooksTimeout DWORD value in the registry at HKEY_CURRENT_USER\Control Panel\Desktop to a larger value.

Remember that one of the glories of C# is that even simple statements can take an inordinate amount of time if a garbage collection occurs.. This (or CPU loading by other threads) might explain the intermittent nature of the problem.

link|improve this answer
You don't have to go hunting through the MSDN forums to confirm this; it's quite well documented here in the SDK docs. Focus on the section titled "Remarks". – Cody Gray Jul 18 '11 at 6:41
feedback

There are two things I have thought of that might help you figure out where the problem is.

  1. To help isolate the problem's location, run another WH_KEYBOARD_LL hook simultaneously with your current hook and have it do nothing other than pass the data on down the hook chain. When you find out that your original hook is unhooked, check and see if this "dummy" hook was also unhooked. If the "dummy" hook was also unhooked, you can be fairly certain the problem is outside of your hook (i.e. in Windows or something related to your process as a whole?) If the "dummy" hooks was not unhooked, then the problem is probably somewhere within your hook.

  2. Log the information that comes to your hook via the callback and run it until the hook gets unhooked. Repeat this a number of times and examine the logged data to see if you can discern a pattern leading up to the unhooking.

I would try these one at a time, just in case either would affect the others' outcome. If after that you have no leads on what the problem could be, you might try running them together.

link|improve this answer
We actually have 3 WH_KEYBOARD_LL hooks, each of which ends with CallNextHookEx When it stops working they all stop working and nothing gets hit with breakpoints set in all the callbacks. – Davy8 Apr 21 '10 at 0:22
It's also kinda frustrating because it's not consistent, sometimes I can get it to unhook after a few minutes, other times it'll stay hooked for hours, so it's pretty annoying to debug. – Davy8 Apr 21 '10 at 0:24
@Davy8: Are you able to reproduce the problem with only one WH_KEYBOARD_LL hook? – Zach Johnson Apr 21 '10 at 0:35
feedback

Check out this post:

Using global keyboard hook (WH_KEYBOARD_LL) in WPF / C#

It sounds like your object is getting garbage collected. If this isn't the case, can yo post your GlobalHooks class?

link|improve this answer
1  
Both the class and the delegates are static so this shouldn't be the case. I mentioned this in the last sentence of the question, but I could emphasize it more. – Davy8 Apr 20 '10 at 18:38
feedback

Perhaps someone else has a hook that isn't calling CallNextHookEx()?

link|improve this answer
I don't believe so because when it gets in this state, UnhookWindowsHookEx on the hook returns false indicating that the hook was gone. – Davy8 Apr 21 '10 at 4:46
feedback

It's a long shot, but by any chance do you have anti-virus software running? That could very well be noticing a keyboard hook and kicking it out.

It's more likely it would warn you, and remove it immediately, but it's one of those odd things worth checking.

link|improve this answer
feedback

I can tell you your problem right now, when you create the delegate for the hook procedure i guarantee you are creating it as a local variable or removing the reference to it, the problem is, when the method goes out of scope the garbage collector picks it up and disposes the delegate, this then causes the hook to stop functioning, all you need to do to fix this is make the delegate a static variable or an instance variable of the class which owns the hook procedure.

link|improve this answer
I mentioned in bold in my question that "Both the class that sets the hooks and the delegates they are attached to are static, so they shouldn't be getting GC'd." – Davy8 Nov 17 '11 at 16:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.