mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-24 07:23:35 +00:00
Due the jump within the signal trap used in these fuzzers, local scope allocations cannot occur while the signal trap is on, otherwise there is a possibility of leaks. This CL rewrites how the code under test is run, so that the potentially aborting code is tightly wrapped by signal trap without any local scope allocations. BUG=chromium:906416 Change-Id: Ie52647433dcac57e3ea065d5bdcb6e14c5929494 Reviewed-on: https://dawn-review.googlesource.com/c/2521 Commit-Queue: Ryan Harrison <rharrison@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org>
45 lines
1.6 KiB
C++
45 lines
1.6 KiB
C++
// Copyright 2018 The Dawn Authors
|
|
//
|
|
// Licensed 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
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include <cstdint>
|
|
#include <functional>
|
|
#include <vector>
|
|
|
|
#include "spirv-cross/spirv_glsl.hpp"
|
|
#include "spirv-cross/spirv_hlsl.hpp"
|
|
|
|
namespace DawnSPIRVCrossFuzzer {
|
|
|
|
struct CombinedOptions {
|
|
spirv_cross::CompilerGLSL::Options glsl;
|
|
spirv_cross::CompilerHLSL::Options hlsl;
|
|
};
|
|
|
|
using Task = std::function<int(const std::vector<uint32_t>&)>;
|
|
template <class Options>
|
|
using TaskWithOptions = std::function<int(const std::vector<uint32_t>&, Options)>;
|
|
|
|
// Used to wrap code that may fire a SIGABRT. Do not allocate anything local within |exec|, as
|
|
// it is not guaranteed to return.
|
|
void ExecuteWithSignalTrap(std::function<void()> exec);
|
|
|
|
// Used to fuzz by mutating the input data, but with fixed options to the compiler
|
|
int Run(const uint8_t* data, size_t size, Task task);
|
|
|
|
// Used to fuzz by mutating both the input data and options to the compiler
|
|
template <class Options>
|
|
int RunWithOptions(const uint8_t* data, size_t size, TaskWithOptions<Options> task);
|
|
|
|
} // namespace DawnSPIRVCrossFuzzer
|