Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 2개 있습니다.)

windbg - 풀 덤프에서 .NET 스레드의 상태를 알아내는 방법

System.Threading.Thread 타입은 Suspend와 Resume 메서드를 제공해 스레드의 일시 정지/재개를 할 수 있습니다.

그렇다면 그 상태를 어떻게 풀 덤프에서 알 수 있을까요? 어렵게 생각하지 말고 ^^ 그냥 간단하게 상황을 재현해 테스트해보면 됩니다. 이를 위해 다음과 같이 CPU를 소비하는 코드를 만들어 Running 상태의 스레드를 재현하고,

while (true)
{
    for (int i = 0; i < Int32.MaxValue; i ++)
    {
        sum += i;
    }
    System.Diagnostics.Trace.WriteLine(sum.ToString());
}

실행 후 풀 덤프를 떠서 windbg로 로딩합니다.

우선, CPU를 소비한 스레드를 파악하고,

0:000> !runaway
 User Mode Time
  Thread       Time
   6:8684      0 days 0:00:15.375
   0:33cc      0 days 0:00:00.031
   5:77bc      0 days 0:00:00.015
   4:6cbc      0 days 0:00:00.000
   3:44bc      0 days 0:00:00.000
   2:5960      0 days 0:00:00.000
   1:723c      0 days 0:00:00.000

이에 대한 스레드 정보를 sos로 확인합니다.

0:000> .loadby sos clr

0:000> !threads
ThreadCount:      3
UnstartedThread:  0
BackgroundThread: 1
PendingThread:    0
DeadThread:       0
Hosted Runtime:   no
                                                                                                        Lock  
       ID OSID ThreadOBJ           State GC Mode     GC Alloc Context                  Domain           Count Apt Exception
   0    1 33cc 0000000000a24380    2a020 Preemptive  00000000029A7E18:00000000029A7FD0 0000000000a06000 1     MTA 
   5    2 77bc 0000000000a4f6d0    2b220 Preemptive  0000000000000000:0000000000000000 0000000000a06000 0     MTA (Finalizer) 
   6    3 8684 0000000000a80d10    2b020 Cooperative 00000000029D5228:00000000029D5FD0 0000000000a06000 0     MTA 

6번 스레드이고, State 값이 2b020으로 나옵니다. 따라서 !ThreadState로 조회하면 스레드의 현재 상태를 알 수 있습니다.

0:000> !ThreadState 2b020
    Legal to Join
    CLR Owns
    CoInitialized
    In Multi Threaded Apartment
    Fully initialized

딱히 Running이라는 단어는 없는데 그냥 저 상태 값이면 Running이라고 보면 됩니다.

그렇다면 Thread.Suspend 했을 때는 어떨까요? 닷넷에서 호출 후 역시 덤프를 뜨고 확인해 보면 다음과 같은 출력값이 나옵니다.

0:000> !ThreadState ab024
    User Suspend Pending
    Legal to Join
    CLR Owns
    CoInitialized
    In Multi Threaded Apartment
    Fully initialized
    Sync Suspended

또는, 다른 스레드에 의해 점유된 lock을 획득하기 위해 Monitor.Enter로 진입한 스레드의 상태는 다음과 같습니다.

0:382> !ThreadState 3009220
    Legal to Join
    Background
    CLR Owns
    In Multi Threaded Apartment
    Thread Pool Worker Thread
    Interruptible

참고로, ThreadState 값은 주소가 아닌 Enum Flags 값이기 때문에, 프로세스 실행 단위로 변하지 않으므로 2b020, ab024가 저런 상태이구나... 라고 외워도 무방합니다. 각각의 플래그 값은 다음의 소스 코드에서 찾아볼 수 있습니다.

crummel/dotnet_coreclr
; https://github.com/crummel/dotnet_coreclr/blob/master/src/ToolBox/SOS/Strike/strike.cpp

