Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 1개 있습니다.)
(시리즈 글이 6개 있습니다.)
Linux: 26. .NET Core 응용 프로그램을 위한 메모리 덤프 방법
; https://www.sysnet.pe.kr/2/0/12078

Linux: 27. linux - lldb를 이용한 .NET Core 응용 프로그램의 메모리 덤프 분석 방법
; https://www.sysnet.pe.kr/2/0/12083

.NET Framework: 2053. 리눅스 환경의 .NET Core 3/5+ 메모리 덤프를 분석하는 방법 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/13135

.NET Framework: 2054. .NET Core/5+ SDK 설치 없이 dotnet-dump 사용하는 방법
; https://www.sysnet.pe.kr/2/0/13136

.NET Framework: 2055. 리눅스 환경의 .NET Core 3/5+ 메모리 덤프로부터 닷넷 모듈을 추출하는 방법
; https://www.sysnet.pe.kr/2/0/13137

.NET Framework: 2057. 리눅스 환경의 .NET Core 3/5+ 메모리 덤프로부터 모든 닷넷 모듈을 추출하는 방법
; https://www.sysnet.pe.kr/2/0/13139




리눅스 환경의 .NET Core 3/5+ 메모리 덤프를 분석하는 방법 - 두 번째 이야기

예전에 lldb를 이용해 libsos.sos/libsosplugin.so 파일을 직접 로드하는 방법을 소개했습니다.

linux - lldb를 이용한 .NET Core 응용 프로그램의 메모리 덤프 분석 방법
; https://www.sysnet.pe.kr/2/0/12083

그런데, 어느 순간부터 libsos.sos/libsosplugin.so 파일이 안 보입니다. 메모리 덤프 뜨는 방법을 소개했던 (그때 당시에는 실패했었지만) "dotnet-dump"로,

.NET Core 응용 프로그램을 위한 메모리 덤프 방법
; https://www.sysnet.pe.kr/2/0/12078

기능을 통합시켜 버린 듯합니다. 실제로 간단하게 실습해 볼까요? ^^ 우선, dotnet-dump를 설치하고,

// mcr.microsoft.com/dotnet/sdk:3.1 docker 환경에서 설치

# dotnet tool install -g dotnet-dump
Tools directory '/root/.dotnet/tools' is not currently on the PATH environment variable.
If you are using bash, you can add it to your profile by running the following command:

cat << \EOF >> ~/.bash_profile
# Add .NET Core SDK tools
export PATH="$PATH:/root/.dotnet/tools"
EOF

You can add it to the current session by running the following command:

export PATH="$PATH:/root/.dotnet/tools"

You can invoke the tool using the following command: dotnet-dump
Tool 'dotnet-dump' (version '6.0.328102') was successfully installed.

(참고로, dotnet-dump는 .NET 런타임이 아닌 SDK가 설치되어 있어야 합니다.)

이후, 현재 머신에 실행 중인 닷넷 프로세스를 열거하고,

# /root/.dotnet/tools/dotnet-dump ps
 1  dotnet  /usr/share/dotnet/dotnet  dotnet razor31_sample.dll 

덤프를 뜬 후,

# /root/.dotnet/tools/dotnet-dump collect --process-id 1

Writing full to /app/core_20221005_221655
Complete

곧장 sos가 로드된 환경의 분석 모드로 들어갈 수 있습니다.

# /root/.dotnet/tools/dotnet-dump analyze /app/core_20221005_221655 
Loading core dump: /app/core_20221005_221655 ...
Ready to process analysis commands. Type 'help' to list available commands or 'help [command]' to get detailed help on a command.
Type 'quit' or 'exit' to exit the session.
>                             

그럼, 저 명령 프롬프트에서 기존의 sos 확장에서 제공하던 명령어들을 입력해 분석할 수 있습니다.

