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

비밀번호

댓글 작성자
 




... [16]  17  18  19  20  21  22  23  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13236정성태1/29/20235127개발 환경 구성: 663. openssl을 이용해 인트라넷 IIS 사이트의 SSL 인증서 생성
13235정성태1/29/20234689개발 환경 구성: 662. openssl - 윈도우 환경의 명령행에서 SAN 적용하는 방법
13234정성태1/28/20235777개발 환경 구성: 661. dnSpy를 이용해 소스 코드가 없는 .NET 어셈블리의 코드를 변경하는 방법 [1]
13233정성태1/28/20237161오류 유형: 840. C# - WebClient로 https 호출 시 "The request was aborted: Could not create SSL/TLS secure channel" 예외 발생
13232정성태1/27/20234897스크립트: 43. uwsgi의 --processes와 --threads 옵션
13231정성태1/27/20233869오류 유형: 839. python - TypeError: '...' object is not callable
13230정성태1/26/20234234개발 환경 구성: 660. WSL 2 내부로부터 호스트 측의 네트워크로 UDP 데이터가 1개의 패킷으로만 제한되는 문제
13229정성태1/25/20235257.NET Framework: 2090. C# - UDP Datagram의 최대 크기
13228정성태1/24/20235348.NET Framework: 2089. C# - WMI 논리 디스크가 속한 물리 디스크의 정보를 얻는 방법 [2]파일 다운로드1
13227정성태1/23/20235026개발 환경 구성: 659. Windows - IP MTU 값을 바꿀 수 있을까요? [1]
13226정성태1/23/20234736.NET Framework: 2088. .NET 5부터 지원하는 GetRawSocketOption 사용 시 주의할 점
13225정성태1/21/20233924개발 환경 구성: 658. Windows에서 실행 중인 소켓 서버를 다른 PC 또는 WSL에서 접속할 수 없는 경우
13224정성태1/21/20234322Windows: 221. Windows - Private/Public/Domain이 아닌 네트워크 어댑터 단위로 방화벽을 on/off하는 방법
13223정성태1/20/20234511오류 유형: 838. RDP 연결 오류 - The two computers couldn't connect in the amount of time allotted
13222정성태1/20/20234206개발 환경 구성: 657. WSL - DockerDesktop.vhdx 파일 위치를 옮기는 방법
13221정성태1/19/20234394Linux: 57. C# - 리눅스 프로세스 메모리 정보파일 다운로드1
13220정성태1/19/20234498오류 유형: 837. NETSDK1045 The current .NET SDK does not support targeting .NET ...
13219정성태1/18/20234058Windows: 220. 네트워크의 인터넷 접속 가능 여부에 대한 판단 기준
13218정성태1/17/20234002VS.NET IDE: 178. Visual Studio 17.5 (Preview 2) - 포트 터널링을 이용한 웹 응용 프로그램의 외부 접근 허용
13217정성태1/13/20234615디버깅 기술: 185. windbg - 64비트 운영체제에서 작업 관리자로 뜬 32비트 프로세스의 덤프를 sos로 디버깅하는 방법
13216정성태1/12/20234854디버깅 기술: 184. windbg - 32비트 프로세스의 메모리 덤프인 경우 !peb 명령어로 나타나지 않는 환경 변수
13215정성태1/11/20236483Linux: 56. 리눅스 - /proc/pid/stat 정보를 이용해 프로세스의 CPU 사용량 구하는 방법 [1]
13214정성태1/10/20235969.NET Framework: 2087. .NET 6부터 SourceGenerator와 통합된 System.Text.Json [1]파일 다운로드1
13213정성태1/9/20235463오류 유형: 836. docker 이미지 빌드 시 "RUN apt install ..." 명령어가 실패하는 이유
13212정성태1/8/20235221기타: 85. 단정도/배정도 부동 소수점의 정밀도(Precision)에 따른 형변환 손실
13211정성태1/6/20235240웹: 42. (https가 아닌) http 다운로드를 막는 웹 브라우저
... [16]  17  18  19  20  21  22  23  24  25  26  27  28  29  30  ...