Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 2개 있습니다.)
(시리즈 글이 3개 있습니다.)
디버깅 기술: 45. Windbg 확장 DLL 만들기 (1) - 스레드를 강제 종료시키는 명령어
; https://www.sysnet.pe.kr/2/0/1198

디버깅 기술: 46. Windbg 확장 DLL 만들기 (2) - Debugger Extension API 사용
; https://www.sysnet.pe.kr/2/0/1200

디버깅 기술: 160. Windbg 확장 DLL 만들기 (3) - C#으로 만드는 방법
; https://www.sysnet.pe.kr/2/0/12119




Windbg 확장 DLL 만들기 (1) - 스레드를 강제 종료시키는 명령어

다소 황당한 기능이긴 하지만... 가끔 '문제 해결' 차원에서가 아니라 '문제 분석' 차원에서 '편의상' 필요할 때가 있더군요.

마침, 검색을 해보니 누군가 만들어 놓기도 했고 그동안 Windbg 확장에 대해서 실습을 해본적이 없던 터라 따라해 보았습니다.

우선, Windbg 확장에 대해서는 다음의 MSDN magazine 글에서 잘 설명해 주고 있습니다.

Writing a Debugging Tools for Windows Extension
; https://docs.microsoft.com/en-us/archive/msdn-magazine/2011/march/msdn-magazine-debugger-apis-writing-a-debugging-tools-for-windows-extension

Debugger Engine API: Writing a Debugging Tools for Windows Extension, Part 2: Output
; https://docs.microsoft.com/en-us/archive/msdn-magazine/2011/may/msdn-magazine-debugger-engine-api-writing-a-debugging-tools-for-windows-extension-part-2-output

Debugger Engine API: Writing a Debugging Tools for Windows Extension, Part 3: Clients and Callbacks
; https://docs.microsoft.com/en-us/archive/msdn-magazine/2011/june/msdn-magazine-debugger-engine-api-writing-a-debugging-tools-for-windows-extension-part-3-clients-and-callbacks

그리고, 아래의 글에서 스레드를 강제 종료시키는 Windbg 확장 DLL 소스 코드가 포함되어 있습니다.

Killing a target process/thread with WinDBG 
; http://www.osronline.com/showthread.cfm?link=209257

자... 그럼 위의 소스 코드를 빌드까지 가능한 유형으로 바꿔볼까요? ^^




우선, Visual Studio에서 Win32 DLL 유형으로 비어있는 프로젝트를 하나 만듭니다.

확장 DLL의 구색을 갖추기 위해 "Writing a Debugging Tools for Windows Extension" 글에 공개된 소스 코드에 맞춰 볼텐데요. 우선, stdafx.h 파일을 프로젝트에 추가하고 다음과 같은 코드를 포함시킵니다.

#include <windows.h>
#include <dbgeng.h>

#define EXT_MAJOR_VER   1
#define EXT_MINOR_VER   0

다음으로, "dbgexts.cpp" 파일을 추가하고 확장 DLL이 기본적으로 export하는 3가지 함수를 작성합니다.

#include "stdafx.h"

extern "C" HRESULT CALLBACK DebugExtensionInitialize(PULONG Version, PULONG Flags)
{
    *Version = DEBUG_EXTENSION_VERSION(EXT_MAJOR_VER, EXT_MINOR_VER);
    *Flags = 0;  // Reserved for future use.
    return S_OK;
}

extern "C" void CALLBACK DebugExtensionNotify(ULONG Notify, ULONG64 Argument)
{
    UNREFERENCED_PARAMETER(Argument);
    switch (Notify)
    {
        case DEBUG_NOTIFY_SESSION_ACTIVE:
            ::OutputDebugString(L"DEBUG_NOTIFY_SESSION_ACTIVE");
            break;
        case DEBUG_NOTIFY_SESSION_INACTIVE:
            ::OutputDebugString(L"DEBUG_NOTIFY_SESSION_INACTIVE");
            break;
        case DEBUG_NOTIFY_SESSION_ACCESSIBLE:
            ::OutputDebugString(L"DEBUG_NOTIFY_SESSION_ACCESSIBLE");
            break;
        case DEBUG_NOTIFY_SESSION_INACCESSIBLE:
            ::OutputDebugString(L"DEBUG_NOTIFY_SESSION_INACCESSIBLE");
            break;
    }
    return;
}