> lm
00007FE692740000 00A1E000 /usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.16/System.Private.CoreLib.dll
00007FE6932C0000 0005C000 /usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.16/System.Console.dll
...[생략]...
00007FE7088AB000 00335000 /usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.16/libclrjit.so
00007FE70C235000 0000A000 /lib/x86_64-linux-gnu/librt-2.31.so
00007FE70C23F000 006F8000 /usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.16/libcoreclr.so
00007FE70C977000 0005F000 /usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.16/libhostpolicy.so
00007FE70C9D6000 00068000 /usr/share/dotnet/host/fxr/6.0.16/libhostfxr.so
00007FE70CA43000 001D1000 /lib/x86_64-linux-gnu/libc-2.31.so
00007FE70CC18000 0001A000 /lib/x86_64-linux-gnu/libgcc_s.so.1
00007FE70CC32000 00144000 /lib/x86_64-linux-gnu/libm-2.31.so
00007FE70CD76000 001CA000 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28
00007FE70CF43000 00006000 /lib/x86_64-linux-gnu/libdl-2.31.so
00007FE70CF49000 0001E000 /lib/x86_64-linux-gnu/libpthread-2.31.so
00007FE70CF6E000 00008000 /test/bin/Debug/net6.0/test.dll
Total image size: 29505536

> clrstack                                                                                                        
OS Thread Id: 0x1 (0)
        Child SP               IP Call Site
00007FFF71CB04F0 00007f9a4c41200c [GCFrame: 00007fff71cb04f0] 
00007FFF71CB05D0 00007f9a4c41200c [HelperMethodFrame_1OBJ: 00007fff71cb05d0] System.Threading.Monitor.ObjWait(Boolean, Int32, System.Object)
00007FFF71CB0700 00007F99D30D30D9 System.Threading.Monitor.Wait(System.Object, Int32, Boolean) [/_/src/System.Private.CoreLib/src/System/Threading/Monitor.cs @ 183]
00007FFF71CB0730 00007F99D30D303F System.Threading.Monitor.Wait(System.Object, Int32) [/_/src/System.Private.CoreLib/src/System/Threading/Monitor.cs @ 193]
00007FFF71CB0750 00007F99D30D17EB System.Threading.ManualResetEventSlim.Wait(Int32, System.Threading.CancellationToken) [/_/src/System.Private.CoreLib/shared/System/Threading/ManualResetEventSlim.cs @ 609]
00007FFF71CB07E0 00007F99D30CF364 System.Threading.Tasks.Task.SpinThenBlockingWait(Int32, System.Threading.CancellationToken) [/_/src/System.Private.CoreLib/shared/System/Threading/Tasks/Task.cs @ 2922]
00007FFF71CB0840 00007F99D30CE732 System.Threading.Tasks.Task.InternalWaitCore(Int32, System.Threading.CancellationToken) [/_/src/System.Private.CoreLib/shared/System/Threading/Tasks/Task.cs @ 2861]
00007FFF71CB08F0 00007F99D30CDC45 System.Threading.Tasks.Task.InternalWait(Int32, System.Threading.CancellationToken) [/_/src/System.Private.CoreLib/shared/System/Threading/Tasks/Task.cs @ 2820]
00007FFF71CB0920 00007F99D30CDAF4 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(System.Threading.Tasks.Task) [/_/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TaskAwaiter.cs @ 143]
00007FFF71CB0950 00007F99D30CDA46 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task) [/_/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TaskAwaiter.cs @ 122]
00007FFF71CB0970 00007F99D4D48A4A System.Runtime.CompilerServices.TaskAwaiter.GetResult() [/_/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TaskAwaiter.cs @ 106]
00007FFF71CB0990 00007F99D4D455F2 Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.Run(Microsoft.Extensions.Hosting.IHost) [/_/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs @ 50]
00007FFF71CB09C0 00007F99D212C3C5 razor31_sample.Program.Main(System.String[]) [/src/razor31_sample/Program.cs @ 17]
00007FFF71CB0CD8 00007f9a4b5252df [GCFrame: 00007fff71cb0cd8] 
00007FFF71CB11C0 00007f9a4b5252df [GCFrame: 00007fff71cb11c0] 
>     

그러니까, dotnet-dump가 windbg + sos 환경을 리눅스에서 그대로 제공하고 있는 것입니다.




여기서 가장 큰 궁금한 점은, core_20221005_221655 덤프 파일을 다른 PC에서도 windbg처럼 분석할 수 있느냐 하는 것입니다. 확인을 해보면 되겠죠? ^^ 해당 파일을 다른 PC, 여기서는 WSL에 복사한 것으로 가정하겠습니다.

위에서 덤프를 뜬 응용 프로그램은 .NET Core 3.1로 만든 것이었는데, 테스트를 위해 WSL Ubuntu에는 .NET 6 SDK를 설치하겠습니다.

