Microsoft MVP성태의 닷넷 이야기
디버깅 기술: 82. Windows 10을 위한 Symbol(PDB) 파일 내려받는 방법 [링크 복사], [링크+제목 복사]
조회: 18833
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

Windows 10을 위한 Symbol(PDB) 파일 내려받는 방법

환경 변수를 다음과 같이 설정하고,

이름: _NT_SYMBOL_PATH
값: SRV*e:\Symbols*https://msdl.microsoft.com/download/symbols

notepad.exe 실행 후 windbg로 연결해 다음의 명령을 내리면,

0:007> .reload /f
Reloading current modules
.*** ERROR: Module load completed but symbols could not be loaded for C:\WINDOWS\system32\notepad.exe


Press ctrl-c (cdb, kd, ntsd) or ctrl-break (windbg) to abort symbol loads that take too long.
Run !sym noisy before .reload to track down problems loading symbols.

.*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\system32\FeClient.dll - 
.*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Windows\System32\efswrt.dll - 
.*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Windows\System32\IME\shared\imjkapi.dll - 
.*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Windows\System32\IME\IMEKR\imkrapi.dll - 
.*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\SYSTEM32\DUI70.dll - 
.*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Windows\System32\IME\shared\imetip.dll - 
.*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Windows\System32\IME\IMEKR\imkrtip.dll 
...[생략]...

보는 바와 같이 현재 (2016-11-01) Windows 10 (x64)에서는 아무런 PDB 파일도 다운로드되지 않습니다. 이 때문에 windbg에서 콜 스택을 확인하려고 해도 정상적으로 나오지 않습니다.

0:007> kv
 # Child-SP          RetAddr           : Args to Child                                                           : Call Site
