Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일

(시리즈 글이 4개 있습니다.)
VC++: 108. DLL에 정의된 C++ template 클래스의 복사 생성자 문제
; https://www.sysnet.pe.kr/2/0/11153

VC++: 109. DLL에서 STL 객체를 인자/반환값으로 갖는 함수를 제공할 때, 그 함수를 외부에서 사용하는 경우 비정상 종료한다면?
; https://www.sysnet.pe.kr/2/0/11154

VC++: 115. Visual Studio에서 C++ DLL을 대상으로 단위 테스트할 때 비정상 종료한다면?
; https://www.sysnet.pe.kr/2/0/11173

오류 유형: 683. Visual C++ - error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MT_StaticRelease' doesn't match value 'MDd_DynamicDebug'
; https://www.sysnet.pe.kr/2/0/12418




DLL에서 STL 객체를 인자/반환값으로 갖는 함수를 제공할 때, 그 함수를 외부에서 사용하는 경우 비정상 종료한다면?

제목이 복잡하니, 이해를 돕기 위해 예제를 한번 들어볼까요? ^^

DLL에서 다음과 같은 함수를 export하고 있다고 가정해 보겠습니다.

#include <string>
using namespace std;

__declspec(dllexport) int GetLength1(wstring text);

int GetLength1(wstring text)
{
    return text.length();
}

이 함수를 EXE 또는 다른 DLL 프로젝트에서 이렇게 사용할 수 있습니다.

int main()
{
    wstring txt = L"1.0";
    GetLength1(txt);
}

그런데, 다음과 같은 오류가 발생할 수 있습니다.

Debug Assertion Failed!

Program: ...\test.exe
File: f:\dd\vctools\crt\crtw32\misc\dbgdel.cpp
Line: 52

Expression: _BLOCK_TYPE_IS_VALID(pHead->nBlockUse)

또는 메시지가 이렇게도 나옵니다.

Debug Assertion Failed!

Program: ...\test.dll
File: minkernel\crts\ucrt\src\appcrt\heap\debug_heap.cpp
Line: 980

Expression: __acrt_first_block == header

실제로 위의 문제는 콘솔 프로젝트를 Debug 모드로, DLL 프로젝트를 Release 모드로 빌드했을 때(또는 그 반대로) 재현이 가능하고, Platform Toolset을 변경하는 경우, 구 버전의 Visual Studio로 빌드한 DLL을 사용하는 경우에도 발생할 수 있습니다.

이 문제의 근본적인 원인은 이전의 글에 자세하게 설명했습니다.

DLL에 정의된 C++ template 클래스의 복사 생성자 문제
; https://www.sysnet.pe.kr/2/0/11153

즉, STL 객체(이 글의 예제에서는 wstring)가 근본적으로 template 클래스이고 내부에 new/delete 대상이 되는 멤버를 가지고 있으므로 이것을 DLL 너머로 전달했을 때 MSVCRT DLL의 불일치로 발생하는 것입니다.

(첨부 파일은 이 글의 예제 코드를 포함합니다.)




이 문제 관련해서 검색해 보니 다음과 같은 글이 나오는군요.

DLL내부에서 메모리 할당하고 DLL외부에서 메모리 해제
; http://jglee.egloos.com/1015547

해결책은 맞는데, STL 객체 내의 static data 멤버로 발생한다는 원인 분석이 살짝 아쉽군요. ^^ 참고로 위의 블로그에 소개된 마이크로소프트의 KB 자료가 재미있습니다.

How to export an instantiation of a Standard Template Library (STL) class and a class that contains a data member that is an STL object
; http://support.microsoft.com/kb/168958/

You may experience an access violation when you access an STL object through a pointer or reference in a different DLL or EXE
; http://support.microsoft.com/kb/q172396/

어지간히 많이도 문의가 왔던 것이 아닌가 싶습니다. ^^




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







[최초 등록일: ]
[최종 수정일: 3/5/2017]

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

비밀번호

댓글 작성자
 



2017-03-08 01시42분
[spowner] 요즘 C++으로 프로그래밍 하시나봐요.. ^^;
[guest]
2017-03-09 12시31분
C++:C#의 비율이 2:8 정도 됩니다. ^^

------------------

The move constructor that you have to declare, even though you don’t want anyone to actually call it
; https://devblogs.microsoft.com/oldnewthing/20230612-00/?p=108329
정성태