extern "C" void CALLBACK DebugExtensionUninitialize(void)
{
    return;
}

당연히, 위의 3가지 함수를 export 해주는 .def파일을 작성해야겠지요. 이를 위해 Visual C++ 프로젝트 파일을 마우스 오른쪽 버튼으로 눌러 "Add" / "New Item..."을 선택하고 대화창에서 "Module-Definition File (.def)"를 선택해서 추가합니다. 내용은 다음과 같이 채워 넣고.

LIBRARY ThreadKill

EXPORTS
    DebugExtensionNotify
    DebugExtensionInitialize
    DebugExtensionUninitialize

이제 테스트 삼아서 빌드하고, "Depends.exe"로 확인한 경우 다음과 같이 3개의 함수가 정상적으로 export 되어 있어야 합니다.

windbg_extension_1.png

여기까지 확인이 되었으면 windbg 내에서 로드해서 ".chain" 명령어로 확인할 수 있고,

.load D:\...[확장 DLL 경로]...\ThreadKill.dll

.chain
Extension DLL search Path:
    C:\Program Files (x86)\...[생략]...
Extension DLL chain:
    D:\My...[확장DLL 경로]...\Debug\ThreadKill.dll: API 1.0.0, built Fri Dec 09 15:14:55 2011
        [path: D:\My\PublicTools\Sources\WinDbgExt\ThreadKill\Debug\ThreadKill.dll]
    dbghelp: image 6.12.0002.633, API 6.1.6, built Tue Feb 02 05:08:26 2010
        [path: C:\Program Files (x86)\Debugging Tools for Windows (x86)\dbghelp.dll]
    ext: image 6.12.0002.633, API 1.0.0, built Tue Feb 02 05:08:31 2010
        [path: C:\Program Files (x86)\Debugging Tools for Windows (x86)\winext\ext.dll]
    wow64exts: image 6.1.7650.0, API 1.0.0, built Tue Feb 02 05:08:04 2010
        [path: C:\Program Files (x86)\Debugging Tools for Windows (x86)\WINXP\wow64exts.dll]
    exts: image 6.12.0002.633, API 1.0.0, built Tue Feb 02 05:08:24 2010
        [path: C:\Program Files (x86)\Debugging Tools for Windows (x86)\WINXP\exts.dll]
    uext: image 6.12.0002.633, API 1.0.0, built Tue Feb 02 05:08:23 2010
        [path: C:\Program Files (x86)\Debugging Tools for Windows (x86)\winext\uext.dll]
    ntsdexts: image 6.1.7650.0, API 1.0.0, built Tue Feb 02 05:08:08 2010
        [path: C:\Program Files (x86)\Debugging Tools for Windows (x86)\WINXP\ntsdexts.dll]

또한, 다음과 같이 OutputDebugString으로 출력되는 문자열로 확인할 수 있습니다.

windbg_extension_2.png




그럼, 본격적으로 Thread 강제 종료를 해주는 확장 함수를 넣어볼까요? ^^

dbgexts.cpp 파일에 "Killing a target process/thread with WinDBG" 글에 공개된 소스 코드를 거의 그대로 넣어주면 됩니다.

#include <cstdio>

void dprintf(char *fmt, ...)
{
     wchar_t chBuf[4096];

     va_list ap;
     va_start(ap, fmt);

     vswprintf(chBuf, fmt, ap);
     va_end(ap);

     ::OutputDebugString(chBuf);
}

