I can't make source code show in windbg when I pipe ntsd -d on the target through windbg -k, but it works when I debug locally.
I want to debug the very first code execution of Winlogon.exe and LSASS.exe. But to make it easy to reproduce the problem, I made up this setup:
- I use the CrashMe sample application, with source and symbols pre-built, copied to C:\CrashMe on both the target and host
- I use Windows Debugging tools for Windows (DTW) version 6.12.0002.633 everywhere.
- The target is running Windows XP SP3, the host Windows 7 ultimate.
- Every path and settings is the same on both machine : path to DTW and path to crashme.
- I always use fully qualified path (like c:\dtw\ntsd.exe).
- I run a XP in a VM, booted with
/noexecute=optin /fastdetect /debug /debugport=com1 /baudrate=115200
I am able to debug locally with this command, launched from C:\CrashMe:
windbg -g -G -srcpath C:\CrashMe -y C:\CrashMe debug\CrashMe.exe
I can launch the Windows XP virtual machine and connect to it with this command:
windbg -n -k com:pipe,port=\\.\pipe\com_1,reconnect -srcpath SRV*;C:\CrashMe -y
c:\windows\system32;c:\windows\symbols;C:\CrashMe\debug
But I need to debug a remote machine. On the target, I have these choices:
- Debug through
-serverand-remote - Breaking in a running process
- Use Image File Execution Options (IFEO).
In each of these options I can see the symbols (x crashme!* works).
I cannont use #1 (-server) or #2 (breakin.exe <pid>), because I want to debug the startup code of an authentication provider, so I need LSASS.exe start under ntsd -d. I can't let it run and attach later on.
My understanding is that I need to use IFEO. Using gflags.exe instead of modifying the registry manually, I set executable options to
c:\dtw\ntsd -d -G -lines -x -y c:\symcache;c:\windows\system32 -n -srcpath C:\CrashMe\
- I can breakin the application, but breakpoints I set are never hit.
- I can
.openany file, but I can't use the file to set breakpoint. - I can x (examine) any symbol
- I can not see the source code.
How can I see my DLL source code of a process running under ntsd -d through windbg -k?
Ctrl+Pto configure the source paths or-srcpath <path>at command line). – 0xC0000022L Mar 29 '12 at 1:58