Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

Windbg - The version of SOS does not match the version of CLR you are debugging.

.NET을 호스팅하고 있는 Windows Server 2008 R2의 w3wp.exe에 대해 덤프를 뜨고 예의 ".loadby sos clr" 명령어로 SOS 확장 DLL을 로드했습니다.

그리곤 clrstack 명령어를 실행하는데 다음과 같이 오류가 발생했습니다.

0:000> !clrstack
The version of SOS does not match the version of CLR you are debugging.  Please
load the matching version of SOS for the version of CLR you are debugging.
CLR Version: 4.0.30319.296
SOS Version: 4.0.30319.18010
Failed to load data access DLL, 0x80004005
Verify that 1) you have a recent build of the debugger (6.2.14 or newer)
            2) the file mscordacwks.dll that matches your version of clr.dll is 
                in the version directory or on the symbol path
            3) or, if you are debugging a dump file, verify that the file 
                mscordacwks_<arch>_<arch>_<version>.dll is on your symbol path.
            4) you are debugging on supported cross platform architecture as 
                the dump file. For example, an ARM dump file must be debugged
                on an X86 or an ARM machine; an AMD64 dump file must be
                debugged on an AMD64 machine.

You can also run the debugger command .cordll to control the debugger's
load of mscordacwks.dll.  .cordll -ve -u -l will do a verbose reload.
If that succeeds, the SOS command should work on retry.

If you are debugging a minidump, you need to make sure that your executable
path is pointing to clr.dll as well.

덤프를 뜬 대상 컴퓨터에 설치된 CLR 버전이 windbg를 실행한 컴퓨터의 sos 버전보다 더 높았던 것입니다. 이 문제를 해결하려면 덤프를 생성했던 그 컴퓨터의 sos.dll 을 덤프를 분석하는 windbg가 실행되는 컴퓨터로 복사해 와야 합니다.

제 경우에는 .NET 4.0 64비트였기 때문에 대상 컴퓨터에서 "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\sos.dll" 파일을 로컬의 c:\temp 폴더에 복사해 왔습니다.

자, 이제 잘못 로드된 sos.dll 을 windbg에서 언로드 시키고,

0:000> .unload
Unloading C:\Windows\Microsoft.NET\Framework64\v4.0.30319\sos extension DLL

.chain 명령어로 확인해 보면 sos.dll 이 없어진 것을 볼 수 있습니다.

0:000> .chain
Extension DLL search Path:
    C:\...[생략]...
Extension DLL chain:
    dbghelp: image 6.2.9200.20512, API 6.2.6, built Fri Sep 07 14:45:49 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\dbghelp.dll]
    ext: image 6.2.9200.20522, API 1.0.0, built Fri Sep 21 17:17:05 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\winext\ext.dll]
    exts: image 6.2.9200.16384, API 1.0.0, built Thu Jul 26 11:15:20 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\WINXP\exts.dll]
    uext: image 6.2.9200.16384, API 1.0.0, built Thu Jul 26 11:15:09 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\winext\uext.dll]
    ntsdexts: image 6.2.9200.16384, API 1.0.0, built Thu Jul 26 11:16:01 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\WINXP\ntsdexts.dll]

이제 새롭게 복사해 온 sos.dll을 로드합니다.

0:000> .load c:\temp\sos.dll

0:000> .chain
Extension DLL search Path:
    C:\...[생략]...
Extension DLL chain:
    c:\temp\sos.dll: image 4.0.30319.296, API 1.0.0, built Thu Sep 06 15:07:11 2012
        [path: c:\temp\sos.dll]
    dbghelp: image 6.2.9200.20512, API 6.2.6, built Fri Sep 07 14:45:49 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\dbghelp.dll]
    ext: image 6.2.9200.20522, API 1.0.0, built Fri Sep 21 17:17:05 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\winext\ext.dll]
    exts: image 6.2.9200.16384, API 1.0.0, built Thu Jul 26 11:15:20 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\WINXP\exts.dll]
    uext: image 6.2.9200.16384, API 1.0.0, built Thu Jul 26 11:15:09 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\winext\uext.dll]
    ntsdexts: image 6.2.9200.16384, API 1.0.0, built Thu Jul 26 11:16:01 2012
        [path: C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\WINXP\ntsdexts.dll]

지금부터는 ^^ 마음껏 sos 확장 명령어를 사용하시면 됩니다.

0:000> !clrstack
...[생략]...

