// Copyright 2017 The Dawn & Tint Authors // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, this // list of conditions and the following disclaimer. // // 2. Redistributions in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // 3. Neither the name of the copyright holder nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "dawn/native/vulkan/VulkanFunctions.h" #include <string> #include <utility> #include "dawn/common/DynamicLib.h" #include "dawn/native/vulkan/VulkanInfo.h" namespace dawn::native::vulkan { namespace { #if DAWN_NO_SANITIZE_VK_FN template <typename F> struct AsVkNoSanitizeFn; // SwiftShader does not export function pointer type information. // So, when fuzzing with UBSAN, fuzzers break whenever calling // a vk* function since it thinks the type of the function pointer // does not match. Context: crbug.com/1296934. // Workaround this problem by proxying through a std::function // in UBSAN builds. The std::function delegates to a Call method // which does the same cast of the function pointer type, however // the Call method is tagged with // `__attribute__((no_sanitize("function")))` to silence the error. template <typename R, typename... Args> struct AsVkNoSanitizeFn<R(VKAPI_PTR*)(Args...)> { auto operator()(void(VKAPI_PTR* addr)()) { return [addr](Args&&... args) -> R { return Call(addr, std::forward<Args>(args)...); }; } private: __attribute__((no_sanitize("function"))) static R Call(void(VKAPI_PTR* addr)(), Args&&... args) { return reinterpret_cast<R(VKAPI_PTR*)(Args...)>(addr)(std::forward<Args>(args)...); } }; template <typename F> auto AsVkFn(void(VKAPI_PTR* addr)()) { return AsVkNoSanitizeFn<F>{}(addr); } #else template <typename F> F AsVkFn(void(VKAPI_PTR* addr)()) { … } #endif } // anonymous namespace #define GET_GLOBAL_PROC(name) … MaybeError VulkanFunctions::LoadGlobalProcs(const DynamicLib& vulkanLib) { … } #define GET_INSTANCE_PROC_BASE(name, procName) … #define GET_INSTANCE_PROC(name) … #define GET_INSTANCE_PROC_VENDOR(name, vendor) … MaybeError VulkanFunctions::LoadInstanceProcs(VkInstance instance, const VulkanGlobalInfo& globalInfo) { … } #define GET_DEVICE_PROC(name) … MaybeError VulkanFunctions::LoadDeviceProcs(VkDevice device, const VulkanDeviceInfo& deviceInfo) { … } } // namespace dawn::native::vulkan