Hi, my name is Philip Ries and I'm also a developer on the USB core team. I'd like to tell you about the instrumentation that our team added to the USB core drivers for Windows 7, and how you can make use of this instrumentation.
The USB Hub and USB Port drivers are instrumented with Event Tracing for Windows events. What does this mean? In brief, anyone running Windows 7 can activate a USB trace on a live system and record what's going on in our drivers. The recorded log can help troubleshoot USB issues. Anyone can read the log because the events were compiled using a manifest.
Driver development: Manifested ETW
You might see this kind of event instrumentation referred to as "Manifested ETW" to distinguish it from other ETW-related technologies. Manifested ETW allows you to log well-defined events with structured data payloads. If you're interested in instrumenting your own driver this way, the WDK instructions for manifested ETW will help you get it working.
In the rest of this post, I'll describe the steps to record and view a USB ETW log. The recording steps use the "Logman" command-line tool that comes with Windows; the viewing steps include instructions to download a log viewing tool.
Record the log
Are you ready to start the log? A shorter log is more readable, so try to narrow down the start and end of the log as much as possible around an operation you want to examine. I'll call this operation the "scenario" that you'll be tracing. Tip: You can also reduce the log size by disconnecting USB devices that aren't related to the scenario, as well as by entering the trace commands via Remote Desktop instead of on a USB keyboard.
You'll need to open an elevated command prompt: Open the start menu, type "cmd" (without the quotes), right click on cmd.exe, and select "Run as administrator".
In the command prompt window, enter these 2 commands.
Logman start Usbtrace -p Microsoft-Windows-USB-USBPORT -o usbtrace.etl -ets -nb 128 640 -bs 128 Logman update Usbtrace -p Microsoft-Windows-USB-USBHUB -ets
After each command logman should display "The command completed successfully."
Now perform the USB scenario that you want to examine.
When you're done, stop the log with this command:
The log has been saved as usbtrace.etl in the current directory (often C:\Windows\system32). We're done with the command prompt window now.
View the log
Make sure to note the path and filename of the log file you created. We'll use Netmon (Microsoft Network Monitor) to view the log. You might not guess it from the program's name, but Netmon can handle ETW traces in addition to network traffic logs. Here's how to install it with our ETW parser.
Go ahead and open an ETW log (.etl) and explore it.
In future blog posts I'll show some examples of diagnosing USB issues using USB ETW and Netmon.
Update: Here's Part 2 of this post