1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
14 #include "base/command_line.h"
15 #include "base/pickle.h"
16 #include "base/strings/string_split.h"
17 #include "base/strings/string_util.h"
18 #include "base/strings/string_number_conversions.h"
19 #include "base/strings/utf_string_conversions.h"
20 #include "ipc/ipc_message.h"
21 #include "ipc/ipc_message_utils.h"
22 #include "ipc/ipc_switches.h"
23 #include "ipc/ipc_sync_channel.h"
24 #include "ipc/ipc_sync_message.h"
25 #include "tools/ipc_fuzzer/message_lib/all_messages.h"
26 #include "tools/ipc_fuzzer/message_lib/message_cracker.h"
27 #include "tools/ipc_fuzzer/message_lib/message_file.h"
28 #include "tools/ipc_fuzzer/mutate/rand_util.h"
38 namespace ipc_fuzzer
{
40 // Interface implemented by those who fuzz basic types. The types all
41 // correspond to the types which a pickle from base/pickle.h can pickle,
42 // plus the floating point types.
45 // Tweak individual values within a message.
46 virtual void FuzzBool(bool* value
) = 0;
47 virtual void FuzzInt(int* value
) = 0;
48 virtual void FuzzLong(long* value
) = 0;
49 virtual void FuzzSize(size_t* value
) = 0;
50 virtual void FuzzUChar(unsigned char *value
) = 0;
51 virtual void FuzzUInt16(uint16
* value
) = 0;
52 virtual void FuzzUInt32(uint32
* value
) = 0;
53 virtual void FuzzInt64(int64
* value
) = 0;
54 virtual void FuzzUInt64(uint64
* value
) = 0;
55 virtual void FuzzFloat(float *value
) = 0;
56 virtual void FuzzDouble(double *value
) = 0;
57 virtual void FuzzString(std::string
* value
) = 0;
58 virtual void FuzzString16(base::string16
* value
) = 0;
59 virtual void FuzzData(char* data
, int length
) = 0;
60 virtual void FuzzBytes(void* data
, int data_len
) = 0;
64 void FuzzIntegralType(T
* value
, unsigned int frequency
) {
65 if (RandEvent(frequency
)) {
66 switch (RandInRange(4)) {
67 case 0: (*value
) = 0; break;
68 case 1: (*value
)--; break;
69 case 2: (*value
)++; break;
70 case 3: (*value
) = RandU64(); break;
76 void FuzzStringType(T
* value
, unsigned int frequency
,
77 const T
& literal1
, const T
& literal2
) {
78 if (RandEvent(frequency
)) {
79 switch (RandInRange(5)) {
80 case 4: (*value
) = (*value
) + (*value
); // FALLTHROUGH
81 case 3: (*value
) = (*value
) + (*value
); // FALLTHROUGH
82 case 2: (*value
) = (*value
) + (*value
); break;
83 case 1: (*value
) += literal1
; break;
84 case 0: (*value
) = literal2
; break;
89 // One such fuzzer implementation.
90 class DefaultFuzzer
: public Fuzzer
{
92 DefaultFuzzer(int frequency
) : frequency_(frequency
) {
95 virtual ~DefaultFuzzer() {}
97 virtual void FuzzBool(bool* value
) override
{
98 if (RandEvent(frequency_
))
102 virtual void FuzzInt(int* value
) override
{
103 FuzzIntegralType
<int>(value
, frequency_
);
106 virtual void FuzzLong(long* value
) override
{
107 FuzzIntegralType
<long>(value
, frequency_
);
110 virtual void FuzzSize(size_t* value
) override
{
111 FuzzIntegralType
<size_t>(value
, frequency_
);
114 virtual void FuzzUChar(unsigned char* value
) override
{
115 FuzzIntegralType
<unsigned char>(value
, frequency_
);
118 virtual void FuzzUInt16(uint16
* value
) override
{
119 FuzzIntegralType
<uint16
>(value
, frequency_
);
122 virtual void FuzzUInt32(uint32
* value
) override
{
123 FuzzIntegralType
<uint32
>(value
, frequency_
);
126 virtual void FuzzInt64(int64
* value
) override
{
127 FuzzIntegralType
<int64
>(value
, frequency_
);
130 virtual void FuzzUInt64(uint64
* value
) override
{
131 FuzzIntegralType
<uint64
>(value
, frequency_
);
134 virtual void FuzzFloat(float* value
) override
{
135 if (RandEvent(frequency_
))
136 *value
= RandDouble();
139 virtual void FuzzDouble(double* value
) override
{
140 if (RandEvent(frequency_
))
141 *value
= RandDouble();
144 virtual void FuzzString(std::string
* value
) override
{
145 FuzzStringType
<std::string
>(value
, frequency_
, "BORKED", std::string());
148 virtual void FuzzString16(base::string16
* value
) override
{
149 FuzzStringType
<base::string16
>(value
, frequency_
,
150 base::WideToUTF16(L
"BORKED"),
151 base::WideToUTF16(L
""));
154 virtual void FuzzData(char* data
, int length
) override
{
155 if (RandEvent(frequency_
)) {
156 for (int i
= 0; i
< length
; ++i
) {
157 FuzzIntegralType
<char>(&data
[i
], frequency_
);
162 virtual void FuzzBytes(void* data
, int data_len
) override
{
163 FuzzData(static_cast<char*>(data
), data_len
);
167 unsigned int frequency_
;
171 // No-op fuzzer. Rewrites each message unchanged to check if the message
172 // re-assembly is legit.
173 class NoOpFuzzer
: public Fuzzer
{
176 virtual ~NoOpFuzzer() {}
178 virtual void FuzzBool(bool* value
) override
{}
179 virtual void FuzzInt(int* value
) override
{}
180 virtual void FuzzLong(long* value
) override
{}
181 virtual void FuzzSize(size_t* value
) override
{}
182 virtual void FuzzUChar(unsigned char* value
) override
{}
183 virtual void FuzzUInt16(uint16
* value
) override
{}
184 virtual void FuzzUInt32(uint32
* value
) override
{}
185 virtual void FuzzInt64(int64
* value
) override
{}
186 virtual void FuzzUInt64(uint64
* value
) override
{}
187 virtual void FuzzFloat(float* value
) override
{}
188 virtual void FuzzDouble(double* value
) override
{}
189 virtual void FuzzString(std::string
* value
) override
{}
190 virtual void FuzzString16(base::string16
* value
) override
{}
191 virtual void FuzzData(char* data
, int length
) override
{}
192 virtual void FuzzBytes(void* data
, int data_len
) override
{}
195 class FuzzerFactory
{
197 static Fuzzer
*Create(const std::string
& name
, int frequency
) {
199 return new NoOpFuzzer();
201 if (name
== "default")
202 return new DefaultFuzzer(frequency
);
204 std::cerr
<< "No such fuzzer: " << name
<< "\n";
209 // Partially-specialized class that knows how to fuzz a given type.
212 static void Fuzz(P
* p
, Fuzzer
*fuzzer
) {
213 // This is the catch-all for types we don't have enough information
214 // to fuzz. It simply does nothing to the type. We might want to
215 // change it to randomly flip a bit in the range (p, p+sizeof(P)).
219 // Template function to invoke partially-specialized class method.
221 static void FuzzParam(P
* p
, Fuzzer
* fuzzer
) {
222 FuzzTraits
<P
>::Fuzz(p
, fuzzer
);
225 // Specializations to fuzz primitive types.
227 struct FuzzTraits
<bool> {
228 static void Fuzz(bool* p
, Fuzzer
* fuzzer
) {
234 struct FuzzTraits
<int> {
235 static void Fuzz(int* p
, Fuzzer
* fuzzer
) {
241 struct FuzzTraits
<unsigned int> {
242 static void Fuzz(unsigned int* p
, Fuzzer
* fuzzer
) {
243 fuzzer
->FuzzInt(reinterpret_cast<int*>(p
));
248 struct FuzzTraits
<long> {
249 static void Fuzz(long* p
, Fuzzer
* fuzzer
) {
255 struct FuzzTraits
<unsigned long> {
256 static void Fuzz(unsigned long* p
, Fuzzer
* fuzzer
) {
257 fuzzer
->FuzzLong(reinterpret_cast<long*>(p
));
262 struct FuzzTraits
<long long> {
263 static void Fuzz(long long* p
, Fuzzer
* fuzzer
) {
264 fuzzer
->FuzzInt64(reinterpret_cast<int64
*>(p
));
269 struct FuzzTraits
<unsigned long long> {
270 static void Fuzz(unsigned long long* p
, Fuzzer
* fuzzer
) {
271 fuzzer
->FuzzInt64(reinterpret_cast<int64
*>(p
));
276 struct FuzzTraits
<short> {
277 static void Fuzz(short* p
, Fuzzer
* fuzzer
) {
278 fuzzer
->FuzzUInt16(reinterpret_cast<uint16
*>(p
));
283 struct FuzzTraits
<unsigned short> {
284 static void Fuzz(unsigned short* p
, Fuzzer
* fuzzer
) {
285 fuzzer
->FuzzUInt16(reinterpret_cast<uint16
*>(p
));
290 struct FuzzTraits
<char> {
291 static void Fuzz(char* p
, Fuzzer
* fuzzer
) {
292 fuzzer
->FuzzUChar(reinterpret_cast<unsigned char*>(p
));
297 struct FuzzTraits
<unsigned char> {
298 static void Fuzz(unsigned char* p
, Fuzzer
* fuzzer
) {
299 fuzzer
->FuzzUChar(p
);
304 struct FuzzTraits
<float> {
305 static void Fuzz(float* p
, Fuzzer
* fuzzer
) {
306 fuzzer
->FuzzFloat(p
);
311 struct FuzzTraits
<double> {
312 static void Fuzz(double* p
, Fuzzer
* fuzzer
) {
313 fuzzer
->FuzzDouble(p
);
318 struct FuzzTraits
<std::string
> {
319 static void Fuzz(std::string
* p
, Fuzzer
* fuzzer
) {
320 fuzzer
->FuzzString(p
);
325 struct FuzzTraits
<base::string16
> {
326 static void Fuzz(base::string16
* p
, Fuzzer
* fuzzer
) {
327 fuzzer
->FuzzString16(p
);
331 // Specializations to fuzz tuples.
333 struct FuzzTraits
<Tuple1
<A
> > {
334 static void Fuzz(Tuple1
<A
>* p
, Fuzzer
* fuzzer
) {
335 FuzzParam(&p
->a
, fuzzer
);
339 template <class A
, class B
>
340 struct FuzzTraits
<Tuple2
<A
, B
> > {
341 static void Fuzz(Tuple2
<A
, B
>* p
, Fuzzer
* fuzzer
) {
342 FuzzParam(&p
->a
, fuzzer
);
343 FuzzParam(&p
->b
, fuzzer
);
347 template <class A
, class B
, class C
>
348 struct FuzzTraits
<Tuple3
<A
, B
, C
> > {
349 static void Fuzz(Tuple3
<A
, B
, C
>* p
, Fuzzer
* fuzzer
) {
350 FuzzParam(&p
->a
, fuzzer
);
351 FuzzParam(&p
->b
, fuzzer
);
352 FuzzParam(&p
->c
, fuzzer
);
356 template <class A
, class B
, class C
, class D
>
357 struct FuzzTraits
<Tuple4
<A
, B
, C
, D
> > {
358 static void Fuzz(Tuple4
<A
, B
, C
, D
>* p
, Fuzzer
* fuzzer
) {
359 FuzzParam(&p
->a
, fuzzer
);
360 FuzzParam(&p
->b
, fuzzer
);
361 FuzzParam(&p
->c
, fuzzer
);
362 FuzzParam(&p
->d
, fuzzer
);
366 template <class A
, class B
, class C
, class D
, class E
>
367 struct FuzzTraits
<Tuple5
<A
, B
, C
, D
, E
> > {
368 static void Fuzz(Tuple5
<A
, B
, C
, D
, E
>* p
, Fuzzer
* fuzzer
) {
369 FuzzParam(&p
->a
, fuzzer
);
370 FuzzParam(&p
->b
, fuzzer
);
371 FuzzParam(&p
->c
, fuzzer
);
372 FuzzParam(&p
->d
, fuzzer
);
373 FuzzParam(&p
->e
, fuzzer
);
377 // Specializations to fuzz containers.
379 struct FuzzTraits
<std::vector
<A
> > {
380 static void Fuzz(std::vector
<A
>* p
, Fuzzer
* fuzzer
) {
381 for (size_t i
= 0; i
< p
->size(); ++i
) {
382 FuzzParam(&p
->at(i
), fuzzer
);
387 template <class A
, class B
>
388 struct FuzzTraits
<std::map
<A
, B
> > {
389 static void Fuzz(std::map
<A
, B
>* p
, Fuzzer
* fuzzer
) {
390 typename
std::map
<A
, B
>::iterator it
;
391 for (it
= p
->begin(); it
!= p
->end(); ++it
) {
392 FuzzParam(&it
->second
, fuzzer
);
397 template <class A
, class B
>
398 struct FuzzTraits
<std::pair
<A
, B
> > {
399 static void Fuzz(std::pair
<A
, B
>* p
, Fuzzer
* fuzzer
) {
400 FuzzParam(&p
->second
, fuzzer
);
404 // Specializations to fuzz hand-coded tyoes
406 struct FuzzTraits
<base::FileDescriptor
> {
407 static void Fuzz(base::FileDescriptor
* p
, Fuzzer
* fuzzer
) {
408 FuzzParam(&p
->fd
, fuzzer
);
413 struct FuzzTraits
<GURL
> {
414 static void Fuzz(GURL
*p
, Fuzzer
* fuzzer
) {
415 FuzzParam(&p
->possibly_invalid_spec(), fuzzer
);
420 struct FuzzTraits
<gfx::Point
> {
421 static void Fuzz(gfx::Point
*p
, Fuzzer
* fuzzer
) {
424 FuzzParam(&x
, fuzzer
);
425 FuzzParam(&y
, fuzzer
);
431 struct FuzzTraits
<gfx::Size
> {
432 static void Fuzz(gfx::Size
*p
, Fuzzer
* fuzzer
) {
435 FuzzParam(&w
, fuzzer
);
436 FuzzParam(&h
, fuzzer
);
442 struct FuzzTraits
<gfx::Rect
> {
443 static void Fuzz(gfx::Rect
*p
, Fuzzer
* fuzzer
) {
444 gfx::Point origin
= p
->origin();
445 gfx::Size size
= p
->size();
446 FuzzParam(&origin
, fuzzer
);
447 FuzzParam(&size
, fuzzer
);
448 p
->set_origin(origin
);
453 // Redefine macros to generate fuzzing from traits declarations.
454 // Null out all the macros that need nulling.
455 #include "ipc/ipc_message_null_macros.h"
457 // STRUCT declarations cause corresponding STRUCT_TRAITS declarations to occur.
458 #undef IPC_STRUCT_BEGIN
459 #undef IPC_STRUCT_BEGIN_WITH_PARENT
460 #undef IPC_STRUCT_MEMBER
461 #undef IPC_STRUCT_END
462 #define IPC_STRUCT_BEGIN_WITH_PARENT(struct_name, parent) \
463 IPC_STRUCT_BEGIN(struct_name)
464 #define IPC_STRUCT_BEGIN(struct_name) IPC_STRUCT_TRAITS_BEGIN(struct_name)
465 #define IPC_STRUCT_MEMBER(type, name, ...) IPC_STRUCT_TRAITS_MEMBER(name)
466 #define IPC_STRUCT_END() IPC_STRUCT_TRAITS_END()
468 // Set up so next include will generate fuzz trait classes.
469 #undef IPC_STRUCT_TRAITS_BEGIN
470 #undef IPC_STRUCT_TRAITS_MEMBER
471 #undef IPC_STRUCT_TRAITS_PARENT
472 #undef IPC_STRUCT_TRAITS_END
473 #define IPC_STRUCT_TRAITS_BEGIN(struct_name) \
475 struct FuzzTraits<struct_name> { \
476 static void Fuzz(struct_name *p, Fuzzer* fuzzer) {
478 #define IPC_STRUCT_TRAITS_MEMBER(name) \
479 FuzzParam(&p->name, fuzzer);
481 #define IPC_STRUCT_TRAITS_PARENT(type) \
482 FuzzParam(static_cast<type*>(p), fuzzer);
484 #define IPC_STRUCT_TRAITS_END() \
488 // TODO(tsepez): Make sure to end up with an enum that meets |condition|.
489 #undef IPC_ENUM_TRAITS_VALIDATE
490 #define IPC_ENUM_TRAITS_VALIDATE(enum_name, conditon) \
492 struct FuzzTraits<enum_name> { \
493 static void Fuzz(enum_name* p, Fuzzer* fuzzer) { \
494 FuzzParam(reinterpret_cast<int*>(p), fuzzer); \
498 // Bring them into existence.
499 #include "tools/ipc_fuzzer/message_lib/all_messages.h"
501 // Redefine macros to generate fuzzing funtions
502 #include "ipc/ipc_message_null_macros.h"
503 #undef IPC_MESSAGE_DECL
504 #define IPC_MESSAGE_DECL(kind, type, name, in, out, ilist, olist) \
505 IPC_##kind##_##type##_FUZZ(name, in, out, ilist, olist)
507 #define IPC_EMPTY_CONTROL_FUZZ(name, in, out, ilist, olist) \
508 IPC::Message* fuzzer_for_##name(IPC::Message *msg, Fuzzer* fuzzer) { \
512 #define IPC_EMPTY_ROUTED_FUZZ(name, in, out, ilist, olist) \
513 IPC::Message* fuzzer_for_##name(IPC::Message *msg, Fuzzer* fuzzer) { \
517 #define IPC_ASYNC_CONTROL_FUZZ(name, in, out, ilist, olist) \
518 IPC::Message* fuzzer_for_##name(IPC::Message *msg, Fuzzer* fuzzer) { \
519 name* real_msg = static_cast<name*>(msg); \
520 IPC_TUPLE_IN_##in ilist p; \
521 name::Read(real_msg, &p); \
522 FuzzParam(&p, fuzzer); \
523 return new name(IPC_MEMBERS_IN_##in(p)); \
526 #define IPC_ASYNC_ROUTED_FUZZ(name, in, out, ilist, olist) \
527 IPC::Message* fuzzer_for_##name(IPC::Message *msg, Fuzzer* fuzzer) { \
528 name* real_msg = static_cast<name*>(msg); \
529 IPC_TUPLE_IN_##in ilist p; \
530 name::Read(real_msg, &p); \
531 FuzzParam(&p, fuzzer); \
532 return new name(msg->routing_id() \
534 IPC_MEMBERS_IN_##in(p)); \
537 #define IPC_SYNC_CONTROL_FUZZ(name, in, out, ilist, olist) \
538 IPC::Message* fuzzer_for_##name(IPC::Message *msg, Fuzzer* fuzzer) { \
539 name* real_msg = static_cast<name*>(msg); \
540 IPC_TUPLE_IN_##in ilist p; \
541 name::ReadSendParam(real_msg, &p); \
542 FuzzParam(&p, fuzzer); \
543 name* new_msg = new name(IPC_MEMBERS_IN_##in(p) \
544 IPC_COMMA_AND_##out(IPC_COMMA_##in) \
545 IPC_MEMBERS_OUT_##out()); \
546 MessageCracker::CopyMessageID(new_msg, real_msg); \
551 #define IPC_SYNC_ROUTED_FUZZ(name, in, out, ilist, olist) \
552 IPC::Message* fuzzer_for_##name(IPC::Message *msg, Fuzzer* fuzzer) { \
553 name* real_msg = static_cast<name*>(msg); \
554 IPC_TUPLE_IN_##in ilist p; \
555 name::ReadSendParam(real_msg, &p); \
556 FuzzParam(&p, fuzzer); \
557 name* new_msg = new name(msg->routing_id() \
558 IPC_COMMA_OR_##out(IPC_COMMA_##in) \
559 IPC_MEMBERS_IN_##in(p) \
560 IPC_COMMA_AND_##out(IPC_COMMA_##in) \
561 IPC_MEMBERS_OUT_##out()); \
562 MessageCracker::CopyMessageID(new_msg, real_msg); \
566 #define IPC_MEMBERS_IN_0(p)
567 #define IPC_MEMBERS_IN_1(p) p.a
568 #define IPC_MEMBERS_IN_2(p) p.a, p.b
569 #define IPC_MEMBERS_IN_3(p) p.a, p.b, p.c
570 #define IPC_MEMBERS_IN_4(p) p.a, p.b, p.c, p.d
571 #define IPC_MEMBERS_IN_5(p) p.a, p.b, p.c, p.d, p.e
573 #define IPC_MEMBERS_OUT_0()
574 #define IPC_MEMBERS_OUT_1() NULL
575 #define IPC_MEMBERS_OUT_2() NULL, NULL
576 #define IPC_MEMBERS_OUT_3() NULL, NULL, NULL
577 #define IPC_MEMBERS_OUT_4() NULL, NULL, NULL, NULL
578 #define IPC_MEMBERS_OUT_5() NULL, NULL, NULL, NULL, NULL
580 #include "tools/ipc_fuzzer/message_lib/all_messages.h"
582 typedef IPC::Message
* (*FuzzFunction
)(IPC::Message
*, Fuzzer
*);
583 typedef base::hash_map
<uint32
, FuzzFunction
> FuzzFunctionMap
;
585 // Redefine macros to register fuzzing functions into map.
586 #include "ipc/ipc_message_null_macros.h"
587 #undef IPC_MESSAGE_DECL
588 #define IPC_MESSAGE_DECL(kind, type, name, in, out, ilist, olist) \
589 (*map)[static_cast<uint32>(name::ID)] = fuzzer_for_##name;
591 void PopulateFuzzFunctionMap(FuzzFunctionMap
*map
) {
592 #include "tools/ipc_fuzzer/message_lib/all_messages.h"
595 static IPC::Message
* RewriteMessage(
596 IPC::Message
* message
,
598 FuzzFunctionMap
* map
) {
599 FuzzFunctionMap::iterator it
= map
->find(message
->type());
600 if (it
== map
->end()) {
601 // This usually indicates a missing message file in all_messages.h, or
602 // that the message dump file is taken from a different revision of
603 // chromium from this executable.
604 std::cerr
<< "Unknown message type: ["
605 << IPC_MESSAGE_ID_CLASS(message
->type()) << ", "
606 << IPC_MESSAGE_ID_LINE(message
->type()) << "].\n";
610 return (*it
->second
)(message
, fuzzer
);
615 const char kHelpSwitch
[] = "help";
616 const char kHelpSwitchHelp
[] =
619 const char kFrequencySwitch
[] = "frequency";
620 const char kFrequencySwitchHelp
[] =
621 "probability of mutation; tweak every 1/|q| times.";
623 const char kFuzzerNameSwitch
[] = "fuzzer-name";
624 const char kFuzzerNameSwitchHelp
[] =
625 "select default or no-op fuzzer.";
627 const char kPermuteSwitch
[] = "permute";
628 const char kPermuteSwitchHelp
[] =
629 "Randomly shuffle the order of all messages.";
631 const char kTypeListSwitch
[] = "type-list";
632 const char kTypeListSwitchHelp
[] =
633 "explicit list of the only message-ids to mutate.";
636 std::cerr
<< "Mutate messages from an exiting message file.\n";
638 std::cerr
<< "Usage:\n"
639 << " ipc_fuzzer_mutate"
640 << " [--" << kHelpSwitch
<< "]"
641 << " [--" << kFuzzerNameSwitch
<< "=f]"
642 << " [--" << kFrequencySwitch
<< "=q]"
643 << " [--" << kTypeListSwitch
<< "=x,y,z...]"
644 << " [--" << kPermuteSwitch
<< "]"
645 << " infile outfile\n";
648 << " --" << kHelpSwitch
<< " - " << kHelpSwitchHelp
<< "\n"
649 << " --" << kFuzzerNameSwitch
<< " - " << kFuzzerNameSwitchHelp
<< "\n"
650 << " --" << kFrequencySwitch
<< " - " << kFrequencySwitchHelp
<< "\n"
651 << " --" << kTypeListSwitch
<< " - " << kTypeListSwitchHelp
<< "\n"
652 << " --" << kPermuteSwitch
<< " - " << kPermuteSwitchHelp
<< "\n";
657 int MutateMain(int argc
, char** argv
) {
658 CommandLine::Init(argc
, argv
);
659 CommandLine
* cmd
= CommandLine::ForCurrentProcess();
660 CommandLine::StringVector args
= cmd
->GetArgs();
662 if (args
.size() != 2 || cmd
->HasSwitch(kHelpSwitch
)) {
667 std::string input_file_name
= args
[0];
668 std::string output_file_name
= args
[1];
670 bool permute
= cmd
->HasSwitch(kPermuteSwitch
);
672 std::string fuzzer_name
= "default";
673 if (cmd
->HasSwitch(kFuzzerNameSwitch
))
674 fuzzer_name
= cmd
->GetSwitchValueASCII(kFuzzerNameSwitch
);
677 if (cmd
->HasSwitch(kFrequencySwitch
))
678 frequency
= atoi(cmd
->GetSwitchValueASCII(kFrequencySwitch
).c_str());
680 std::string type_string_list
= cmd
->GetSwitchValueASCII(kTypeListSwitch
);
681 std::vector
<std::string
> type_string_vector
;
682 base::SplitString(type_string_list
, ',', &type_string_vector
);
683 std::set
<int> type_set
;
684 for (size_t i
= 0; i
< type_string_vector
.size(); ++i
) {
685 type_set
.insert(atoi(type_string_vector
[i
].c_str()));
690 Fuzzer
* fuzzer
= FuzzerFactory::Create(fuzzer_name
, frequency
);
694 FuzzFunctionMap fuzz_function_map
;
695 PopulateFuzzFunctionMap(&fuzz_function_map
);
697 MessageVector message_vector
;
698 if (!MessageFile::Read(base::FilePath(input_file_name
), &message_vector
))
701 for (size_t i
= 0; i
< message_vector
.size(); ++i
) {
702 IPC::Message
* msg
= message_vector
[i
];
703 if (!type_set
.empty() && type_set
.end() == std::find(
704 type_set
.begin(), type_set
.end(), msg
->type())) {
707 IPC::Message
* new_message
= RewriteMessage(msg
, fuzzer
, &fuzz_function_map
);
709 delete message_vector
[i
];
710 message_vector
[i
] = new_message
;
715 std::random_shuffle(message_vector
.begin(), message_vector
.end(),
719 if (!MessageFile::Write(base::FilePath(output_file_name
), message_vector
))
725 } // namespace ipc_fuzzer
727 int main(int argc
, char** argv
) {
728 return ipc_fuzzer::MutateMain(argc
, argv
);