Microsoft MVP성태의 닷넷 이야기
VC++: 92. C++ 생성자를 DLL로부터 동적 로드해 객체를 생성한다면? [링크 복사], [링크+제목 복사],
조회: 16898
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일

C++ 생성자를 DLL로부터 동적 로드해 객체를 생성한다면?

다음과 같은 질문이 있군요. ^^

C++ DLL로 class를 export후 LoadLibrary로 DLL을 불러와 new로 class 객체를 생성할 수 있는 방법 없을까요
; http://lab.gamecodi.com/board/zboard.php?id=GAMECODILAB_QnA_etc&no=3843&z=

질문의 요지는 이렇습니다. C++ 클래스를 DLL에 구현해 두었는데, 이 클래스의 인스턴스를 외부 EXE/DLL에서 접근해 생성하고 싶다는 것입니다. 검색해 보면 이를 위한 방법을 다음의 글에서 찾을 수 있습니다.

Using classes exported from a DLL using LoadLibrary
; http://www.codeproject.com/Articles/9405/Using-classes-exported-from-a-DLL-using-LoadLibrar

직접 실습을 해볼까요? ^^




우선, Visual Studio에서 C++ Win32 DLL 프로젝트를 "Export symbols" 옵션을 켜서 생성한 후, 기본 포함된 CWin32Project1 클래스의 코드에 다음과 같이 테스트를 위해 필드 n과 Print 함수를 포함시켜 둡니다.

#define WIN32PROJECT1_API __declspec(dllexport)

#include <stdio.h>

class WIN32PROJECT1_API CWin32Project1 {
public:
    int n;
    CWin32Project1(void);

    void Print()
    {
        printf("%d\r\n", n);
    }
};

CWin32Project1::CWin32Project1()
{
    n = 500;
    return;
}

컴파일하고 Visual Studio 명령 프롬프트를 실행시켜 dumpbin.exe를 실행하면 생성자가 export된 심볼을 구할 수 있습니다.

C:\temp\Win32Project1\x64\Debug>dumpbin /exports Win32Project1.dll
Microsoft (R) COFF/PE Dumper Version 14.00.23026.0
Copyright (C) Microsoft Corporation.  All rights reserved.

Dump of file Win32Project1.dll

File Type: DLL

  Section contains the following exports for Win32Project1.dll

    00000000 characteristics
    55FAAD26 time date stamp Thu Sep 17 21:08:06 2015
        0.00 version
           1 ordinal base
           6 number of functions
           6 number of names

    ordinal hint RVA      name

          1    0 0001100A ??0CWin32Project1@@QEAA@XZ = @ILT+5(??0CWin32Project1@@QEAA@XZ)
          2    1 00011069 ??4CWin32Project1@@QEAAAEAV0@$$QEAV0@@Z = @ILT+100(??4CWin32Project1@@QEAAAEAV0@$$QEAV0@@Z)
          3    2 000111B8 ??4CWin32Project1@@QEAAAEAV0@AEBV0@@Z = @ILT+435(??4CWin32Project1@@QEAAAEAV0@AEBV0@@Z)
          4    3 000112B2 ?Print@CWin32Project1@@QEAAXXZ = @ILT+685(?Print@CWin32Project1@@QEAAXXZ)
          5    4 000112CB ?fnWin32Project1@@YAHXZ = @ILT+710(?fnWin32Project1@@YAHXZ)
          6    5 0001C164 ?nWin32Project1@@3HA = ?nWin32Project1@@3HA (int nWin32Project1)

  Summary

        1000 .00cfg
        1000 .data
        1000 .idata
        1000 .pdata
        3000 .rdata
        1000 .reloc
        1000 .rsrc
        8000 .text
       10000 .textbss

이 값을 이용해 LoadLibrary/GetProcAddress로 함수 포인터를 구하는 코드는 이렇습니다.

#include "stdafx.h"
#include <Windows.h>

class CWin32Project1 {
public:
    int n;
    CWin32Project1(void);
    void Print();
};

typedef void(*CTORFUNC) (void *pThis);
typedef void(*PRINTFUNC) (void *pThis);

int main()
{
    HMODULE hModule = ::LoadLibrary(L"Win32Project1.dll");
    if (hModule == NULL)
    {
        printf("NOT FOUND: Module\r\n");
        return 1;
    }


    // Why can't I GetProcAddress a function I dllexport'ed?
    // 64비트와 32비트에서의 export symbol 이름이 다르다는 점!
#if defined(_AMD64_)
    char *ctorName = "??0CWin32Project1@@QEAA@XZ";
    char *printName = "?Print@CWin32Project1@@QEAAXXZ";
#else
    char *ctorName = "??0CWin32Project1@@QAE@XZ";
    char *printName = "?Print@CWin32Project1@@QAEXXZ";
#endif

    CTORFUNC ctorProc = (CTORFUNC)::GetProcAddress(hModule, ctorName);
    PRINTFUNC printProc = (PRINTFUNC)::GetProcAddress(hModule, printName);
                                                            
    if (ctorProc == NULL || printProc == NULL)
    {
        printf("NOT FOUND: ctor or print\r\n");
        return 1;
    }

    // 해당 클래스의 객체 크기만큼 미리 메모리를 할당
    int size = sizeof(CWin32Project1);
    char *pBytes = new char[size];

    // 할당된 메모리가 바로 this 포인터 역할을 함.
    // 생성자를 호출해 인스턴스를 초기화하고,
    ctorProc(pBytes);

    // 멤버 함수를 호출
    printProc(pBytes); // 출력 결과: 500

    delete [] pBytes;

    return 0;
}