static const struct ThreadStateTable ThreadStates[] = 
{ 
    {0x1, "Thread Abort Requested"}, 
    {0x2, "GC Suspend Pending"}, 
    {0x4, "User Suspend Pending"}, 
    {0x8, "Debug Suspend Pending"}, 
    {0x10, "GC On Transitions"}, 
    {0x20, "Legal to Join"}, 
    {0x40, "Yield Requested"}, 
    {0x80, "Hijacked by the GC"}, 
    {0x100, "Blocking GC for Stack Overflow"}, 
    {0x200, "Background"}, 
    {0x400, "Unstarted"}, 
    {0x800, "Dead"}, 
    {0x1000, "CLR Owns"}, 
    {0x2000, "CoInitialized"}, 
    {0x4000, "In Single Threaded Apartment"}, 
    {0x8000, "In Multi Threaded Apartment"}, 
    {0x10000, "Reported Dead"}, 
    {0x20000, "Fully initialized"}, 
    {0x40000, "Task Reset"}, 
    {0x80000, "Sync Suspended"}, 
    {0x100000, "Debug Will Sync"}, 
    {0x200000, "Stack Crawl Needed"}, 
    {0x400000, "Suspend Unstarted"}, 
    {0x800000, "Aborted"}, 
    {0x1000000, "Thread Pool Worker Thread"}, 
    {0x2000000, "Interruptible"}, 
    {0x4000000, "Interrupted"}, 
    {0x8000000, "Completion Port Thread"}, 
    {0x10000000, "Abort Initiated"}, 
    {0x20000000, "Finalized"}, 
    {0x40000000, "Failed to Start"}, 
    {0x80000000, "Detached"}, 
}; 




그런데, 혹시 System.Threading.Thread의 ThreadState 값은 어떨까요?

ThreadState Enumeration
; https://docs.microsoft.com/en-us/dotnet/api/system.threading.threadstate

[ComVisible(true)]
[Flags]
public enum ThreadState
{
    Running = 0,
    StopRequested = 1,
    SuspendRequested = 2,
    Background = 4,
    Unstarted = 8,
    Stopped = 16,
    WaitSleepJoin = 32,
    Suspended = 64,
    AbortRequested = 128,
    Aborted = 256
}

값이 다른 걸로 봐서는 아마도 windbg의 ThreadState와는 다른 기준을 갖는 듯합니다.

이를 알기 위해서는 결국 해당 스레드를 실행하고 있는 System.Threading.Thread 객체를 알아내야 합니다. 현재, 이에 대한 직접적인 방법은 없지만 !dumpheap을 통해 찾아들어갈 여지는 있습니다.

WinDbg/SOS: How to correlate managed threads from !threads command with System.Threading.Thread instances
; https://stackoverflow.com/questions/4616584/windbg-sos-how-to-correlate-managed-threads-from-threads-command-with-system-t

0:006> !dumpheap -type System.Threading.Thread
         Address               MT     Size
00000000029a12c8 00007fff2f296eb8      160     
00000000029a1368 00007fff2f296eb8      160     
00000000029a3f00 00007fff2f2a2b20       64     
00000000029a3f40 00007fff2f297d18       96     
00000000029a3fa0 00007fff2f285618       40     
00000000029a4008 00007fff2f2a2b20       64     
00000000029a4048 00007fff2f297d18       96     

Statistics:
              MT    Count    TotalSize Class Name
00007fff2f285618        1           40 System.Threading.ThreadHelper
00007fff2f2a2b20        2          128 System.Threading.ThreadStart
00007fff2f297d18        2          192 System.Threading.Thread
00007fff2f296eb8        2          320 System.Threading.ThreadAbortException
Total 7 objects

이 중에서 Address의 값으로 덤프를 해 보면,

0:006> !DumpObj /d 00000000029a3f40
Name:        System.Threading.Thread
MethodTable: 00007fff2f297d18
EEClass:     00007fff2ec5ace0
Size:        96(0x60) bytes
File:        C:\WINDOWS\Microsoft.Net\assembly\GAC_64\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll
Fields:
              MT    Field   Offset                 Type VT     Attr            Value Name
