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

windbg - The call to LoadLibrary(...\sos.dll) failed, Win32 error 0n193

다음의 글에 따라,

windbg의 mscordacwks DLL 로드 문제 - 세 번째 이야기
; https://www.sysnet.pe.kr/2/0/11231

sos.dll을 로드하려는데 다음과 같은 식으로 오류가 발생합니다.

0:000> .load f:\ts\sos.dll
The call to LoadLibrary(f:\ts\sos.dll) failed, Win32 error 0n193
    "%1 is not a valid Win32 application."
Please check your debugger configuration and/or network access.

0:000> .cordll -lp f:\ts
CLRDLL: Consider using ".cordll -lp <path>" command to specify .NET runtime directory.
CLR DLL status: ERROR: Unable to load DLL f:\ts\mscordaccore_AMD64_AMD64_4.6.27414.05.dll, Win32 error 0n87

0:000> .cordll -lp f:\ts
CLRDLL: Consider using ".cordll -lp <path>" command to specify .NET runtime directory.
CLR DLL status: ERROR: Unable to load DLL f:\ts\mscordaccore_AMD64_AMD64_4.6.27414.05.dll, Win32 error 0n193

Error Lookup 도구로 보면 각각의 오류 코드는 이렇습니다.

193 == "%1 is not a valid Win32 application."
87 == "The parameter is incorrect."

경험 있으신 분들은 척 보고 ^^ x86/x64 문제인 줄 아셨을 텐데요. 이를 확인하기 위해 dumpbin.exe를 사용할 수 있습니다.

C:\temp> where dumpbin
C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.23.28105\bin\Hostx86\x86\dumpbin.exe

간단하게 다음과 같이 실행해 PE32로 나오면 x86 DLL이고,

F:\ts> dumpbin.exe "f:\ts\sos.dll" /HEADERS | findstr PE
Microsoft (R) COFF/PE Dumper Version 14.23.28106.4
PE signature found
             10B magic # (PE32)

PE32+로 나오면 x64 DLL입니다.

F:\ts>dumpbin.exe "C:\Program Files\dotnet\shared\Microsoft.NETCore.App\2.2.5\sos.dll" /HEADERS  | findstr PE
Microsoft (R) COFF/PE Dumper Version 14.23.28106.4
PE signature found
             20B magic # (PE32+)

또는, depends.exe로 열었을 때 DLL 이름만 나오면 32비트 DLL이고, DLL 이름 옆에 64가 세로로 쓰여 있으면 64비트 DLL입니다.

[x86 DLL인 경우]
x86_x64_dll_1.png

[x64 DLL인 경우]
x86_x64_dll_2.png




그러니까 이번 문제는 x64 프로세스의 메모리 덤프를 분석하기 위해 x86 sos.dll을 로드하려 했기 때문에 발생한 것이었습니다. (또는 그 반대의 경우에 발생할 수 있습니다.)




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







[최초 등록일: ]
[최종 수정일: 6/1/2021]

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

비밀번호

댓글 작성자
 




... 166  167  168  169  170  171  172  173  174  175  176  177  [178]  179  180  ...
NoWriterDateCnt.TitleFile(s)
668정성태2/21/200936157개발 환경 구성: 35. SQL Express 버전과 User Instance 옵션
667정성태2/14/200947392웹: 9. IE 7. IWebBrowser2 인터페이스 메서드의 Navigate / Navigate2 차이점 [3]파일 다운로드1
666정성태2/12/200934279웹: 8. IE 8: 프로세스와 윈도우의 관계 - LCIE [1]파일 다운로드1
665정성태2/7/200930838웹: 7. Internet Explorer 8 - XHR, XDR, XST, XSRF [1]
664정성태2/5/200926802Windows: 42. Concurrency Runtime
663정성태2/5/200931419.NET Framework: 123. WPF - Arial Narrow 폰트 문제
662정성태2/3/200926328VS.NET IDE: 59. HyperAddin 도구 사용 설명 [1]
661정성태2/3/200930416오류 유형: 68. msxml6r.dll 설치 오류
660정성태2/3/200929183Windows: 41. UAC 보안 취약 [2]
659정성태2/2/200940431오류 유형: 67. ClickOnce 응용 프로그램이 실행되지 않을 때.
658정성태2/1/200932450Team Foundation Server: 30. 소스 서버 보안
657정성태2/1/200935546Windows: 40. Q1 Ultra + Windows 7 베타
656정성태2/1/200936605디버깅 기술: 24. .NET JIT 최적화 코드 생성 제어
655정성태1/31/200933199Windows: 39. IE8 표준 모드 [4]
653정성태1/29/200928048.NET Framework: 122. XML Serializer를 이용한 값 복사: 성능은 어떨까!파일 다운로드1
652정성태1/22/200928895.NET Framework: 121. WPF - PrintTicket provider failed to bind to printer.
651정성태1/20/200926455.NET Framework: 120. 타입이 다른 배열끼리의 변환
650정성태1/19/200938424COM 개체 관련: 21. C/C++ 프로젝트에 /clr 옵션 적용으로 인한 COM 개체 사용 오류
649정성태1/18/200935875Windows: 38. Q1U UMPC에 Windows 7 베타 설치하기
648정성태1/18/200933508Windows: 37. Windows PE를 USB 메모리에 적용
647정성태1/18/200944470Windows: 36. Windows PE ISO 이미지 만들기 [1]
646정성태1/18/200937569디버깅 기술: 23. COMPLUS_ZapDisable - JIT 최적화 코드 생성 제어 [1]
645정성태1/11/200936519Windows: 35. 서명되지 않은 드라이버 로딩 방법
644정성태1/11/200927148Windows: 34. VPC 설치 후기 [2]
643정성태1/10/200932415Windows: 33. Windows 7 베타와 VMA 충돌 [1]
642정성태1/8/200930860개발 환경 구성: 34. Sysinternals의 모든 툴을 한번에 업데이트 하는 방법 [1]
... 166  167  168  169  170  171  172  173  174  175  176  177  [178]  179  180  ...