첨부한 파일은 위의 코드를 포함하고 있습니다.




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







[최초 등록일: ]
[최종 수정일: 4/1/2024]

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

비밀번호

댓글 작성자
 



2020-06-08 03시31분
[4567] 그냥 DLL 내부에서 new 로 자기자신 생성해서 리턴하고 메인에서 그 함수 포인터 가져와서 호출하면안되나요?
[guest]
2020-06-08 03시48분
@4567 음... 글의 초반에 링크한 원본 질문을 읽어보셨다면 그런 질문을 하지 않으셨을 텐데요.
정성태

... [46]  47  48  49  50  51  52  53  54  55  56  57  58  59  60  ...
NoWriterDateCnt.TitleFile(s)
12481정성태1/7/20219706.NET Framework: 1000. C# - CS8344 컴파일 에러: ref struct 타입의 사용 제한 메서드파일 다운로드1
12480정성태1/6/202112315.NET Framework: 999. C# - ArrayPool<T>와 MemoryPool<T> 소개파일 다운로드1
12479정성태1/6/20219735.NET Framework: 998. C# - OWIN 예제 프로젝트 만들기
12478정성태1/5/202111352.NET Framework: 997. C# - ArrayPool<T> 소개파일 다운로드1
12477정성태1/5/202113716기타: 79. github 코드 검색 방법 [1]
12476정성태1/5/202110393.NET Framework: 996. C# - 닷넷 코어에서 다른 스레드의 callstack을 구하는 방법파일 다운로드1
12475정성태1/5/202112996.NET Framework: 995. C# - Span<T>와 Memory<T> [1]파일 다운로드1
12474정성태1/4/202110496.NET Framework: 994. C# - (.NET Core 2.2부터 가능한) 프로세스 내부에서 CLR ETW 이벤트 수신 [1]파일 다운로드1
12473정성태1/4/20219292.NET Framework: 993. .NET 런타임에 따라 달라지는 정적 필드의 초기화 유무 [1]파일 다운로드1
12472정성태1/3/20219583디버깅 기술: 178. windbg - 디버그 시작 시 스크립트 실행
12471정성태1/1/202110050.NET Framework: 992. C# - .NET Core 3.0 이상부터 제공하는 runtimeOptions의 rollForward 옵션 [1]
12470정성태12/30/202010220.NET Framework: 991. .NET 5 응용 프로그램에서 WinRT API 호출 [1]파일 다운로드1
12469정성태12/30/202013814.NET Framework: 990. C# - SendInput Win32 API를 이용한 가상 키보드/마우스 [1]파일 다운로드1
12468정성태12/30/202010437Windows: 186. CMD Shell의 "Defaults"와 "Properties"에서 폰트 정보가 다른 문제 [1]
12467정성태12/29/202010402.NET Framework: 989. HttpContextAccessor를 통해 이해하는 AsyncLocal<T> [1]파일 다운로드1
12466정성태12/29/20208362.NET Framework: 988. C# - 지연 실행이 꼭 필요한 상황이 아니라면 singleton 패턴에서 DCLP보다는 static 초기화를 권장파일 다운로드1
12465정성태12/29/202011483.NET Framework: 987. .NET Profiler - FunctionID와 연관된 ClassID를 구할 수 없는 문제
12464정성태12/29/202010336.NET Framework: 986. pptfont.exe - PPT 파일에 숨겨진 폰트 설정을 일괄 삭제
12463정성태12/29/20209411개발 환경 구성: 520. RDP(mstsc.exe)의 다중 모니터 옵션 /multimon, /span
12462정성태12/27/202011012디버깅 기술: 177. windbg - (ASP.NET 환경에서 유용한) netext 확장
12461정성태12/21/202011856.NET Framework: 985. .NET 코드 리뷰 팁 [3]
12460정성태12/18/20209551기타: 78. 도서 소개 - C#으로 배우는 암호학
12459정성태12/16/20209952Linux: 35. C# - 리눅스 환경에서 클라이언트 소켓의 ephemeral port 재사용파일 다운로드1
12458정성태12/16/20209407오류 유형: 694. C# - Task.Start 메서드 호출 시 "System.InvalidOperationException: 'Start may not be called on a task that has completed.'" 예외 발생 [1]
12457정성태12/15/20209006Windows: 185. C# - Windows 10/2019부터 추가된 SIO_TCP_INFO파일 다운로드1
12456정성태12/15/20209279VS.NET IDE: 156. Visual Studio - "Migrate packages.config to PackageReference"
... [46]  47  48  49  50  51  52  53  54  55  56  57  58  59  60  ...