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

Unified Diff: tools/ipc_fuzzer/mutate/mutator.cc

Issue 1000373004: Combine traits for IPC mutation and generation fuzzing plus other refactoring. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Define frequency as a constant and reorder arguments in ipc_fuzzer_gen.py Created 5 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 | « tools/ipc_fuzzer/mutate/mutator.h ('k') | tools/ipc_fuzzer/mutate/rand_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/mutate/mutator.cc
diff --git a/tools/ipc_fuzzer/mutate/mutator.cc b/tools/ipc_fuzzer/mutate/mutator.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d03224b42f874314ab42cdc81ed5f069bd4f7f38
--- /dev/null
+++ b/tools/ipc_fuzzer/mutate/mutator.cc
@@ -0,0 +1,121 @@
+// Copyright 2015 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 <algorithm>
+#include <string>
+
+#include "base/basictypes.h"
+#include "base/strings/string_util.h"
+#include "base/strings/utf_string_conversions.h"
+#include "tools/ipc_fuzzer/mutate/mutator.h"
+#include "tools/ipc_fuzzer/mutate/rand_util.h"
+
+namespace ipc_fuzzer {
+
+template <typename T>
+void FuzzIntegralType(T* value, unsigned int frequency) {
+ if (RandEvent(frequency)) {
+ switch (RandInRange(4)) {
+ case 0: (*value) = 0; break;
+ case 1: (*value)--; break;
+ case 2: (*value)++; break;
+ case 3: (*value) = RandU64(); break;
+ }
+ }
+}
+
+template <typename T>
+void FuzzStringType(T* value, unsigned int frequency,
+ const T& literal1, const T& literal2) {
+ if (RandEvent(frequency)) {
+ switch (RandInRange(5)) {
+ case 4: (*value) = (*value) + (*value); // FALLTHROUGH
+ case 3: (*value) = (*value) + (*value); // FALLTHROUGH
+ case 2: (*value) = (*value) + (*value); break;
+ case 1: (*value) += literal1; break;
+ case 0: (*value) = literal2; break;
+ }
+ }
+}
+
+void Mutator::FuzzBool(bool* value) {
+ if (RandEvent(frequency_))
+ (*value) = !(*value);
+}
+
+void Mutator::FuzzInt(int* value) {
+ FuzzIntegralType<int>(value, frequency_);
+}
+
+void Mutator::FuzzLong(long* value) {
+ FuzzIntegralType<long>(value, frequency_);
+}
+
+void Mutator::FuzzSize(size_t* value) {
+ FuzzIntegralType<size_t>(value, frequency_);
+}
+
+void Mutator::FuzzUChar(unsigned char* value) {
+ FuzzIntegralType<unsigned char>(value, frequency_);
+}
+
+void Mutator::FuzzWChar(wchar_t* value) {
+ FuzzIntegralType<wchar_t>(value, frequency_);
+}
+
+void Mutator::FuzzUInt16(uint16* value) {
+ FuzzIntegralType<uint16>(value, frequency_);
+}
+
+void Mutator::FuzzUInt32(uint32* value) {
+ FuzzIntegralType<uint32>(value, frequency_);
+}
+
+void Mutator::FuzzInt64(int64* value) {
+ FuzzIntegralType<int64>(value, frequency_);
+}
+
+void Mutator::FuzzUInt64(uint64* value) {
+ FuzzIntegralType<uint64>(value, frequency_);
+}
+
+void Mutator::FuzzFloat(float* value) {
+ if (RandEvent(frequency_))
+ *value = RandDouble();
+}
+
+void Mutator::FuzzDouble(double* value) {
+ if (RandEvent(frequency_))
+ *value = RandDouble();
+}
+
+void Mutator:: FuzzString(std::string* value) {
+ FuzzStringType<std::string>(value, frequency_, "BORKED", std::string());
+}
+
+void Mutator::FuzzString16(base::string16* value) {
+ FuzzStringType<base::string16>(value, frequency_,
+ base::WideToUTF16(L"BORKED"),
+ base::WideToUTF16(L""));
+}
+
+void Mutator::FuzzData(char* data, int length) {
+ if (RandEvent(frequency_)) {
+ for (int i = 0; i < length; ++i) {
+ FuzzIntegralType<char>(&data[i], frequency_);
+ }
+ }
+}
+
+void Mutator::FuzzBytes(void* data, int data_len) {
+ FuzzData(static_cast<char*>(data), data_len);
+}
+
+bool Mutator::ShouldGenerate() {
+ // TODO(mbarbella): With a low probability, allow something to be fully
+ // rewritten while mutating instead of always changing the existing value.
+ return false;
+}
+
+} // namespace ipc_fuzzer
« no previous file with comments | « tools/ipc_fuzzer/mutate/mutator.h ('k') | tools/ipc_fuzzer/mutate/rand_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698