blob: b6d7cb7a9dcea8cc0c3a64b444c70491fed90fbf [file] [log] [blame]
// Copyright 2023 The Centipede 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
//
// https://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.
// Centipede puzzle: deep recursion that may cause stack overflow.
// clang-format off
// RUN: Run --callstack_level=10 --use_cmp_features=0 --max_len=10 --num_runs=10000000 # NOLINT
// RUN: SolutionIs ABCDEF
// clang-format on
#include <sys/resource.h>
#include <cstddef>
#include <cstdint>
// Set the stack size to something small (64K).
static struct rlimit rlim = {1 << 16, 1 << 16};
static int unused = setrlimit(RLIMIT_STACK, &rlim);
// Don't let the compiler be too smart.
static inline void BreakOptimization(const void *arg) {
__asm__ __volatile__("" : : "r"(arg) : "memory");
}
// Causes deep recursion on inputs like "ABCDEFGHIJKLMNOPQRSTUVWXYZABC...".
// Has a large stack frame, so that a relatively shallow recursion will overflow
// the stack.
void Recursive(const uint8_t *data, size_t size, size_t idx) {
if (idx >= size) return;
char large_stack_object[1024 * 16];
BreakOptimization(&large_stack_object[0]);
if (data[idx] == 'A' + (idx % 26)) Recursive(data, size, idx + 1);
}
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
Recursive(data, size, 0);
return 0;
}