00 00000029`f0e7fb68 00007ffb`c5cd0b5a : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : ntdll!DbgBreakPoint
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\System32\KERNEL32.DLL - 
01 00000029`f0e7fb70 00007ffb`c3e18364 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : ntdll!DbgUiRemoteBreakin+0x4a
02 00000029`f0e7fba0 00007ffb`c5c65e91 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : KERNEL32!BaseThreadInitThunk+0x14
03 00000029`f0e7fbd0 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : ntdll!RtlUserThreadStart+0x21

게다가 기본적인 운영체제 내의 구조체조차도 검색이 안됩니다.

0:007> dt _HANDLE_TABLE
*************************************************************************
***                                                                   ***
***                                                                   ***
***    Either you specified an unqualified symbol, or your debugger   ***
***    doesn't have full symbol information.  Unqualified symbol      ***
***    resolution is turned off by default. Please either specify a   ***
***    fully qualified symbol module!symbolname, or enable resolution ***
***    of unqualified symbols by typing ".symopt- 100". Note that   ***
***    enabling unqualified symbol resolution with network symbol     ***
***    server shares in the symbol path may cause the debugger to     ***
***    appear to hang for long periods of time when an incorrect      ***
***    symbol name is typed or the network symbol server is down.     ***
***                                                                   ***
***    For some commands to work properly, your symbol path           ***
***    must point to .pdb files that have full type information.      ***
***                                                                   ***
***    Certain .pdb files (such as the public OS symbols) do not      ***
***    contain the required information.  Contact the group that      ***
***    provided you with these symbols if you need this command to    ***
***    work.                                                          ***
***                                                                   ***
***    Type referenced: _HANDLE_TABLE                                 ***
***                                                                   ***
*************************************************************************
Symbol _HANDLE_TABLE not found.


웬일인지, 마이크로소프트는 윈도우 10 관련 심벌 파일들을 PDB 서버에 올려놓고 있지 않은데요. 따라서, 다음의 경로에서 직접 다운로드해 설치해야 합니다.

Download Windows Symbol Packages
; https://developer.microsoft.com/en-us/windows/hardware/download-symbols

Windows?10, version 1607 and Windows Server 2016 Symbols
; https://download.microsoft.com/download/D/1/9/D196C4F3-FC5B-48D2-A5D9-D3D42CE5F4F0/Windows_Rs1.14393.0.160715-1616.x64FRE.Symbols.msi

하지만, 위의 심벌 파일도 처음 릴리스 된 정식 버전의 것만 포함하고 있기 때문에 이후 패치가 될 때마다 업데이트 된 DLL들에 대한 PDB는 여전히 구할 수 없습니다. 실제로 위의 심벌 파일을 설치 후 notepad.exe에 대해 ".reload" 명령을 내리면 다음과 같이 3개의 PDB 파일을 구할 수 없다고 나옵니다.

0:003> .reload /f
Reloading current modules
......

Press ctrl-c (cdb, kd, ntsd) or ctrl-break (windbg) to abort symbol loads that take too long.
Run !sym noisy before .reload to track down problems loading symbols.

.*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\system32\urlmon.dll - 
..........*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\SYSTEM32\wintypes.dll - 
................................*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\System32\combase.dll - 
...

************* Symbol Loading Error Summary **************
Module name            Error
urlmon                 PDB not found : srv*e:\symbols*https://msdl.microsoft.com/download/symbols
wintypes               PDB not found : srv*e:\symbols*https://msdl.microsoft.com/download/symbols
combase                The operation timed out : srv*e:\symbols*https://msdl.microsoft.com/download/symbols

You can troubleshoot most symbol related issues by turning on symbol loading diagnostics (!sym noisy) and repeating the command that caused symbols to be loaded.
You should also verify that your symbol search path (.sympath) is correct.

아래의 글을 보면,

Where can I find the debug symbols Windows 10?
; http://stackoverflow.com/questions/31480434/where-can-i-find-the-debug-symbols-windows-10

2015년부터 저랬다는 것인데... 흠... ^^; 희망이 안 보이는군요.




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







[최초 등록일: ]
[최종 수정일: 11/1/2016]

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

비밀번호

댓글 작성자
 



2018-10-22 06시26분
[심벌마이너] 저도 심벌설치파일들이 필요한데... 어떻게 다운할수 있는 방법 없을까요?
[guest]
2018-10-22 10시17분
본문에 링크한 마이크로소프트의 문서에도 나오지만, 더 이상 offline symbol 패키지는 제공하지 않는다고 합니다. 인터넷 연결이 안 되는 곳을 위해 다음의 방법 정도만 제공하고 있다니, 공식적으로는 유일한 방법이 될 것입니다.

Using a Manifest File with SymChk
; https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/using-a-manifest-file-with-symchk
정성태

... 31  32  33  34  35  36  37  38  39  40  41  [42]  43  44  45  ...
NoWriterDateCnt.TitleFile(s)
12578정성태3/27/20219070개발 환경 구성: 560. Docker Desktop for Windows 기반의 Kubernetes 구성 (2) - WSL 2 인스턴스에 kind가 구성한 k8s 서비스 위치
12577정성태3/26/202111148개발 환경 구성: 559. Docker Desktop for Windows 기반의 Kubernetes 구성 - WSL 2 인스턴스에 kind 도구로 k8s 클러스터 구성
12576정성태3/25/20218929개발 환경 구성: 558. Docker Desktop for Windows에서 DockerDesktopVM 기반의 Kubernetes 구성 (2) - k8s 서비스 위치
12575정성태3/24/20218021개발 환경 구성: 557. Docker Desktop for Windows에서 DockerDesktopVM 기반의 Kubernetes 구성
12574정성태3/23/202111974.NET Framework: 1030. C# Socket의 Close/Shutdown 동작 (동기 모드)
12573정성태3/22/20219834개발 환경 구성: 556. WSL 인스턴스 초기 설정 명령어 [1]
12572정성태3/22/20219360.NET Framework: 1029. C# - GC 호출로 인한 메모리 압축(Compaction)을 확인하는 방법파일 다운로드1
12571정성태3/21/20218545오류 유형: 706. WSL 2 기반으로 "Enable Kubernetes" 활성화 시 초기화 실패 [1]
12570정성태3/19/202112878개발 환경 구성: 555. openssl - CA로부터 인증받은 새로운 인증서를 생성하는 방법
12569정성태3/18/202111731개발 환경 구성: 554. WSL 인스턴스 export/import 방법 및 단축 아이콘 설정 방법
12568정성태3/18/20217362오류 유형: 705. C# 빌드 - Couldn't process file ... due to its being in the Internet or Restricted zone or having the mark of the web on the file.
12567정성태3/17/20218740개발 환경 구성: 553. Docker Desktop for Windows를 위한 k8s 대시보드 활성화 [1]
12566정성태3/17/20219065개발 환경 구성: 552. Kubernetes - kube-apiserver와 REST API 통신하는 방법 (Docker Desktop for Windows 환경)
12565정성태3/17/20216559오류 유형: 704. curl.exe 실행 시 dll not found 오류
12564정성태3/16/20217042VS.NET IDE: 160. 새 프로젝트 창에 C++/CLI 프로젝트 템플릿이 없는 경우
12563정성태3/16/20218980개발 환경 구성: 551. C# - JIRA REST API 사용 정리 (3) jira-oauth-cli 도구를 이용한 키 관리
12562정성태3/15/202110108개발 환경 구성: 550. C# - JIRA REST API 사용 정리 (2) JIRA OAuth 토큰으로 API 사용하는 방법파일 다운로드1
12561정성태3/12/20218712VS.NET IDE: 159. Visual Studio에서 개행(\n, \r) 등의 제어 문자를 치환하는 방법 - 정규 표현식 사용
12560정성태3/11/202110062개발 환경 구성: 549. ssh-keygen으로 생성한 개인키/공개키 파일을 각각 PKCS8/PEM 형식으로 변환하는 방법
12559정성태3/11/20219461.NET Framework: 1028. 닷넷 5 환경의 Web API에 OpenAPI 적용을 위한 NSwag 또는 Swashbuckle 패키지 사용 [2]파일 다운로드1
12558정성태3/10/20218942Windows: 192. Power Automate Desktop (Preview) 소개 - Bitvise SSH Client 제어 [1]
12557정성태3/10/20217602Windows: 191. 탐색기의 보안 탭에 있는 "Object name" 경로에 LEFT-TO-RIGHT EMBEDDING 제어 문자가 포함되는 문제
12556정성태3/9/20216886오류 유형: 703. PowerShell ISE의 Debug / Toggle Breakpoint 메뉴가 비활성 상태인 경우
12555정성태3/8/20218912Windows: 190. C# - 레지스트리에 등록된 DigitalProductId로부터 라이선스 키(Product Key)를 알아내는 방법파일 다운로드2
12554정성태3/8/20218754.NET Framework: 1027. 닷넷 응용 프로그램을 위한 PDB 옵션 - full, pdbonly, portable, embedded
12553정성태3/5/20219215개발 환경 구성: 548. 기존 .NET Framework 프로젝트를 .NET Core/5+ 용으로 변환해 주는 upgrade-assistant, try-convert 도구 소개 [4]
... 31  32  33  34  35  36  37  38  39  40  41  [42]  43  44  45  ...