Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to hook any function that tries to retrieve the system time in order to generate "time independent" replays for different applications. Some events like pseudorandom number generation depend on calls to time(), but for example some others call timeGetTime() or _time64().

What is the minimum set of functions that I would need to hook (in Windows) to catch all time retrieving functions. Is it actually possible to hook on these functions? I am trying to do it on time(), but my hook is being ignored. I have had success hooking to other functions (like rand) but my time() hook seems to be ignored.

I am using Detours, but I am open to use any other API interception tool.

share|improve this question
Why don't you just pass the same seed to the PRNG every time you want to reproduce a specific simulation? – David Heffernan Nov 11 '11 at 5:36
I am trying to do this on applications where I don't have access to the source – cloudraven Nov 11 '11 at 18:27

3 Answers

up vote 2 down vote accepted

For game 'speedhacks', the 3 APIs which are usually hooked are:

Most of these functions return a time since the system started or something similar. In your hook, you need to decide what you want to do. You could:

  1. Always return a static time
  2. Do the common approach for 'slowing down' or 'speeding up' time:
    • When your DLL is injected, take an initial time (say init_time)
    • Each time the target calls your time function, you can call a trampolined version of the real function which gets you a real_time
    • The value you return would be something like init_time + 0.5*(real_time-init_time) which would slow time down by half for example
share|improve this answer

You probably want to hook the time system call. Ugh, I don't know why I'm even suggesting that. But reverse engineering GetSystemTime in kernel32.dll would detail how that system call is made.

share|improve this answer

The minimum set of (preferably) kernel APIs that you want to hook are NtQuerySystemTime and NtGetTickCount. Kernel hooks are recommended since there's too many user-land apis to hook and you never know whether the application is directly accessing the time data using those two functions.

Of course you should filter out the process by calling PsGetCurrentProcess() and comparing the *(eprocess->UniqueProcessID) with your target process id.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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