1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sal/config.h>
#include <memory>
#include <cstdlib>
#include <malloc.h>
#include <new.h>
#include <typeinfo>
#include <signal.h>
#include <rtl/alloc.h>
#include <rtl/strbuf.hxx>
#include <rtl/ustrbuf.hxx>
#include <sal/log.hxx>
#include <osl/mutex.hxx>
#include <com/sun/star/uno/Any.hxx>
#include <unordered_map>
#include <except.hxx>
#include <msvc/except.hxx>
#if defined(_M_IX86)
#include <msvc/x86.hxx>
#elif defined(_M_AMD64)
#include <msvc/amd64.hxx>
#elif defined(_M_ARM64)
#include <msvc/arm64.hxx>
#else
#error "Unsupported machine type"
#endif
#pragma pack(push, 8)
using namespace ::com::sun::star;
static OUString toUNOname(OUString const& rRTTIname) noexcept
{
OUStringBuffer aRet(64);
OUString aStr(rRTTIname.copy(4, rRTTIname.getLength() - 4 - 2)); // filter .?AUzzz@yyy@xxx@@
sal_Int32 nPos = aStr.getLength();
while (nPos > 0)
{
sal_Int32 n = aStr.lastIndexOf('@', nPos);
aRet.append(aStr.subView(n + 1, nPos - n - 1));
if (n >= 0)
aRet.append('.');
nPos = n;
}
return aRet.makeStringAndClear();
}
static OUString toRTTIname(OUString const& rUNOname) noexcept
{
OUStringBuffer aRet(64);
aRet.append(".?AV"); // class ".?AV"; struct ".?AU"
sal_Int32 nPos = rUNOname.getLength();
while (nPos > 0)
{
sal_Int32 n = rUNOname.lastIndexOf('.', nPos);
aRet.append(OUString::Concat(rUNOname.subView(n + 1, nPos - n - 1)) + "@");
nPos = n;
}
aRet.append('@');
return aRet.makeStringAndClear();
}
ExceptionTypeInfo::~ExceptionTypeInfo() noexcept { (void)m_data; }
ExceptionTypeInfoWrapper* RTTInfos::getInfo(OUString const& rUNOname) noexcept
{
ExceptionTypeInfoWrapper* pRTTI;
t_string2PtrMap::const_iterator const iFind(m_allRTTI.find(rUNOname));
if (iFind != m_allRTTI.end())
pRTTI = static_cast<ExceptionTypeInfoWrapper*>(iFind->second);
else
{
OString aRawName(OUStringToOString(toRTTIname(rUNOname), RTL_TEXTENCODING_ASCII_US));
// Wrap new ExceptionTypeInfo in ExceptionTypeInfoWrapper to preserve length info
pRTTI = new (std::malloc(sizeof(ExceptionTypeInfoWrapper) + aRawName.getLength()))
ExceptionTypeInfoWrapper(nullptr, aRawName.getStr());
std::pair<t_string2PtrMap::iterator, bool> insertion(
m_allRTTI.insert(t_string2PtrMap::value_type(rUNOname, pRTTI)));
assert(insertion.second && "### rtti insertion failed?!");
}
return pRTTI;
}
type_info* RTTInfos::get(OUString const& rUNOname, int* len) noexcept
{
static RTTInfos* s_pRTTIs = new RTTInfos();
static_assert(sizeof(ExceptionTypeInfo) == sizeof(std::type_info),
"### type info structure size differ!");
osl::MutexGuard aGuard(s_pRTTIs->m_aMutex);
ExceptionTypeInfoWrapper* pETIW = s_pRTTIs->getInfo(rUNOname);
if (len)
*len = pETIW->get_type_info_size();
return pETIW->get_type_info();
}
RTTInfos::RTTInfos() noexcept {}
DWORD ExceptionInfos::allocationGranularity = 0;
ExceptionInfos::ExceptionInfos() noexcept {}
ExceptionInfos::~ExceptionInfos() noexcept
{
SAL_INFO("bridges", "> freeing exception infos... <");
std::unique_lock aGuard(m_aMutex);
for (auto& rEntry : m_allRaiseInfos)
delete static_cast<RaiseInfo*>(rEntry.second);
}
RaiseInfo* ExceptionInfos::getRaiseInfo(typelib_TypeDescription* pTD) noexcept
{
static ExceptionInfos* s_pInfos = []() {
#if defined _M_AMD64 || defined _M_ARM64
SYSTEM_INFO systemInfo;
GetSystemInfo(&systemInfo);
allocationGranularity = systemInfo.dwAllocationGranularity;
#endif
return new ExceptionInfos();
}();
assert(pTD
&& (pTD->eTypeClass == typelib_TypeClass_STRUCT
|| pTD->eTypeClass == typelib_TypeClass_EXCEPTION));
RaiseInfo* pRaiseInfo;
OUString const& rTypeName = OUString::unacquired(&pTD->pTypeName);
std::unique_lock aGuard(s_pInfos->m_aMutex);
t_string2PtrMap::const_iterator const iFind(s_pInfos->m_allRaiseInfos.find(rTypeName));
if (iFind != s_pInfos->m_allRaiseInfos.end())
pRaiseInfo = static_cast<RaiseInfo*>(iFind->second);
else
{
pRaiseInfo = new RaiseInfo(pTD);
std::pair<t_string2PtrMap::iterator, bool> insertion(s_pInfos->m_allRaiseInfos.insert(
t_string2PtrMap::value_type(rTypeName, static_cast<void*>(pRaiseInfo))));
assert(insertion.second && "### raise info insertion failed?!");
}
return pRaiseInfo;
}
void msvc_raiseException(uno_Any* pUnoExc, uno_Mapping* pUno2Cpp)
{
// no ctor/dtor in here: this leads to dtors called twice upon RaiseException()!
// thus this obj file will be compiled without opt, so no inlining of
// ExceptionInfos::getRaiseInfo()
// construct cpp exception object
typelib_TypeDescription* pTD = nullptr;
TYPELIB_DANGER_GET(&pTD, pUnoExc->pType);
void* pCppExc = alloca(pTD->nSize);
::uno_copyAndConvertData(pCppExc, pUnoExc->pData, pTD, pUno2Cpp);
ULONG_PTR arFilterArgs[MSVC_EH_PARAMETERS];
arFilterArgs[0] = MSVC_EH_MAGIC_PARAM;
arFilterArgs[1] = reinterpret_cast<ULONG_PTR>(pCppExc);
arFilterArgs[2] = reinterpret_cast<ULONG_PTR>(ExceptionInfos::getRaiseInfo(pTD));
#if MSVC_EH_PARAMETERS == 4
arFilterArgs[3] = reinterpret_cast<RaiseInfo*>(arFilterArgs[2])->_codeBase;
#endif
// Destruct uno exception
::uno_any_destruct(pUnoExc, nullptr);
TYPELIB_DANGER_RELEASE(pTD);
// last point to release anything not affected by stack unwinding
RaiseException(MSVC_EH_MAGIC_CODE, EXCEPTION_NONCONTINUABLE, MSVC_EH_PARAMETERS, arFilterArgs);
std::abort();
}
// This function does the same check as __CxxDetectRethrow from msvcrt (see its
// crt/src/vcruntime/mgdframe.cpp). But it does not alter the global state, i.e. it does not
// increment __ProcessingThrow, and so does not break following exception handling. We rely on the
// definition of EHExceptionRecord, PER_IS_MSVC_EH and PER_PTHROW, that are current as of msvcrt
// 2017 (14.14.26428).
static bool DetectRethrow(void* ppExcept)
{
struct EHExceptionRecord
{
DWORD ExceptionCode;
DWORD ExceptionFlags;
struct _EXCEPTION_RECORD* ExceptionRecord;
PVOID ExceptionAddress;
DWORD NumberParameters;
#if MSVC_EH_PARAMETERS == 3
struct EHParameters
#else
struct alignas(8)
#endif
{
DWORD magicNumber;
PVOID pExceptionObject;
PVOID pThrowInfo;
#if MSVC_EH_PARAMETERS == 4
PVOID pThrowImageBase;
#endif
} params;
};
constexpr auto PER_IS_MSVC_EH = [](EHExceptionRecord* p) {
return p->ExceptionCode == MSVC_EH_MAGIC_CODE && p->NumberParameters == MSVC_EH_PARAMETERS
&& (p->params.magicNumber == MSVC_EH_MAGIC_PARAM
|| p->params.magicNumber == MSVC_EH_MAGIC_PARAM + 1
|| p->params.magicNumber == MSVC_EH_MAGIC_PARAM + 2);
};
constexpr auto PER_PTHROW = [](EHExceptionRecord* p) { return p->params.pThrowInfo; };
EHExceptionRecord* pExcept;
if (!ppExcept)
return false;
pExcept = *static_cast<EHExceptionRecord**>(ppExcept);
if (PER_IS_MSVC_EH(pExcept) && PER_PTHROW(pExcept) == nullptr)
return true;
return false;
}
int msvc_filterCppException(EXCEPTION_POINTERS* pPointers, uno_Any* pUnoExc, uno_Mapping* pCpp2Uno)
{
if (pPointers == nullptr)
return EXCEPTION_CONTINUE_SEARCH;
EXCEPTION_RECORD* pRecord = pPointers->ExceptionRecord;
// Handle only C++ exceptions:
if (pRecord == nullptr || pRecord->ExceptionCode != MSVC_EH_MAGIC_CODE)
return EXCEPTION_CONTINUE_SEARCH;
const bool rethrow = DetectRethrow(&pRecord);
assert(pRecord == pPointers->ExceptionRecord);
if (rethrow && pRecord == pPointers->ExceptionRecord)
pRecord = *reinterpret_cast<EXCEPTION_RECORD**>(__current_exception());
// Rethrow: handle only C++ exceptions:
if (pRecord == nullptr || pRecord->ExceptionCode != MSVC_EH_MAGIC_CODE)
return EXCEPTION_CONTINUE_SEARCH;
if (pRecord->NumberParameters == MSVC_EH_PARAMETERS
#if MSVC_EH_PARAMETERS == 4
&& pRecord->ExceptionInformation[0] == MSVC_EH_MAGIC_PARAM
#endif
&& pRecord->ExceptionInformation[1] != 0 && pRecord->ExceptionInformation[2] != 0
#if MSVC_EH_PARAMETERS == 4
&& pRecord->ExceptionInformation[3] != 0
#endif
)
{
// ExceptionInformation[1] is the address of the thrown object
// (or the address of a pointer to it, in most cases when it
// is a C++ class, obviously).
// [2] is the pThrowInfo pointer
RaiseInfo* pInfo = reinterpret_cast<RaiseInfo*>(pRecord->ExceptionInformation[2]);
#if MSVC_EH_PARAMETERS == 3
ULONG_PTR base = 0;
DWORD* types = reinterpret_cast<DWORD*>(pInfo->_types);
#else
// [3] is the image base address which is added the 32-bit
// rva_t fields in throwinfo to get actual 64-bit addresses
ULONG_PTR base = pRecord->ExceptionInformation[3];
DWORD* types = reinterpret_cast<DWORD*>(base + pInfo->_types);
#endif
if (types != nullptr && types[0] != 0 && types[1] != 0)
{
ExceptionType* et = reinterpret_cast<ExceptionType*>(base + types[1]);
if (et->_pTypeInfo != 0)
{
OUString aRTTIname(OStringToOUString(
reinterpret_cast<ExceptionTypeInfo*>(base + et->_pTypeInfo)->m_d_name,
RTL_TEXTENCODING_ASCII_US));
OUString aUNOname(toUNOname(aRTTIname));
typelib_TypeDescription* pExcTD = nullptr;
typelib_typedescription_getByName(&pExcTD, aUNOname.pData);
if (pExcTD == nullptr)
{
OUString sMsg = "[mscx_uno bridge error] UNO type of C++ exception unknown: \""
+ aUNOname + "\", RTTI-name=\"" + aRTTIname + "\"!";
uno::RuntimeException exc(sMsg);
uno_type_any_constructAndConvert(
pUnoExc, &exc, cppu::UnoType<decltype(exc)>::get().getTypeLibType(),
pCpp2Uno);
}
else
{
// construct uno exception any
uno_any_constructAndConvert(
pUnoExc, reinterpret_cast<void*>(pRecord->ExceptionInformation[1]), pExcTD,
pCpp2Uno);
typelib_typedescription_release(pExcTD);
}
return EXCEPTION_EXECUTE_HANDLER;
}
}
}
// though this unknown exception leaks now, no user-defined exception
// is ever thrown through the binary C-UNO dispatcher call stack.
uno::RuntimeException exc("[mscx_uno bridge error] unexpected C++ exception occurred!");
uno_type_any_constructAndConvert(
pUnoExc, &exc, cppu::UnoType<decltype(exc)>::get().getTypeLibType(), pCpp2Uno);
return EXCEPTION_EXECUTE_HANDLER;
}
#pragma pack(pop)
|