STT-tensorflow/tensorflow/security/fuzzing/stringprintf_fuzz.cc
Mihai Maruseac 42a5bafdd8 Increase complexity of stringprintf_fuzz.
PiperOrigin-RevId: 329738492
Change-Id: I72ae13f556b3a2ac00025b5fd79ef56998172c00
2020-09-02 10:28:09 -07:00

62 lines
1.9 KiB
C++

/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
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 <fuzzer/FuzzedDataProvider.h>
#include <cstdint>
#include <cstdlib>
#include "tensorflow/core/platform/stringprintf.h"
// This is a fuzzer for tensorflow::strings::Printf
namespace {
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
FuzzedDataProvider fuzzed_data(data, size);
const char split = fuzzed_data.ConsumeIntegral<char>();
const char split_a = split & 0x07;
const char split_b = (split >> 3) & 0x07;
const std::string ss[3] = {
fuzzed_data.ConsumeBytesAsString(split_a),
fuzzed_data.ConsumeBytesAsString(split_b),
fuzzed_data.ConsumeRemainingBytesAsString(),
};
const std::string all = ss[0] + ss[1] + ss[2];
int n[4] = {-1, -1, -1, -1};
const std::string ret =
tensorflow::strings::Printf("%n%s%n%s%n%s%n", &n[0], ss[0].c_str(), &n[1],
ss[1].c_str(), &n[2], ss[2].c_str(), &n[3]);
int size_so_far = 0;
for (int i = 0; i < 3; i++) {
assert(n[i] >= 0);
assert(n[i] <= size_so_far);
size_so_far += ss[i].size();
}
assert(n[3] >= 0);
assert(n[3] <= size_so_far);
assert(n[3] <= all.size());
assert(n[3] <= size - 1);
assert(ret.size() == n[3]);
return 0;
}
} // namespace