00007fff2f22c378  40018ef        8 ....Contexts.Context  0 instance 00000000029d2ae0 m_Context
00007fff2f2aec38  40018f0       10 ....ExecutionContext  0 instance 0000000000000000 m_ExecutionContext
00007fff2f296938  40018f1       18        System.String  0 instance 00000000029a3e60 m_Name
00007fff2f298d98  40018f2       20      System.Delegate  0 instance 0000000000000000 m_Delegate
00007fff2f29b5f0  40018f3       28 ...ation.CultureInfo  0 instance 0000000000000000 m_CurrentCulture
00007fff2f29b5f0  40018f4       30 ...ation.CultureInfo  0 instance 0000000000000000 m_CurrentUICulture
00007fff2f296f18  40018f5       38        System.Object  0 instance 0000000000000000 m_ThreadStartArg
00007fff2f2afbb0  40018f6       40        System.IntPtr  1 instance           a80d10 DONT_USE_InternalThread
00007fff2f299278  40018f7       48         System.Int32  1 instance                2 m_Priority
00007fff2f299278  40018f8       4c         System.Int32  1 instance                3 m_ManagedThreadId
00007fff2f2a1f18  40018f9       50       System.Boolean  1 instance                1 m_ExecutionContextBelongsToOuterScope
00007fff2f290448  40018fa      db0 ...LocalDataStoreMgr  0   shared           static s_LocalDataStoreMgr
                                 >> Domain:Value  0000000000a06000:NotInit  <<
00007fff2fdb4570  40018fc      db8 ...eInfo, mscorlib]]  0   shared           static s_asyncLocalCurrentCulture
                                 >> Domain:Value  0000000000a06000:NotInit  <<
00007fff2fdb4570  40018fd      dc0 ...eInfo, mscorlib]]  0   shared           static s_asyncLocalCurrentUICulture
                                 >> Domain:Value  0000000000a06000:NotInit  <<
00007fff2f28f3f8  40018fb       18 ...alDataStoreHolder  0   shared         TLstatic s_LocalDataStore
    >> Thread:Value <<

m_ManagedThreadId와 DONT_USE_InternalThread(참고 1, 2, 3, 4, 5) 값을 발견할 수 있습니다. DONT_USE_InternalThread 값은 !threads 명령어로 출력된 ThreadOBJ와 값이 같습니다.

스레드가 많을 경우 일치하는 m_ManagedThreadId를 이런 식으로 하나씩 눌러가며 찾으려면 피곤해지는데요. 이를 위해 "WinDbg/SOS: How to correlate managed threads from !threads command with System.Threading.Thread instances" 글에 좋은 매크로가 소개되어 있습니다.

0:006> .foreach ($t {!dumpheap -mt 00007fff2f297d18 -short}) {  .printf " Thread Obj ${$t} and the Thread Id is %N \n",poi(${$t}+4c) }

제 경우에 출력 결과는 이렇고,

Thread Obj 00000000029a3f40 and the Thread Id is 0000000100000003 
Thread Obj 00000000029a4048 and the Thread Id is 0000000000000001 

따라서 1번 스레드의 System.Threading.Thread.ThreadState 값을 원한다면 다음과 같이 명령을 내리면 됩니다.

0:006> !do 00000000029a4048 
Name:        System.Threading.Thread
MethodTable: 00007fff2f297d18
EEClass:     00007fff2ec5ace0
Size:        96(0x60) bytes
File:        C:\WINDOWS\Microsoft.Net\assembly\GAC_64\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll
Fields:
              MT    Field   Offset                 Type VT     Attr            Value Name