0:002> !threads
ThreadCount:      20
UnstartedThread:  0
BackgroundThread: 20
PendingThread:    0
DeadThread:       0
Hosted Runtime:   no
                                           PreEmptive                                                   Lock
       ID  OSID        ThreadOBJ     State GC       GC Alloc Context                  Domain           Count APT Exception
   7    1   61c 0000000002530e20      8220 Enabled  0000000000000000:0000000000000000 000000000143e080     0 Ukn
  18    2   edc 000000000253f910      b220 Enabled  0000000000000000:0000000000000000 000000000143e080     0 MTA (Finalizer)
  20    3  1880 0000000004eaf2d0   100a220 Enabled  0000000000000000:0000000000000000 000000000143e080     0 MTA (Threadpool Worker)
  21    4   b94 0000000005e45da0      1220 Enabled  0000000000000000:0000000000000000 000000000143e080     0 Ukn
  24    9   5fc 0000000006a2a890       220 Enabled  000000017fad7d50:000000017fad8880 000000000989f8c0     1 STA
  35    b   e6c 0000000005d29f60   1000220 Enabled  0000000000000000:0000000000000000 000000000143e080     0 Ukn (Threadpool Worker)
  11   10  11a8 00000000098b32e0   8008220 Enabled  0000000000000000:0000000000000000 000000000143e080     0 MTA (Threadpool Completion Port)
   2   12  132c 00000000099e3020       220 Enabled  00000000ff563ca0:00000000ff565c40 000000000143e080     0 Ukn
  37    f  1be4 00000000099e5370   200b220 Enabled  0000000000000000:0000000000000000 000000000989f8c0     0 MTA
  38   16  1138 0000000007027800   200b220 Enabled  00000001bfc4a690:00000001bfc4c1a0 000000000989f8c0     0 MTA
  25   18  187c 0000000007028620       220 Enabled  0000000000000000:0000000000000000 000000000143e080     0 STA
  39   17  1b2c 0000000007027f10   200b220 Enabled  0000000000000000:0000000000000000 000000000989f8c0     0 MTA
  40    d  15a8 00000000099e3e40   1009220 Enabled  00000000ff55de10:00000000ff55fc40 000000000143e080     0 MTA (Threadpool Worker)
  41   14  19cc 0000000007028d30   1009220 Enabled  000000013ff84678:000000013ff84690 000000000143e080     0 MTA (Threadpool Worker)
  26   11  1194 00000000099e2200       220 Enabled  0000000000000000:0000000000000000 000000000143e080     0 STA
  42   13   a50 00000000099e3730   1009220 Enabled  00000000ff565ec0:00000000ff567c40 000000000143e080     0 MTA (Threadpool Worker)
  43    5   e18 00000000070270f0   1009220 Enabled  00000000ff55fd78:00000000ff561c40 000000000143e080     0 MTA (Threadpool Worker)
  44    e  150c 0000000007029b50   200b220 Enabled  00000000ff569e68:00000000ff56bc40 000000000989f8c0     1 MTA
  46    a   a78 0000000007029440   1009220 Enabled  00000000ff567dd0:00000000ff569c40 000000000143e080     0 MTA (Threadpool Worker)
  45    c  1a7c 00000000099e2910       220 Enabled  00000000ff561d88:00000000ff563c40 000000000143e080     0 Ukn