// Ubuntu 20.04 환경에서 .NET 6 SDK 설치

$ wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
$ sudo dpkg -i packages-microsoft-prod.deb
$ rm packages-microsoft-prod.deb

$ sudo apt-get update && sudo apt-get install -y dotnet-sdk-6.0

역시 dotnet-dump를 설치하고,

$ dotnet tool install -g dotnet-dump

Welcome to .NET 6.0!
---------------------
SDK Version: 6.0.401

Telemetry
---------
The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.

Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry

----------------
Installed an ASP.NET Core HTTPS development certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only).
Learn about HTTPS: https://aka.ms/dotnet-https
----------------
Write your first app: https://aka.ms/dotnet-hello-world
Find out what's new: https://aka.ms/dotnet-whats-new
Explore documentation: https://aka.ms/dotnet-docs
Report issues and find source on GitHub: https://github.com/dotnet/core
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
--------------------------------------------------------------------------------------
Since you just installed the .NET SDK, you will need to logout or restart your session before running the tool you installed.
You can invoke the tool using the following command: dotnet-dump
Tool 'dotnet-dump' (version '6.0.328102') was successfully installed.

분석을 시도한 결과는?

$ ~/.dotnet/tools/dotnet-dump analyze core_20221005_221655
Loading core dump: core_20221005_221655 ...
Ready to process analysis commands. Type 'help' to list available commands or 'help [command]' to get detailed help on a command.
Type 'quit' or 'exit' to exit the session.
> clrstack
OS Thread Id: 0x1 (0)
        Child SP               IP Call Site
00007FFF71CB04F0 00007f9a4c41200c [GCFrame: 00007fff71cb04f0]
00007FFF71CB05D0 00007f9a4c41200c [HelperMethodFrame_1OBJ: 00007fff71cb05d0] System.Threading.Monitor.ObjWait(Boolean, Int32, System.Object)
00007FFF71CB0700 00007F99D30D30D9 System.Threading.Monitor.Wait(System.Object, Int32, Boolean) [/_/src/System.Private.CoreLib/src/System/Threading/Monitor.cs @ 183]
00007FFF71CB0730 00007F99D30D303F System.Threading.Monitor.Wait(System.Object, Int32) [/_/src/System.Private.CoreLib/src/System/Threading/Monitor.cs @ 193]
00007FFF71CB0750 00007F99D30D17EB System.Threading.ManualResetEventSlim.Wait(Int32, System.Threading.CancellationToken) [/_/src/System.Private.CoreLib/shared/System/Threading/ManualResetEventSlim.cs @ 609]
00007FFF71CB07E0 00007F99D30CF364 System.Threading.Tasks.Task.SpinThenBlockingWait(Int32, System.Threading.CancellationToken) [/_/src/System.Private.CoreLib/shared/System/Threading/Tasks/Task.cs @ 2922]
00007FFF71CB0840 00007F99D30CE732 System.Threading.Tasks.Task.InternalWaitCore(Int32, System.Threading.CancellationToken) [/_/src/System.Private.CoreLib/shared/System/Threading/Tasks/Task.cs @ 2861]
00007FFF71CB08F0 00007F99D30CDC45 System.Threading.Tasks.Task.InternalWait(Int32, System.Threading.CancellationToken) [/_/src/System.Private.CoreLib/shared/System/Threading/Tasks/Task.cs @ 2820]
00007FFF71CB0920 00007F99D30CDAF4 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(System.Threading.Tasks.Task) [/_/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TaskAwaiter.cs @ 143]
00007FFF71CB0950 00007F99D30CDA46 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task) [/_/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TaskAwaiter.cs @ 122]
00007FFF71CB0970 00007F99D4D48A4A System.Runtime.CompilerServices.TaskAwaiter.GetResult() [/_/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/TaskAwaiter.cs @ 106]
00007FFF71CB0990 00007F99D4D455F2 Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.Run(Microsoft.Extensions.Hosting.IHost) [/_/src/libraries/Microsoft.Extensions.Hosting.Abstractions/src/HostingAbstractionsHostExtensions.cs @ 50]
00007FFF71CB09C0 00007F99D212C3C5 razor31_sample.Program.Main(System.String[])
00007FFF71CB0CD8 00007f9a4b5252df [GCFrame: 00007fff71cb0cd8]
00007FFF71CB11C0 00007f9a4b5252df [GCFrame: 00007fff71cb11c0]