... 46  47  48  49  [50]  51  52  53  54  55  56  57  58  59  60  ...
NoWriterDateCnt.TitleFile(s)
12378정성태10/15/202010078.NET Framework: 954. C# - x86/x64 환경에 따라 달라지는 P/Invoke 함수의 export 이름파일 다운로드1
12377정성태10/15/202011390디버깅 기술: 172. windbg - 파일 열기 시점에 bp를 걸어 파일명 알아내는 방법(Managed/Unmanaged)
12376정성태10/15/20208135오류 유형: 669. windbg - sos의 name2ee 명령어 실행 시 "Failed to request module list." 오류
12375정성태10/15/20209493Windows: 177. 윈도우 탐색기에서 띄우는 cmd.exe 창의 디렉터리 구분 문자가 'Yen(&#0165;)' 기호로 나오는 경우 [1]
12374정성태10/14/202014090.NET Framework: 953. C# 9.0 - (6) 함수 포인터(Function pointers) [1]파일 다운로드2
12373정성태10/14/20209378.NET Framework: 952. OpCodes.Box와 관련해 IL 형식으로 직접 코딩 시 유의할 점
12372정성태10/13/202011317.NET Framework: 951. C# 9.0 - (5) 로컬 함수에 특성 지정 가능(Attributes on local functions)파일 다운로드1
12371정성태10/13/20209993개발 환경 구성: 519. Visual Studio의 Ctrl+Shift+U (Edit.MakeUppercase) 단축키가 동작하지 않는 경우
12370정성태10/13/202010851Linux: 33. Linux - nmcli를 이용한 고정 IP 설정
12369정성태10/12/202013679Windows: 176. Raymond Chen이 한글날에 밝히는 윈도우의 한글 자모 분리 현상 [3]
12368정성태10/12/20209696오류 유형: 668. VSIX 확장 빌드 - The "GetDeploymentPathFromVsixManifest" task failed unexpectedly.
12367정성태10/12/202022470오류 유형: 667. Ubuntu - Temporary failure resolving 'kr.archive.ubuntu.com' [2]
12366정성태10/12/202011523.NET Framework: 950. C# 9.0 - (4) 원시 크기 정수(Native ints) [1]파일 다운로드1
12365정성태10/12/202010477.NET Framework: 949. C# 9.0 - (3) 람다 메서드의 매개 변수 무시(Lambda discard parameters)파일 다운로드1
12364정성태10/11/202011686.NET Framework: 948. C# 9.0 - (2) localsinit 플래그 내보내기 무시(Suppress emitting localsinit flag)파일 다운로드1
12363정성태10/11/202012596.NET Framework: 947. C# 9.0 - (1) 대상으로 형식화된 new 식(Target-typed new expressions) [2]파일 다운로드1
12362정성태10/11/20209341VS.NET IDE: 151. Visual Studio 2019에 .NET 5 rc/preview 적용하는 방법
12361정성태10/11/202010949.NET Framework: 946. C# 9.0을 위한 개발 환경 구성
12360정성태10/8/20208172오류 유형: 666. The type or namespace name '...' does not exist in the namespace 'Microsoft.VisualStudio.TestTools' (are you missing an assembly reference?)
12359정성태10/7/20209695오류 유형: 665. Windows - 재부팅 후 iSCSI 연결이 끊기는 문제
12358정성태10/7/20209708오류 유형: 664. Web Deploy 설치 시 "A newer version of Microsoft Web Deploy 3.6 was found on this machine." 오류 [3]
12357정성태10/7/20207792오류 유형: 663. 이벤트 로그 - The storage optimizer couldn't complete retrim on New Volume
12356정성태10/7/202022474오류 유형: 662. ASP.NET Core와 500.19, 500.21 오류 (0x8007000d)
12355정성태10/3/20207878오류 유형: 661. Hyper-V Linux VM의 Internal 유형의 가상 Switch에 대한 IP 연결이 되지 않는 경우
12354정성태10/2/202020711오류 유형: 660. Web Deploy (msdeploy.axd) 실행 시 오류 기록 [1]
12353정성태10/2/202010512개발 환경 구성: 518. 비주얼 스튜디오에서 IIS 웹 서버로 "Web Deploy"를 이용해 배포하는 방법
... 46  47  48  49  [50]  51  52  53  54  55  56  57  58  59  60  ...