0:002> !eestack
---------------------------------------------
Thread   7
Current frame: ntdll!ZwRemoveIoCompletion+0xa
Child-SP         RetAddr          Caller, Callee
0000000001fffaf0 000007fefdd516ad KERNELBASE!GetQueuedCompletionStatus+0x39, calling ntdll!ZwRemoveIoCompletion
...[생략]...
0000000001fffc70 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  18
Current frame: ntdll!NtWaitForMultipleObjects+0xa
Child-SP         RetAddr          Caller, Callee
00000000043af560 000007fefdd51430 KERNELBASE!WaitForMultipleObjectsEx+0xe8, calling ntdll!NtWaitForMultipleObjects
...[생략]...
00000000043afac0 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  20
Current frame: ntdll!ZwDelayExecution+0xa
Child-SP         RetAddr          Caller, Callee
00000000062ff6c0 000007fefdd51203 KERNELBASE!SleepEx+0xab, calling ntdll!ZwDelayExecution
...[생략]...
00000000062ff860 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  21
Current frame: ntdll!NtWaitForSingleObject+0xa
Child-SP         RetAddr          Caller, Callee
00000000067af9a0 000007fefdd510dc KERNELBASE!WaitForSingleObjectEx+0x79, calling ntdll!NtWaitForSingleObject
...[생략]...
00000000067afe30 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  24
Current frame: ntdll!NtWaitForSingleObject+0xa
Child-SP         RetAddr          Caller, Callee
0000000007a9b0f0 000007fefd3b1e35 mswsock!_GSHandlerCheck_SEH+0x4279, calling ntdll!NtWaitForSingleObject
...[생략]...
0000000007a9f7f0 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  35
Current frame: ntdll!ZwDelayExecution+0xa
Child-SP         RetAddr          Caller, Callee
000000000a96f880 000007fefdd51203 KERNELBASE!SleepEx+0xab, calling ntdll!ZwDelayExecution
...[생략]...
000000000a96f9c0 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  11
Current frame: ntdll!ZwRemoveIoCompletion+0xa
Child-SP         RetAddr          Caller, Callee
00000000027dfcd0 000007fefdd516ad KERNELBASE!GetQueuedCompletionStatus+0x39, calling ntdll!ZwRemoveIoCompletion
...[생략]...
00000000027dff10 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread   2
Current frame: ntdll!ZwWaitForWorkViaWorkerFactory+0xa
Child-SP         RetAddr          Caller, Callee
00000000009af500 0000000077c4fe0b ntdll!TppWorkerThread+0x2c9, calling ntdll!ZwWaitForWorkViaWorkerFactory
...[생략]...
00000000009af830 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  37
Current frame: ntdll!NtWaitForMultipleObjects+0xa
Child-SP         RetAddr          Caller, Callee
000000000a8ee260 000007fefdd51430 KERNELBASE!WaitForMultipleObjectsEx+0xe8, calling ntdll!NtWaitForMultipleObjects
...[생략]...
000000000a8efca0 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  38
Current frame: ntdll!NtWaitForMultipleObjects+0xa
Child-SP         RetAddr          Caller, Callee
000000000abee470 000007fefdd51430 KERNELBASE!WaitForMultipleObjectsEx+0xe8, calling ntdll!NtWaitForMultipleObjects
...[생략]...
000000000abefaa0 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  25
Current frame: ntdll!NtWaitForMultipleObjects+0xa
Child-SP         RetAddr          Caller, Callee
00000000084bf650 000007fefdd51430 KERNELBASE!WaitForMultipleObjectsEx+0xe8, calling ntdll!NtWaitForMultipleObjects
...[생략]...
00000000084bfaa0 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  39
Current frame: ntdll!ZwDelayExecution+0xa
Child-SP         RetAddr          Caller, Callee
000000000aecea80 000007fefdd51203 KERNELBASE!SleepEx+0xab, calling ntdll!ZwDelayExecution
...[생략]...
000000000aecfea0 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  40
Current frame: ntdll!NtWaitForSingleObject+0xa
Child-SP         RetAddr          Caller, Callee
000000000b35f080 000007fefdd510dc KERNELBASE!WaitForSingleObjectEx+0x79, calling ntdll!NtWaitForSingleObject
...[생략]...
000000000b35fbd0 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  41
Current frame: ntdll!NtWaitForSingleObject+0xa
Child-SP         RetAddr          Caller, Callee
000000000c23ec40 000007fefdd510dc KERNELBASE!WaitForSingleObjectEx+0x79, calling ntdll!NtWaitForSingleObject
...[생략]...
000000000c23fc10 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  26
Current frame: ntdll!NtWaitForMultipleObjects+0xa
Child-SP         RetAddr          Caller, Callee
0000000007c5f770 000007fefdd51430 KERNELBASE!WaitForMultipleObjectsEx+0xe8, calling ntdll!NtWaitForMultipleObjects
...[생략]...
0000000007c5fbc0 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  42
Current frame: ntdll!NtWaitForSingleObject+0xa
Child-SP         RetAddr          Caller, Callee
000000000adaec20 000007fefdd510dc KERNELBASE!WaitForSingleObjectEx+0x79, calling ntdll!NtWaitForSingleObject
...[생략]...
000000000adafe70 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  43
Current frame: ntdll!NtWaitForSingleObject+0xa
Child-SP         RetAddr          Caller, Callee
000000000a9feac0 000007fefdd510dc KERNELBASE!WaitForSingleObjectEx+0x79, calling ntdll!NtWaitForSingleObject
...[생략]...
000000000a9ffd90 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  44
Current frame: ntdll!NtWaitForMultipleObjects+0xa
Child-SP         RetAddr          Caller, Callee
000000000acadca0 000007fefdd51430 KERNELBASE!WaitForMultipleObjectsEx+0xe8, calling ntdll!NtWaitForMultipleObjects
...[생략]...
000000000acafb30 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  46
Current frame: ntdll!NtWaitForSingleObject+0xa
Child-SP         RetAddr          Caller, Callee
0000000008daf940 000007fefdd510dc KERNELBASE!WaitForSingleObjectEx+0x79, calling ntdll!NtWaitForSingleObject
...[생략]...
0000000008dafd10 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d
---------------------------------------------
Thread  45
Current frame: ntdll!ZwWaitForWorkViaWorkerFactory+0xa
Child-SP         RetAddr          Caller, Callee
000000000c0ef7d0 0000000077c4fe0b ntdll!TppWorkerThread+0x2c9, calling ntdll!ZwWaitForWorkViaWorkerFactory
000000000c0efad0 0000000077a2652d kernel32!BaseThreadInitThunk+0xd
000000000c0efb00 0000000077c5c521 ntdll!RtlUserThreadStart+0x1d




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 12/12/2012]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