extern "C" HRESULT CALLBACK kt(PDEBUG_CLIENT pDebugClient, PCSTR args)
{
    ULONG64 threadId;
    HANDLE result;
    DWORD errcode =0;

    threadId = atoi(args);
    dprintf("the thread to be killed has an ID of %x\n", threadId);
    result = OpenThread(THREAD_ALL_ACCESS, FALSE, (DWORD)threadId);
    if (result == 0)
    {
        errcode = GetLastError();
        dprintf("gle = %x\n",errcode);
    }
    else
    {
        dprintf("HANDLE to thread is %x\n",result);
        if(TerminateThread(result,DBG_TERMINATE_THREAD) == 0)
        {
            dprintf("Terminate Thread Failed");
        }
        else
        {
            dprintf("issue a g then ~* and you will see a thread has been killed\n"
                    "if it was main thread the process would have gone\n"
                    "pl read msdn for all the DANGEROUS FUNCTION caveats against using TerminateThread Function\n"
                    "also read the need to define minimum platform _winnt_winxp???\n"
                    "also iirc using win32apis in debugger extensions is not recommended you need to use idebug::whatever::went::somewhere::interfaces\n"
                    "have fun terminating the process thread by thread\n");
        }
    }

    return S_OK;
}

extern "C" HRESULT CALLBACK help(PDEBUG_CLIENT pDebugClient, PCSTR args)
{
    dprintf("usage kt ThreadId Will kill The Thread");
    return S_OK;
}

잊지 말고, def 파일에 2개의 함수를 추가한 후 빌드해서 완성합니다.

LIBRARY ThreadKill

EXPORTS
    DebugExtensionNotify
    DebugExtensionInitialize
    DebugExtensionUninitialize
    kt
    help




그래도, 만들어 놨는데 잘 동작하는지 테스트는 해봐야겠지요. ^^

windbg에서 로드한 후, 예제 프로세스를 하나 attatch 시킨 다음 스레드를 확인합니다.

0:004> .load D:\...[생략]...\ThreadKill.dll

0:004> ~*
   0  Id: 24ec.2630 Suspend: 1 Teb: 7efdd000 Unfrozen
      Start: *** WARNING: Unable to verify checksum for D:\...[생략]...\bin\Debug\ConsoleApplication1.exe
ConsoleApplication1!COM+_Entry_Point <PERF> (ConsoleApplication1+0x27be) (00c627be) 
      Priority: 0  Priority class: 32  Affinity: ff
   1  Id: 24ec.2468 Suspend: 1 Teb: 7efda000 Unfrozen
      Start: *** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll - 
clr!CreateApplicationContext+0xcab9 (7261b30c) 
      Priority: 0  Priority class: 32  Affinity: ff
   2  Id: 24ec.1c28 Suspend: 1 Teb: 7efd7000 Unfrozen
      Start: clr!GetMetaDataInternalInterfaceFromPublic+0x1e505 (726fc018) 
      Priority: 2  Priority class: 32  Affinity: ff
   3  Id: 24ec.f40 Suspend: 1 Teb: 7efaf000 Unfrozen
      Start: ntdll!RtlLoadString+0x430 (77a541f3) 
      Priority: 0  Priority class: 32  Affinity: ff
.  4  Id: 24ec.27c4 Suspend: 1 Teb: 7efac000 Unfrozen
      Start: ntdll!DbgUiRemoteBreakin (77aaf7ea) 
      Priority: 0  Priority class: 32  Affinity: ff

어차피 테스트니까 별 기준없이 아무거나 스레드를 제거해 볼텐데요. 마지막인 ThreadId == 27c4인 것을 종료하기 위해 (kt 함수에서 atoi 함수를 사용했기 때문에) 10진수로는 10180이 되므로 다음과 같이 명령을 내립니다.

0:004> !kt 10180

실행되자마자 DebugView 출력 창에는 이에 대한 디버그 메시지를 볼 수 있습니다.

