-
Notifications
You must be signed in to change notification settings - Fork 15.7k
[libc++] Fix the behavior of throwing operator new under -fno-exceptions
#69498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 9 commits
6f89b11
1b5144f
0f2b77f
82d3e73
3980914
e9863c3
f05c8a3
12e3239
170c592
14fe81e
cf6209a
64b2e5c
f416bf0
d1a0648
609ba8d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,119 @@ | ||
| // -*- C++ -*- | ||
| //===----------------------------------------------------------------------===// | ||
| // | ||
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
| // See https://llvm.org/LICENSE.txt for license information. | ||
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
| // | ||
| //===----------------------------------------------------------------------===// | ||
|
|
||
| #ifndef _LIBCPP___OVERRIDABLE_FUNCTION | ||
| #define _LIBCPP___OVERRIDABLE_FUNCTION | ||
|
|
||
| #include <__config> | ||
| #include <cstdint> | ||
|
|
||
| #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | ||
| # pragma GCC system_header | ||
| #endif | ||
|
|
||
| // | ||
| // This file provides the std::__is_function_overridden utility, which allows checking | ||
| // whether an overridable function (typically a weak symbol) like `operator new` | ||
| // has been overridden by a user or not. | ||
| // | ||
| // This is a low-level utility which does not work on all platforms, since it needs | ||
| // to make assumptions about the object file format in use. Furthermore, it requires | ||
| // the "base definition" of the function (the one we want to check whether it has been | ||
| // overridden) to be annotated with the _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE macro. | ||
| // | ||
| // This currently works with Mach-O files (used on Darwin) and with ELF files (used on Linux | ||
| // and others). On platforms where we know how to implement this detection, the macro | ||
| // _LIBCPP_CAN_DETECT_OVERRIDDEN_FUNCTION is defined to 1, and it is defined to 0 on | ||
| // other platforms. The _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE macro is defined to | ||
| // nothing on unsupported platforms so that it can be used to decorate functions regardless | ||
| // of whether detection is actually supported. | ||
| // | ||
| // How does this work? | ||
| // ------------------- | ||
| // | ||
| // Let's say we want to check whether a weak function `f` has been overridden by the user. | ||
| // The general mechanism works by placing `f`'s definition (in the libc++ built library) | ||
| // inside a special section, which we do using the `__section__` attribute via the | ||
| // _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE macro. | ||
| // | ||
| // Then, when comes the time to check whether the function has been overridden, we take | ||
| // the address of the function and we check whether it falls inside the special function | ||
| // we created. This can be done by finding pointers to the start and the end of the section | ||
| // (which is done differently for ELF and Mach-O), and then checking whether `f` falls | ||
| // within those bounds. If it falls within those bounds, then `f` is still inside the | ||
| // special section and so it is the version we defined in the libc++ built library, i.e. | ||
| // it was not overridden. Otherwise, it was overridden by the user because it falls | ||
| // outside of the section. | ||
| // | ||
| // Important note | ||
| // -------------- | ||
| // | ||
| // This mechanism should never be used outside of the libc++ built library. In particular, | ||
| // attempting to use this within the libc++ headers will not work at all because we don't | ||
| // want to be defining special sections inside user's executables which use our headers. | ||
| // This is provided inside libc++'s include tree solely to make it easier to share with | ||
| // libc++abi, which needs the same mechanism. | ||
| // | ||
|
|
||
| #if defined(_LIBCPP_OBJECT_FORMAT_MACHO) | ||
|
|
||
| # define _LIBCPP_CAN_DETECT_OVERRIDDEN_FUNCTION 1 | ||
| # define _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE \ | ||
| __attribute__((__section__("__TEXT,__lcxx_override,regular,pure_instructions"))) | ||
|
|
||
| _LIBCPP_BEGIN_NAMESPACE_STD | ||
| template <class _Ret, class... _Args> | ||
| _LIBCPP_HIDE_FROM_ABI bool __is_function_overridden(_Ret (*__fptr)(_Args...)) noexcept { | ||
| // Declare two dummy bytes and give them these special `__asm` values. These values are | ||
| // defined by the linker, which means that referring to `&__lcxx_override_start` will | ||
| // effectively refer to the address where the section starts (and same for the end). | ||
| extern char __lcxx_override_start __asm("section$start$__TEXT$__lcxx_override"); | ||
| extern char __lcxx_override_end __asm("section$end$__TEXT$__lcxx_override"); | ||
|
|
||
| // Now get a uintptr_t out of these locations, and out of the function pointer. | ||
| uintptr_t __start = reinterpret_cast<uintptr_t>(&__lcxx_override_start); | ||
| uintptr_t __end = reinterpret_cast<uintptr_t>(&__lcxx_override_end); | ||
| uintptr_t __ptr = reinterpret_cast<uintptr_t>(__fptr); | ||
|
|
||
| // Finally, the function was overridden if it falls outside of the section's bounds. | ||
| return __ptr < __start || __ptr > __end; | ||
| } | ||
| _LIBCPP_END_NAMESPACE_STD | ||
|
|
||
| #elif defined(_LIBCPP_OBJECT_FORMAT_ELF) | ||
|
|
||
| # define _LIBCPP_CAN_DETECT_OVERRIDDEN_FUNCTION 1 | ||
| # define _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE __attribute__((__section__("__lcxx_override"))) | ||
|
|
||
| // This is very similar to what we do for Mach-O above. The ELF linker will implicitly define | ||
| // variables with those names corresponding to the start and the end of the section. | ||
| // | ||
| // See https://stackoverflow.com/questions/16552710/how-do-you-get-the-start-and-end-addresses-of-a-custom-elf-section | ||
| extern char __start___lcxx_override; | ||
| extern char __stop___lcxx_override; | ||
|
|
||
| _LIBCPP_BEGIN_NAMESPACE_STD | ||
| template <class _Ret, class... _Args> | ||
| _LIBCPP_HIDE_FROM_ABI bool __is_function_overridden(_Ret (*__fptr)(_Args...)) noexcept { | ||
| uintptr_t __start = reinterpret_cast<uintptr_t>(&__start___lcxx_override); | ||
| uintptr_t __end = reinterpret_cast<uintptr_t>(&__stop___lcxx_override); | ||
| uintptr_t __ptr = reinterpret_cast<uintptr_t>(__fptr); | ||
|
|
||
| return __ptr < __start || __ptr > __end; | ||
| } | ||
| _LIBCPP_END_NAMESPACE_STD | ||
|
|
||
| #else | ||
|
|
||
| # define _LIBCPP_CAN_DETECT_OVERRIDDEN_FUNCTION 0 | ||
| # define _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE /* nothing */ | ||
|
|
||
| #endif | ||
|
|
||
| #endif // _LIBCPP___OVERRIDABLE_FUNCTION |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,8 @@ | |
| //===----------------------------------------------------------------------===// | ||
|
|
||
| #include <__memory/aligned_alloc.h> | ||
| #include <__overridable_function> | ||
| #include <cstddef> | ||
| #include <cstdlib> | ||
| #include <new> | ||
|
|
||
|
|
@@ -15,6 +17,10 @@ | |
| // The code below is copied as-is into libc++abi's libcxxabi/src/stdlib_new_delete.cpp | ||
| // file. The version in this file is the canonical one. | ||
|
|
||
| inline void __throw_bad_alloc_shim() { std::__throw_bad_alloc(); } | ||
|
|
||
| # define _LIBCPP_ASSERT_SHIM(expr, str) _LIBCPP_ASSERT(expr, str) | ||
|
|
||
| // ------------------ BEGIN COPY ------------------ | ||
| // Implement all new and delete operators as weak definitions | ||
| // in this shared library, so that they can be overridden by programs | ||
|
|
@@ -36,41 +42,63 @@ static void* operator_new_impl(std::size_t size) noexcept { | |
| return p; | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void* operator new(std::size_t size) _THROW_BAD_ALLOC { | ||
| _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE _LIBCPP_WEAK void* operator new(std::size_t size) _THROW_BAD_ALLOC { | ||
| void* p = operator_new_impl(size); | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| if (p == nullptr) | ||
| throw std::bad_alloc(); | ||
| # endif | ||
| __throw_bad_alloc_shim(); | ||
| return p; | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void* operator new(size_t size, const std::nothrow_t&) noexcept { | ||
| # ifdef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| # if _LIBCPP_CAN_DETECT_OVERRIDDEN_FUNCTION | ||
| _LIBCPP_ASSERT_SHIM( | ||
|
||
| !std::__is_function_overridden(static_cast<void* (*)(std::size_t)>(&operator new)), | ||
| "libc++ was configured with exceptions disabled and `operator new(size_t)` has been overridden, " | ||
| "but `operator new(size_t, nothrow_t)` has not been overridden. This is problematic because " | ||
| "`operator new(size_t, nothrow_t)` must call `operator new(size_t)`, which will terminate in case " | ||
| "it fails to allocate, making it impossible for `operator new(size_t, nothrow_t)` to fulfill its " | ||
| "contract (since it should return nullptr upon failure). Please make sure you override " | ||
| "`operator new(size_t, nothrow_t)` as well."); | ||
| # endif | ||
|
|
||
| return operator_new_impl(size); | ||
| # else | ||
| void* p = nullptr; | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| try { | ||
| # endif // _LIBCPP_HAS_NO_EXCEPTIONS | ||
| p = ::operator new(size); | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| } catch (...) { | ||
| } | ||
| # endif // _LIBCPP_HAS_NO_EXCEPTIONS | ||
| return p; | ||
| # endif | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void* operator new[](size_t size) _THROW_BAD_ALLOC { return ::operator new(size); } | ||
| _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE _LIBCPP_WEAK void* operator new[](size_t size) _THROW_BAD_ALLOC { | ||
| return ::operator new(size); | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void* operator new[](size_t size, const std::nothrow_t&) noexcept { | ||
| # ifdef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| # if _LIBCPP_CAN_DETECT_OVERRIDDEN_FUNCTION | ||
| _LIBCPP_ASSERT_SHIM( | ||
| !std::__is_function_overridden(static_cast<void* (*)(std::size_t)>(&operator new[])), | ||
| "libc++ was configured with exceptions disabled and `operator new[](size_t)` has been overridden, " | ||
| "but `operator new[](size_t, nothrow_t)` has not been overridden. This is problematic because " | ||
| "`operator new[](size_t, nothrow_t)` must call `operator new[](size_t)`, which will terminate in case " | ||
| "it fails to allocate, making it impossible for `operator new[](size_t, nothrow_t)` to fulfill its " | ||
| "contract (since it should return nullptr upon failure). Please make sure you override " | ||
| "`operator new[](size_t, nothrow_t)` as well."); | ||
| # endif | ||
|
|
||
| return operator_new_impl(size); | ||
| # else | ||
| void* p = nullptr; | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| try { | ||
| # endif // _LIBCPP_HAS_NO_EXCEPTIONS | ||
| p = ::operator new[](size); | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| } catch (...) { | ||
| } | ||
| # endif // _LIBCPP_HAS_NO_EXCEPTIONS | ||
| return p; | ||
| # endif | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void operator delete(void* ptr) noexcept { std::free(ptr); } | ||
|
|
@@ -107,43 +135,66 @@ static void* operator_new_aligned_impl(std::size_t size, std::align_val_t alignm | |
| return p; | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void* operator new(std::size_t size, std::align_val_t alignment) _THROW_BAD_ALLOC { | ||
| _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE _LIBCPP_WEAK void* | ||
| operator new(std::size_t size, std::align_val_t alignment) _THROW_BAD_ALLOC { | ||
| void* p = operator_new_aligned_impl(size, alignment); | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| if (p == nullptr) | ||
| throw std::bad_alloc(); | ||
| # endif | ||
| __throw_bad_alloc_shim(); | ||
| return p; | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void* operator new(size_t size, std::align_val_t alignment, const std::nothrow_t&) noexcept { | ||
| # ifdef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| # if _LIBCPP_CAN_DETECT_OVERRIDDEN_FUNCTION | ||
| _LIBCPP_ASSERT_SHIM( | ||
| !std::__is_function_overridden(static_cast<void* (*)(std::size_t, std::align_val_t)>(&operator new)), | ||
| "libc++ was configured with exceptions disabled and `operator new(size_t, align_val_t)` has been overridden, " | ||
| "but `operator new(size_t, align_val_t, nothrow_t)` has not been overridden. This is problematic because " | ||
| "`operator new(size_t, align_val_t, nothrow_t)` must call `operator new(size_t, align_val_t)`, which will " | ||
| "terminate in case it fails to allocate, making it impossible for `operator new(size_t, align_val_t, nothrow_t)` " | ||
| "to fulfill its contract (since it should return nullptr upon failure). Please make sure you override " | ||
| "`operator new(size_t, align_val_t, nothrow_t)` as well."); | ||
| # endif | ||
|
|
||
| return operator_new_aligned_impl(size, alignment); | ||
| # else | ||
| void* p = nullptr; | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| try { | ||
| # endif // _LIBCPP_HAS_NO_EXCEPTIONS | ||
| p = ::operator new(size, alignment); | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| } catch (...) { | ||
| } | ||
| # endif // _LIBCPP_HAS_NO_EXCEPTIONS | ||
| return p; | ||
| # endif | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void* operator new[](size_t size, std::align_val_t alignment) _THROW_BAD_ALLOC { | ||
| _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE _LIBCPP_WEAK void* | ||
| operator new[](size_t size, std::align_val_t alignment) _THROW_BAD_ALLOC { | ||
| return ::operator new(size, alignment); | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void* operator new[](size_t size, std::align_val_t alignment, const std::nothrow_t&) noexcept { | ||
| # ifdef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| # if _LIBCPP_CAN_DETECT_OVERRIDDEN_FUNCTION | ||
| _LIBCPP_ASSERT_SHIM( | ||
| !std::__is_function_overridden(static_cast<void* (*)(std::size_t, std::align_val_t)>(&operator new[])), | ||
| "libc++ was configured with exceptions disabled and `operator new[](size_t, align_val_t)` has been overridden, " | ||
| "but `operator new[](size_t, align_val_t, nothrow_t)` has not been overridden. This is problematic because " | ||
| "`operator new[](size_t, align_val_t, nothrow_t)` must call `operator new[](size_t, align_val_t)`, which will " | ||
| "terminate in case it fails to allocate, making it impossible for `operator new[](size_t, align_val_t, " | ||
| "nothrow_t)` to fulfill its contract (since it should return nullptr upon failure). Please make sure you " | ||
| "override " | ||
| "`operator new[](size_t, align_val_t, nothrow_t)` as well."); | ||
| # endif | ||
|
|
||
| return operator_new_aligned_impl(size, alignment); | ||
| # else | ||
| void* p = nullptr; | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| try { | ||
| # endif // _LIBCPP_HAS_NO_EXCEPTIONS | ||
| p = ::operator new[](size, alignment); | ||
| # ifndef _LIBCPP_HAS_NO_EXCEPTIONS | ||
| } catch (...) { | ||
| } | ||
| # endif // _LIBCPP_HAS_NO_EXCEPTIONS | ||
| return p; | ||
| # endif | ||
| } | ||
|
|
||
| _LIBCPP_WEAK void operator delete(void* ptr, std::align_val_t) noexcept { std::__libcpp_aligned_free(ptr); } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.