00007fff2f22c378  40018ef        8 ....Contexts.Context  0 instance 0000000000000000 m_Context
00007fff2f2aec38  40018f0       10 ....ExecutionContext  0 instance 0000000000000000 m_ExecutionContext
00007fff2f296938  40018f1       18        System.String  0 instance 0000000000000000 m_Name
00007fff2f298d98  40018f2       20      System.Delegate  0 instance 0000000000000000 m_Delegate
00007fff2f29b5f0  40018f3       28 ...ation.CultureInfo  0 instance 0000000000000000 m_CurrentCulture
00007fff2f29b5f0  40018f4       30 ...ation.CultureInfo  0 instance 0000000000000000 m_CurrentUICulture
00007fff2f296f18  40018f5       38        System.Object  0 instance 0000000000000000 m_ThreadStartArg
00007fff2f2afbb0  40018f6       40        System.IntPtr  1 instance           a24380 DONT_USE_InternalThread
00007fff2f299278  40018f7       48         System.Int32  1 instance                2 m_Priority
00007fff2f299278  40018f8       4c         System.Int32  1 instance                1 m_ManagedThreadId
00007fff2f2a1f18  40018f9       50       System.Boolean  1 instance                0 m_ExecutionContextBelongsToOuterScope
00007fff2f290448  40018fa      db0 ...LocalDataStoreMgr  0   shared           static s_LocalDataStoreMgr
                                 >> Domain:Value  0000000000a06000:NotInit  <<
00007fff2fdb4570  40018fc      db8 ...eInfo, mscorlib]]  0   shared           static s_asyncLocalCurrentCulture
                                 >> Domain:Value  0000000000a06000:NotInit  <<
00007fff2fdb4570  40018fd      dc0 ...eInfo, mscorlib]]  0   shared           static s_asyncLocalCurrentUICulture
                                 >> Domain:Value  0000000000a06000:NotInit  <<
00007fff2f28f3f8  40018fb       18 ...alDataStoreHolder  0   shared         TLstatic s_LocalDataStore
    >> Thread:Value <<

그런데, 이상하군요. System.Threading.Thread 타입에는 ThreadState를 나타내는 필드가 없습니다. .NET Reflector 등을 통해 확인해 보면 ThreadState는 다음의 InternalCall로 연결된 것을 볼 수 있습니다.

[MethodImpl(MethodImplOptions.InternalCall), SecurityCritical]
private extern int GetThreadStateNative();

그리고, CoreCLR로부터 이 정보를 찾을 수 있습니다.

coreclr / src / vm / comsynchronizable.cpp 
; https://github.com/dotnet/coreclr/blob/master/src/vm/comsynchronizable.cpp

FCIMPL1(INT32, ThreadNative::GetThreadState, ThreadBaseObject* pThisUNSAFE) 
{ 
    FCALL_CONTRACT; 


    INT32               res = 0; 
    Thread::ThreadState state; 


    if (pThisUNSAFE==NULL) 
        FCThrowRes(kNullReferenceException, W("NullReference_This")); 


    // validate the thread.  Failure here implies that the thread was finalized 
    // and then resurrected. 
    Thread  *thread = pThisUNSAFE->GetInternal(); 


    if (!thread) 
        FCThrowEx(kThreadStateException, IDS_EE_THREAD_CANNOT_GET, NULL, NULL, NULL); 


    HELPER_METHOD_FRAME_BEGIN_RET_0(); 


    // grab a snapshot 
    state = thread->GetSnapshotState(); 


    if (state & Thread::TS_Background) 
        res |= ThreadBackground; 


    if (state & Thread::TS_Unstarted) 
        res |= ThreadUnstarted; 


    // Don't report a StopRequested if the thread has actually stopped. 
    if (state & Thread::TS_Dead) 
    { 
        if (state & Thread::TS_Aborted) 
            res |= ThreadAborted; 
        else 
            res |= ThreadStopped; 
    } 
    else 
    { 
        if (state & Thread::TS_AbortRequested) 
            res |= ThreadAbortRequested; 
    } 


    if (state & Thread::TS_Interruptible) 
        res |= ThreadWaitSleepJoin; 


    // CoreCLR does not support user-requested thread suspension 
    _ASSERTE(!(state & Thread::TS_UserSuspendPending)); 


    HELPER_METHOD_POLL(); 
    HELPER_METHOD_FRAME_END(); 


    return res; 
} 
FCIMPLEND 

즉, 내부 thread->GetSnapshotState() 함수가 반환한 enum ThreadState 형식의 state 값을 이용해 새롭게 System.Threading.Thread의 ThreadState 값을 구성해 반환해 주는 것입니다. 그리고 enum ThreadState 값은 이전에 windbg의 ThreadState로 보았던 바로 그 내용들과 일치합니다.

