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

Unified Diff: tools/ipc_fuzzer/message_lib/message_cracker.h

Issue 105083002: IPC fuzzer: create message_lib library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename map_ to mapped_file_. Created 7 years 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
Index: tools/ipc_fuzzer/message_lib/message_cracker.h
diff --git a/tools/ipc_fuzzer/message_lib/message_cracker.h b/tools/ipc_fuzzer/message_lib/message_cracker.h
new file mode 100644
index 0000000000000000000000000000000000000000..37acf9618303a5bc6b55b7fd67d1caf40ee8da8d
--- /dev/null
+++ b/tools/ipc_fuzzer/message_lib/message_cracker.h
@@ -0,0 +1,32 @@
+// Copyright 2013 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.
+
+#ifndef TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_CRACKER_H_
+#define TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_CRACKER_H_
+
+#include <string.h>
+#include "ipc/ipc_message.h"
+
+// Means for updating protected message fields.
+class MessageCracker : public IPC::Message {
+ public:
+ static void CopyMessageID(IPC::Message* dst, IPC::Message* src) {
+ memcpy(ToCracker(dst)->mutable_payload(),
+ ToCracker(src)->payload(),
+ sizeof(int));
+ }
+
+ static void SetMessageType(IPC::Message* message, uint32 type) {
+ ToCracker(message)->header()->type = type;
+ }
+
+ private:
+ static MessageCracker* ToCracker(IPC::Message* message) {
+ return reinterpret_cast<MessageCracker*>(message);
+ }
+
+ DISALLOW_COPY_AND_ASSIGN(MessageCracker);
+};
+
+#endif // TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_CRACKER_H_

Powered by Google App Engine
This is Rietveld 408576698