Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Unified Diff: testing/libfuzzer/fuzzers/template_url_parser_fuzzer.cc

Issue 2123733002: Add a fuzzer for TemplateURLParser/Open Search Descriptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bring patch to head. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/libfuzzer/fuzzers/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/fuzzers/template_url_parser_fuzzer.cc
diff --git a/testing/libfuzzer/fuzzers/template_url_parser_fuzzer.cc b/testing/libfuzzer/fuzzers/template_url_parser_fuzzer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4d1b762032e18148fbf504cbb574a7b5073b1827
--- /dev/null
+++ b/testing/libfuzzer/fuzzers/template_url_parser_fuzzer.cc
@@ -0,0 +1,44 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <stddef.h>
+#include <stdint.h>
+
+#include <random>
+#include <string>
+
+#include "components/search_engines/search_terms_data.h"
+#include "components/search_engines/template_url.h"
+#include "components/search_engines/template_url_parser.h"
+
+class PseudoRandomFilter : public TemplateURLParser::ParameterFilter {
+ public:
+ PseudoRandomFilter(uint32_t seed) : generator_(seed), pool_(0, 1) {}
+ ~PseudoRandomFilter() override = default;
+
+ bool KeepParameter(const std::string&, const std::string&) override {
+ return pool_(generator_);
+ }
+
+ private:
+ std::mt19937 generator_;
+ std::uniform_int_distribution<uint8_t> pool_;
+};
+
+struct FuzzerFixedParams {
+ uint32_t seed_;
+};
+
+extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
+ if (size < sizeof(FuzzerFixedParams)) {
+ return 0;
+ }
+ const FuzzerFixedParams* params =
+ reinterpret_cast<const FuzzerFixedParams*>(data);
+ size -= sizeof(FuzzerFixedParams);
+ const char* char_data = reinterpret_cast<const char*>(params + 1);
+ PseudoRandomFilter filter(params->seed_);
+ TemplateURLParser::Parse(SearchTermsData(), char_data, size, &filter);
+ return 0;
+}
« no previous file with comments | « testing/libfuzzer/fuzzers/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698