clrmd / src / Microsoft.Diagnostics.Runtime / ClrThread.cs 
; https://github.com/Microsoft/clrmd/blob/master/src/Microsoft.Diagnostics.Runtime/ClrThread.cs

enum ThreadState
{
    TS_Unknown                = 0x00000000,    // threads are initialized this way

    TS_StopRequested          = 0x00000001,    // process stop at next opportunity
    TS_GCSuspendPending       = 0x00000002,    // waiting to get to safe spot for GC
    TS_UserSuspendPending     = 0x00000004,    // user suspension at next opportunity
    TS_DebugSuspendPending    = 0x00000008,    // Is the debugger suspending threads?
    TS_GCOnTransitions        = 0x00000010,    // Force a GC on stub transitions (GCStress only)

    TS_LegalToJoin            = 0x00000020,    // Is it now legal to attempt a Join()
    TS_Hijacked               = 0x00000080,    // Return address has been hijacked

    TS_Background             = 0x00000200,    // Thread is a background thread
    TS_Unstarted              = 0x00000400,    // Thread has never been started
    TS_Dead                   = 0x00000800,    // Thread is dead

    TS_WeOwn                  = 0x00001000,    // Exposed object initiated this thread
    TS_CoInitialized          = 0x00002000,    // CoInitialize has been called for this thread
    TS_InSTA                  = 0x00004000,    // Thread hosts an STA
    TS_InMTA                  = 0x00008000,    // Thread is part of the MTA

    // Some bits that only have meaning for reporting the state to clients.
    TS_ReportDead             = 0x00010000,    // in WaitForOtherThreads()

    TS_SyncSuspended          = 0x00080000,    // Suspended via WaitSuspendEvent
    TS_DebugWillSync          = 0x00100000,    // Debugger will wait for this thread to sync
    TS_RedirectingEntryPoint  = 0x00200000,    // Redirecting entrypoint. Do not call managed entrypoint when set 

    TS_SuspendUnstarted       = 0x00400000,    // latch a user suspension on an unstarted thread

    TS_ThreadPoolThread       = 0x00800000,    // is this a threadpool thread?
    TS_TPWorkerThread         = 0x01000000,    // is this a threadpool worker thread? (if not, it is a threadpool completionport thread)

    TS_Interruptible          = 0x02000000,    // sitting in a Sleep(), Wait(), Join()
    TS_Interrupted            = 0x04000000,    // was awakened by an interrupt APC

    TS_AbortRequested         = 0x08000000,    // same as TS_StopRequested in order to trip the thread
    TS_AbortInitiated         = 0x10000000,    // set when abort is begun
    TS_UserStopRequested      = 0x20000000,    // set when a user stop is requested. This is different from TS_StopRequested
    TS_GuardPageGone          = 0x40000000,    // stack overflow, not yet reset.
    TS_Detached               = 0x80000000,    // Thread was detached by DllMain
}

정리해 보면 다음과 같은 규칙들로 정해집니다.

if (TS_Background) |= ThreadBackground
if (TS_Unstarted) |= ThreadUnstarted

if (TS_Dead) 
{
    if (TS_Aborted) |= ThreadAborted
    else |= ThreadStopped
}
else
{
    if (TS_AbortRequested) |= ThreadAbortRequested
}

if (TS_Interruptible) |= ThreadWaitSleepJoin




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

[연관 글]






[최초 등록일: ]
[최종 수정일: 7/13/2021]

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

비밀번호

댓글 작성자
 




