Microsoft MVP성태의 닷넷 이야기
디버깅 기술: 82. Windows 10을 위한 Symbol(PDB) 파일 내려받는 방법 [링크 복사], [링크+제목 복사]
조회: 18787
글쓴 사람
정성태 (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
정성태

... 16  17  18  19  20  21  22  23  24  25  26  27  28  29  [30]  ...
NoWriterDateCnt.TitleFile(s)
12876정성태12/14/20216782개발 환경 구성: 616. Custom Sources를 이용한 Azure Monitor Metric 만들기
12875정성태12/13/20216499스크립트: 35. python - time.sleep(...) 호출 시 hang이 걸리는 듯한 문제
12874정성태12/13/20216482오류 유형: 773. shell script 실행 시 "$'\r': command not found" 오류
12873정성태12/12/20217603오류 유형: 772. 리눅스 - PATH에 등록했는데도 "command not found"가 나온다면?
12872정성태12/12/20217400개발 환경 구성: 615. GoLang과 Python 빌드가 모두 가능한 docker 이미지 만들기
12871정성태12/12/20217515오류 유형: 771. docker: Error response from daemon: OCI runtime create failed
12870정성태12/9/20216106개발 환경 구성: 614. 파이썬 - PyPI 패키지 만들기 (4) package_data 옵션
12869정성태12/8/20218332개발 환경 구성: 613. git clone 실행 시 fingerprint 묻는 단계를 생략하는 방법
12868정성태12/7/20216906오류 유형: 770. twine 업로드 시 "HTTPError: 400 Bad Request ..." 오류 [1]
12867정성태12/7/20216586개발 환경 구성: 612. 파이썬 - PyPI 패키지 만들기 (3) entry_points 옵션
12866정성태12/7/202113961오류 유형: 769. "docker build ..." 시 "failed to solve with frontend dockerfile.v0: failed to read dockerfile ..." 오류
12865정성태12/6/20216654개발 환경 구성: 611. 파이썬 - PyPI 패키지 만들기 (2) long_description, cmdclass 옵션
12864정성태12/6/20215120Linux: 46. WSL 환경에서 find 명령을 사용해 파일을 찾는 방법
12863정성태12/4/20217035개발 환경 구성: 610. 파이썬 - PyPI 패키지 만들기
12862정성태12/3/20215775오류 유형: 768. Golang - 빌드 시 "cmd/go: unsupported GOOS/GOARCH pair linux /amd64" 오류
12861정성태12/3/20218009개발 환경 구성: 609. 파이썬 - "Windows embeddable package"로 개발 환경 구성하는 방법
12860정성태12/1/20216104오류 유형: 767. SQL Server - 127.0.0.1로 접속하는 경우 "Access is denied"가 발생한다면?
12859정성태12/1/202112286개발 환경 구성: 608. Hyper-V 가상 머신에 Console 모드로 로그인하는 방법
12858정성태11/30/20219556개발 환경 구성: 607. 로컬의 USB 장치를 원격 머신에 제공하는 방법 - usbip-win
12857정성태11/24/20217022개발 환경 구성: 606. WSL Ubuntu 20.04에서 파이썬을 위한 uwsgi 설치 방법
12856정성태11/23/20218823.NET Framework: 1121. C# - 동일한 IP:Port로 바인딩 가능한 서버 소켓 [2]
12855정성태11/13/20216179개발 환경 구성: 605. Azure App Service - Kudu SSH 환경에서 FTP를 이용한 파일 전송
12854정성태11/13/20217729개발 환경 구성: 604. Azure - 윈도우 VM에서 FTP 여는 방법
12853정성태11/10/20216094오류 유형: 766. Azure App Service - JBoss 호스팅 생성 시 "This region has quota of 0 PremiumV3 instances for your subscription. Try selecting different region or SKU."
12851정성태11/1/20217457스크립트: 34. 파이썬 - MySQLdb 기본 예제 코드
12850정성태10/27/20218600오류 유형: 765. 우분투에서 pip install mysqlclient 실행 시 "OSError: mysql_config not found" 오류
... 16  17  18  19  20  21  22  23  24  25  26  27  28  29  [30]  ...