[6160] the thread to be killed has an ID of 27c4
[6160] HANDLE to thread is 2f4
[6160] issue a g then ~* and you will see a thread has been killed
[6160] if it was main thread the process would have gone
[6160] pl read msdn for all the DANGEROUS FUNCTION caveats against using TerminateThread Function
[6160] also read the need to define minimum platform _winnt_winxp???
[6160] also iirc using win32apis in debugger extensions is not recommended you need to use idebug::whatever::went::somewhere::interfaces
[6160] have fun terminating the process thread by thread

실제로 해당 스레드가 제거되었는지 확인하기 위해 'g' 키로 스레드 스케쥴링이 될 수 있는 여유를 준 다음,

0:004> g
(24ec.22e0): Break instruction exception - code 80000003 (first chance)
eax=7efa3000 ebx=00000000 ecx=00000000 edx=77aaf7ea esi=00000000 edi=00000000
eip=77a2000c esp=0545f934 ebp=0545f960 iopl=0         nv up ei pl zr na pe nc
cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00000246
ntdll!DbgBreakPoint:
77a2000c cc              int     3

다시 Ctrl+Break를 걸어 실행을 멈춘 후 확인하면 ThreadId == 27c4에 해당하는 스레드가 사라진 것을 확인할 수 있습니다.

0:007> ~*
   0  Id: 24ec.2630 Suspend: 1 Teb: 7efdd000 Unfrozen
      Start: ConsoleApplication1!COM+_Entry_Point <PERF> (ConsoleApplication1+0x27be) (00c627be) 
      Priority: 0  Priority class: 32  Affinity: ff
   1  Id: 24ec.2468 Suspend: 1 Teb: 7efda000 Unfrozen
      Start: clr!CreateApplicationContext+0xcab9 (7261b30c) 
      Priority: 0  Priority class: 32  Affinity: ff
   2  Id: 24ec.1c28 Suspend: 1 Teb: 7efd7000 Unfrozen
      Start: clr!GetMetaDataInternalInterfaceFromPublic+0x1e505 (726fc018) 
      Priority: 2  Priority class: 32  Affinity: ff
   3  Id: 24ec.f40 Suspend: 1 Teb: 7efaf000 Unfrozen
      Start: ntdll!RtlLoadString+0x430 (77a541f3) 
      Priority: 0  Priority class: 32  Affinity: ff
   4  Id: 24ec.1100 Suspend: 1 Teb: 7efac000 Unfrozen
      Start: ntdll!RtlDosSearchPath_Ustr+0x69a (77a56679) 
      Priority: 0  Priority class: 32  Affinity: ff
   5  Id: 24ec.30c Suspend: 1 Teb: 7efa9000 Unfrozen
      Start: ntdll!RtlDosSearchPath_Ustr+0x69a (77a56679) 
      Priority: 0  Priority class: 32  Affinity: ff
   6  Id: 24ec.968 Suspend: 1 Teb: 7efa6000 Unfrozen
      Start: ntdll!RtlDosSearchPath_Ustr+0x69a (77a56679) 
      Priority: 0  Priority class: 32  Affinity: ff
.  7  Id: 24ec.22e0 Suspend: 1 Teb: 7efa3000 Unfrozen
      Start: ntdll!DbgUiRemoteBreakin (77aaf7ea) 
      Priority: 0  Priority class: 32  Affinity: ff

성공이군요. ^^

첨부된 파일은 위의 코드를 포함한 프로젝트입니다.





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

[연관 글]






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

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

비밀번호

댓글 작성자
 



2017-05-29 12시57분
WinDbg, Debugger Objects, and JavaScript! Oh, My!
; https://www.osr.com/blog/2017/05/18/windbg-debugger-objects-javascript-oh/
정성태
2019-12-26 10시33분
정성태