... 31  32  33  34  35  36  37  38  [39]  40  41  42  43  44  45  ...
NoWriterDateCnt.TitleFile(s)
12644정성태5/14/20219122오류 유형: 719. 윈도우 - 제어판의 "프로그램 및 기능" / "Windows 기능 켜기/끄기" 오류 0x800736B3
12643정성태5/14/20218262오류 유형: 718. 서버 유형의 COM+ 사용 시 0x80080005(Server execution failed) 오류 발생
12642정성태5/14/20219177오류 유형: 717. The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine.
12641정성태5/13/20218903디버깅 기술: 179. 윈도우용 .NET Core 3 이상에서 Windbg의 sos 사용법
12640정성태5/13/202111804오류 유형: 716. RDP 연결 - Because of a protocol error (code: 0x112f), the remote session will be disconnected. [1]
12639정성태5/12/20218697오류 유형: 715. Arduino: Open Serial Monitor - The module '...\detection.node' was compiled against a different Node.js version using NODE_MODULE_VERSION
12638정성태5/12/20219598사물인터넷: 63. NodeMCU v1 ESP8266 - 펌웨어 내 파일 시스템(SPIFFS, LittleFS) 및 EEPROM 활용
12637정성태5/10/20219289사물인터넷: 62. NodeMCU v1 ESP8266 보드의 A0 핀에 다중 아날로그 센서 연결 [1]
12636정성태5/10/20219437사물인터넷: 61. NodeMCU v1 ESP8266 보드의 A0 핀 사용법 - FSR-402 아날로그 압력 센서 연동파일 다운로드1
12635정성태5/9/20218759기타: 81. OpenTabletDriver를 (관리자 권한으로 실행하지 않고도) 관리자 권한의 프로그램에서 동작하게 만드는 방법
12634정성태5/9/20217869개발 환경 구성: 572. .NET에서의 신뢰도 등급 조정 - 외부 Manifest 파일을 두는 방법파일 다운로드1
12633정성태5/7/20219322개발 환경 구성: 571. UAC - 관리자 권한 없이 UIPI 제약을 없애는 방법
12632정성태5/7/20219465기타: 80. (WACOM도 지원하는) Tablet 공통 디바이스 드라이버 - OpenTabletDriver
12631정성태5/5/20219401사물인터넷: 60. ThingSpeak 사물인터넷 플랫폼에 ESP8266 NodeMCU v1 + 조도 센서 장비 연동파일 다운로드1
12630정성태5/5/20219746사물인터넷: 59. NodeMCU v1 ESP8266 보드의 A0 핀 사용법 - CdS Cell(GL3526) 조도 센서 연동파일 다운로드1
12629정성태5/5/202111495.NET Framework: 1057. C# - CoAP 서버 및 클라이언트 제작 (UDP 소켓 통신) [1]파일 다운로드1
12628정성태5/4/20219439Linux: 39. Eclipse 원격 디버깅 - Cannot run program "gdb": Launching failed
12627정성태5/4/202110151Linux: 38. 라즈베리 파이 제로 용 프로그램 개발을 위한 Eclipse C/C++ 윈도우 환경 설정
12626정성태5/3/202110161.NET Framework: 1056. C# - Thread.Suspend 호출 시 응용 프로그램 hang 현상 (2)파일 다운로드1
12625정성태5/3/20219115오류 유형: 714. error CS5001: Program does not contain a static 'Main' method suitable for an entry point
12624정성태5/2/202112835.NET Framework: 1055. C# - struct/class가 스택/힙에 할당되는 사례 정리 [10]파일 다운로드1
12623정성태5/2/20219531.NET Framework: 1054. C# 9 최상위 문에 STAThread 사용 [1]파일 다운로드1
12622정성태5/2/20216339오류 유형: 713. XSD 파일을 포함한 프로젝트 - The type or namespace name 'TypedTableBase<>' does not exist in the namespace 'System.Data'
12621정성태5/1/20219729.NET Framework: 1053. C# - 특정 레지스트리 변경 시 알림을 받는 방법파일 다운로드1
12620정성태4/29/202111880.NET Framework: 1052. C# - 왜 구조체는 16 바이트의 크기가 적합한가? [1]파일 다운로드1
12619정성태4/28/202112378.NET Framework: 1051. C# - 구조체의 크기가 16바이트가 넘어가면 힙에 할당된다? [2]파일 다운로드1
... 31  32  33  34  35  36  37  38  [39]  40  41  42  43  44  45  ...