I wish to be able to record, in real time, the activity of a kernel mode driver (I have the full symbols for it). It's a HID miniclass driver. I wish to record the execution of calls in this driver (stacktraces every time an IRP enters and leaves the driver).

Is this possible (maybe with EWT and/or WPT)?

link|improve this question

Do you want to trace the IRPs from within your driver? – Dale Halliwell Dec 9 '09 at 22:13
Yes, preferably. – Aram Hăvărneanu Dec 10 '09 at 8:51
feedback

2 Answers

up vote 1 down vote accepted

How about ETW tracing? MS uses it all over inside windows. It will give you call-stacks also.

Here is the link

link|improve this answer
ETW tracing seems to be what I want, but the complexity requires a SMP brain to use it effectively. I finished that project long time ago, but I should learn to use ETW for my current projects! – Aram Hăvărneanu Apr 6 '10 at 14:21
I have been using ETW for some of the code I write and I have seen great benefits of using it. – Naveen Apr 6 '10 at 14:38
feedback

If you need to monitor only IRPs you can use Irp Tracker utility.

link|improve this answer
Not really what I want, but this seems to be an awesome tool. Very useful, thanks! Too bad it seems to be 32 bit only. – Aram Hăvărneanu Dec 3 '09 at 10:11
feedback

Your Answer

 
or
required, but never shown

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