... [16]  17  18  19  20  21  22  23  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13240정성태2/1/20234143디버깅 기술: 187. ASP.NET Web Application (.NET Framework) 프로젝트의 숨겨진 예외 - System.Web.HttpException
13239정성태2/1/20233826디버깅 기술: 186. C# - CacheDependency의 숨겨진 예외 - System.Web.HttpException
13238정성태1/31/20235933.NET Framework: 2092. IIS 웹 사이트를 TLS 1.2 또는 TLS 1.3 프로토콜로만 운영하는 방법
13237정성태1/30/20235609.NET Framework: 2091. C# - 웹 사이트가 어떤 버전의 TLS/SSL을 지원하는지 확인하는 방법
13236정성태1/29/20235145개발 환경 구성: 663. openssl을 이용해 인트라넷 IIS 사이트의 SSL 인증서 생성
13235정성태1/29/20234720개발 환경 구성: 662. openssl - 윈도우 환경의 명령행에서 SAN 적용하는 방법
13234정성태1/28/20235813개발 환경 구성: 661. dnSpy를 이용해 소스 코드가 없는 .NET 어셈블리의 코드를 변경하는 방법 [1]
13233정성태1/28/20237207오류 유형: 840. C# - WebClient로 https 호출 시 "The request was aborted: Could not create SSL/TLS secure channel" 예외 발생
13232정성태1/27/20234937스크립트: 43. uwsgi의 --processes와 --threads 옵션
13231정성태1/27/20233938오류 유형: 839. python - TypeError: '...' object is not callable
13230정성태1/26/20234300개발 환경 구성: 660. WSL 2 내부로부터 호스트 측의 네트워크로 UDP 데이터가 1개의 패킷으로만 제한되는 문제
13229정성태1/25/20235292.NET Framework: 2090. C# - UDP Datagram의 최대 크기
13228정성태1/24/20235394.NET Framework: 2089. C# - WMI 논리 디스크가 속한 물리 디스크의 정보를 얻는 방법 [2]파일 다운로드1
13227정성태1/23/20235083개발 환경 구성: 659. Windows - IP MTU 값을 바꿀 수 있을까요? [1]
13226정성태1/23/20234768.NET Framework: 2088. .NET 5부터 지원하는 GetRawSocketOption 사용 시 주의할 점
13225정성태1/21/20233951개발 환경 구성: 658. Windows에서 실행 중인 소켓 서버를 다른 PC 또는 WSL에서 접속할 수 없는 경우
13224정성태1/21/20234366Windows: 221. Windows - Private/Public/Domain이 아닌 네트워크 어댑터 단위로 방화벽을 on/off하는 방법
13223정성태1/20/20234544오류 유형: 838. RDP 연결 오류 - The two computers couldn't connect in the amount of time allotted
13222정성태1/20/20234251개발 환경 구성: 657. WSL - DockerDesktop.vhdx 파일 위치를 옮기는 방법
13221정성태1/19/20234448Linux: 57. C# - 리눅스 프로세스 메모리 정보파일 다운로드1
13220정성태1/19/20234535오류 유형: 837. NETSDK1045 The current .NET SDK does not support targeting .NET ...
13219정성태1/18/20234145Windows: 220. 네트워크의 인터넷 접속 가능 여부에 대한 판단 기준
13218정성태1/17/20234071VS.NET IDE: 178. Visual Studio 17.5 (Preview 2) - 포트 터널링을 이용한 웹 응용 프로그램의 외부 접근 허용
13217정성태1/13/20234670디버깅 기술: 185. windbg - 64비트 운영체제에서 작업 관리자로 뜬 32비트 프로세스의 덤프를 sos로 디버깅하는 방법
13216정성태1/12/20234928디버깅 기술: 184. windbg - 32비트 프로세스의 메모리 덤프인 경우 !peb 명령어로 나타나지 않는 환경 변수
13215정성태1/11/20236575Linux: 56. 리눅스 - /proc/pid/stat 정보를 이용해 프로세스의 CPU 사용량 구하는 방법 [1]
... [16]  17  18  19  20  21  22  23  24  25  26  27  28  29  30  ...