1  2  3  4  5  6  7  [8]  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13433정성태11/1/20232399스크립트: 61. 파이썬 - 함수 오버로딩 미지원
13432정성태10/31/20232485오류 유형: 878. 탐색기의 WSL 디렉터리 접근 시 "Attempt to access invalid address." 오류 발생
13431정성태10/31/20232809스크립트: 60. 파이썬 - 비동기 FastAPI 앱을 gunicorn으로 호스팅
13430정성태10/30/20232698닷넷: 2153. C# - 사용자가 빌드한 ICU dll 파일을 사용하는 방법
13429정성태10/27/20232986닷넷: 2152. Win32 Interop - C/C++ DLL로부터 이중 포인터 버퍼를 C#으로 받는 예제파일 다운로드1
13428정성태10/25/20233057닷넷: 2151. C# 12 - ref readonly 매개변수
13427정성태10/18/20233252닷넷: 2150. C# 12 - 정적 문맥에서 인스턴스 멤버에 대한 nameof 접근 허용(Allow nameof to always access instance members from static context)
13426정성태10/13/20233410스크립트: 59. 파이썬 - 비동기 호출 함수(run_until_complete, run_in_executor, create_task, run_in_threadpool)
13425정성태10/11/20233198닷넷: 2149. C# - PLinq의 Partitioner<T>를 이용한 사용자 정의 분할파일 다운로드1
13423정성태10/6/20233176스크립트: 58. 파이썬 - async/await 기본 사용법
13422정성태10/5/20233322닷넷: 2148. C# - async 유무에 따른 awaitable 메서드의 병렬 및 예외 처리
13421정성태10/4/20233400닷넷: 2147. C# - 비동기 메서드의 async 예약어 유무에 따른 차이
13420정성태9/26/20235595스크립트: 57. 파이썬 - UnboundLocalError: cannot access local variable '...' where it is not associated with a value
13419정성태9/25/20233223스크립트: 56. 파이썬 - RuntimeError: dictionary changed size during iteration
13418정성태9/25/20233929닷넷: 2146. C# - ConcurrentDictionary 자료 구조의 동기화 방식
13417정성태9/19/20233460닷넷: 2145. C# - 제네릭의 형식 매개변수에 속한 (매개변수를 가진) 생성자를 호출하는 방법
13416정성태9/19/20233261오류 유형: 877. redis-py - MISCONF Redis is configured to save RDB snapshots, ...
13415정성태9/18/20233759닷넷: 2144. C# 12 - 컬렉션 식(Collection Expressions)
13414정성태9/16/20233518디버깅 기술: 193. Windbg - ThreadStatic 필드 값을 조사하는 방법
13413정성태9/14/20233714닷넷: 2143. C# - 시스템 Time Zone 변경 시 이벤트 알림을 받는 방법
13412정성태9/14/20237002닷넷: 2142. C# 12 - 인라인 배열(Inline Arrays) [1]
13411정성태9/12/20233506Windows: 252. 권한 상승 전/후 따로 관리되는 공유 네트워크 드라이브 정보
13410정성태9/11/20235035닷넷: 2141. C# 12 - Interceptor (컴파일 시에 메서드 호출 재작성) [1]
13409정성태9/8/20233891닷넷: 2140. C# - Win32 API를 이용한 모니터 전원 끄기
13408정성태9/5/20233849Windows: 251. 임의로 만든 EXE 파일을 포함한 ZIP 파일의 압축을 해제할 때 Windows Defender에 의해 삭제되는 경우
13407정성태9/4/20233591닷넷: 2139. C# - ParallelEnumerable을 이용한 IEnumerable에 대한 병렬 처리
1  2  3  4  5  6  7  [8]  9  10  11  12  13  14  15  ...