보는 바와 같이 잘 clrstack 명령어 결과가 잘 나옵니다. 오~~~ 멋지지 않나요? 이전에 필요했던 그 복잡한 과정들이 하나도 필요가 없게 되었습니다. ^^




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

[연관 글]






[최초 등록일: ]
[최종 수정일: 4/29/2023]

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)
13180정성태12/2/20224942.NET Framework: 2074. C# - 스택 메모리에 대한 여유 공간 확인하는 방법파일 다운로드1
13179정성태12/2/20224365Windows: 216. Windows 11 - 22H2 업데이트 이후 Terminal 대신 cmd 창이 뜨는 경우
13178정성태12/1/20224866Windows: 215. Win32 API 금지된 함수 - IsBadXxxPtr 유의 함수들이 안전하지 않은 이유파일 다운로드1
13177정성태11/30/20225596오류 유형: 829. uwsgi 설치 시 fatal error: Python.h: No such file or directory
13176정성태11/29/20224517오류 유형: 828. gunicorn - ModuleNotFoundError: No module named 'flask'
13175정성태11/29/20226143오류 유형: 827. Python - ImportError: cannot import name 'html5lib' from 'pip._vendor'
13174정성태11/28/20224710.NET Framework: 2073. C# - VMMap처럼 스택 메모리의 reserve/guard/commit 상태 출력파일 다운로드1
13173정성태11/27/20225398.NET Framework: 2072. 닷넷 응용 프로그램의 스레드 스택 크기 변경
13172정성태11/25/20225207.NET Framework: 2071. 닷넷에서 ESP/RSP 레지스터 값을 구하는 방법파일 다운로드1
13171정성태11/25/20224822Windows: 214. 윈도우 - 스레드 스택의 "red zone"
13170정성태11/24/20225133Windows: 213. 윈도우 - 싱글 스레드는 컨텍스트 스위칭이 없을까요?
13169정성태11/23/20225713Windows: 212. 윈도우의 Protected Process (Light) 보안 [1]파일 다운로드2
13168정성태11/22/20224998제니퍼 .NET: 31. 제니퍼 닷넷 적용 사례 (9) - DB 서비스에 부하가 걸렸다?!
13167정성태11/21/20225036.NET Framework: 2070. .NET 7 - Console.ReadKey와 리눅스의 터미널 타입
13166정성태11/20/20224762개발 환경 구성: 651. Windows 사용자 경험으로 WSL 환경에 dotnet 런타임/SDK 설치 방법
13165정성태11/18/20224667개발 환경 구성: 650. Azure - "scm" 프로세스와 엮인 서비스 모음
13164정성태11/18/20225568개발 환경 구성: 649. Azure - 비주얼 스튜디오를 이용한 AppService 원격 디버그 방법
13163정성태11/17/20225518개발 환경 구성: 648. 비주얼 스튜디오에서 안드로이드 기기 인식하는 방법
13162정성태11/15/20226587.NET Framework: 2069. .NET 7 - AOT(ahead-of-time) 컴파일
13161정성태11/14/20225803.NET Framework: 2068. C# - PublishSingleFile로 배포한 이미지의 역어셈블 가능 여부 (난독화 필요성) [4]
13160정성태11/11/20225752.NET Framework: 2067. C# - PublishSingleFile 적용 시 native/managed 모듈 통합 옵션
13159정성태11/10/20228971.NET Framework: 2066. C# - PublishSingleFile과 관련된 옵션 [3]
13158정성태11/9/20225231오류 유형: 826. Workload definition 'wasm-tools' in manifest 'microsoft.net.workload.mono.toolchain' [...] conflicts with manifest 'microsoft.net.workload.mono.toolchain.net7'
13157정성태11/8/20225899.NET Framework: 2065. C# - Mutex의 비동기 버전파일 다운로드1
13156정성태11/7/20226802.NET Framework: 2064. C# - Mutex와 Semaphore/SemaphoreSlim 차이점파일 다운로드1
13155정성태11/4/20226302디버깅 기술: 183. TCP 동시 접속 (연결이 아닌) 시도를 1개로 제한한 서버
... 16  17  [18]  19  20  21  22  23  24  25  26  27  28  29  30  ...