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

비밀번호

댓글 작성자
 




1  2  [3]  4  5  6  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13557정성태2/18/20241901Windows: 258. Task Scheduler의 Author 속성 값을 변경하는 방법
13556정성태2/17/20241946Windows: 257. Windows - Symbolic (hard/soft) Link 및 Junction 차이점
13555정성태2/15/20242100닷넷: 2216. C# - SemaphoreSlim 사용 시 주의점
13554정성태2/15/20241848VS.NET IDE: 189. Visual Studio - 닷넷 소스코드 디컴파일 찾기가 안 될 때
13553정성태2/14/20241931닷넷: 2215. windbg - thin/fat lock 없이 동작하는 Monitor.Wait + Pulse
13552정성태2/13/20241879닷넷: 2214. windbg - Monitor.Enter의 thin lock과 fat lock
13551정성태2/12/20242076닷넷: 2213. ASP.NET/Core 웹 응용 프로그램 - 2차 스레드의 예외로 인한 비정상 종료
13550정성태2/11/20242161Windows: 256. C# - Server socket이 닫히면 Accept 시켰던 자식 소켓이 닫힐까요?
13549정성태2/3/20242486개발 환경 구성: 706. C# - 컨테이너에서 실행하기 위한 (소켓) 콘솔 프로젝트 구성
13548정성태2/1/20242318개발 환경 구성: 705. "Docker Desktop for Windows" - ASP.NET Core 응용 프로그램의 소켓 주소 바인딩(IPv4/IPv6 loopback, Any)
13547정성태1/31/20242064개발 환경 구성: 704. Visual Studio - .NET 8 프로젝트부터 dockerfile에 추가된 "USER app" 설정
13546정성태1/30/20241921Windows: 255. (디버거의 영향 등으로) 대상 프로세스가 멈추면 Socket KeepAlive로 연결이 끊길까요?
13545정성태1/30/20241840닷넷: 2212. ASP.NET Core - 우선순위에 따른 HTTP/HTTPS 호스트:포트 바인딩 방법
13544정성태1/30/20241853오류 유형: 894. Microsoft.Data.SqlClient - Could not load file or assembly 'System.Security.Permissions, ...'
13543정성태1/30/20241849Windows: 254. Windows - 기본 사용 중인 5357 포트 비활성화는 방법
13542정성태1/30/20241883오류 유형: 893. Visual Studio - Web Application을 실행하지 못하는 IISExpress - 두 번째 이야기
13541정성태1/29/20241928VS.NET IDE: 188. launchSettings.json의 useSSL 옵션
13540정성태1/29/20242057Linux: 69. 리눅스 - "Docker Desktop for Windows" Container 환경에서 IPv6 Loopback Address 바인딩 오류
13539정성태1/26/20242154개발 환경 구성: 703. Visual Studio - launchSettings.json을 이용한 HTTP/HTTPS 포트 바인딩
13538정성태1/25/20242235닷넷: 2211. C# - NonGC(FOH) 영역에 .NET 개체를 생성파일 다운로드1
13537정성태1/24/20242293닷넷: 2210. C# - Native 메모리에 .NET 개체를 생성파일 다운로드1
13536정성태1/23/20242457닷넷: 2209. .NET 8 - NonGC Heap / FOH (Frozen Object Heap) [1]
13535정성태1/22/20242270닷넷: 2208. C# - GCHandle 구조체의 메모리 분석
13534정성태1/21/20242087닷넷: 2207. C# - SQL Server DB를 bacpac으로 Export/Import파일 다운로드1
13533정성태1/18/20242287닷넷: 2206. C# - TCP KeepAlive의 서버 측 구현파일 다운로드1
13532정성태1/17/20242188닷넷: 2205. C# - SuperSimpleTcp 사용 시 주의할 점파일 다운로드1
1  2  [3]  4  5  6  7  8  9  10  11  12  13  14  15  ...