1 // Copyright 2014 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.
10 #include "base/basictypes.h"
12 // Include once to get the type definitions
13 #include "tools/ipc_fuzzer/message_lib/all_messages.h"
22 bool operator< (const msginfo
& other
) const {
27 // Redefine macros to generate table
28 #include "ipc/ipc_message_null_macros.h"
29 #undef IPC_MESSAGE_DECL
30 #define IPC_MESSAGE_DECL(kind, type, name, in, out, ilist, olist) \
31 { #name, __FILE__, IPC_MESSAGE_ID(), in, out },
33 static msginfo msgtable
[] = {
34 #include "tools/ipc_fuzzer/message_lib/all_messages.h"
36 #define MSGTABLE_SIZE (sizeof(msgtable)/sizeof(msgtable[0]))
37 COMPILE_ASSERT(MSGTABLE_SIZE
, CHECK_YOUR_HEADERS_FOR_AN_EXTRA_SEMICOLON
);
39 static bool check_msgtable() {
41 int previous_class_id
= 0;
42 int highest_class_id
= 0;
43 const char* file_name
= "NONE";
44 const char* previous_file_name
= "NONE";
45 std::vector
<int> exemptions
;
47 // Exclude test and other non-browser files from consideration. Do not
48 // include message files used inside the actual chrome browser in this list.
49 exemptions
.push_back(TestMsgStart
);
50 exemptions
.push_back(FirefoxImporterUnittestMsgStart
);
51 exemptions
.push_back(ShellMsgStart
);
52 exemptions
.push_back(LayoutTestMsgStart
);
53 exemptions
.push_back(MetroViewerMsgStart
);
54 exemptions
.push_back(CCMsgStart
); // Nothing but param traits.
55 exemptions
.push_back(CldDataProviderMsgStart
); // Conditional build.
56 #if !defined(OS_ANDROID)
57 exemptions
.push_back(JavaBridgeMsgStart
);
58 exemptions
.push_back(MediaPlayerMsgStart
);
59 exemptions
.push_back(EncryptedMediaMsgStart
);
60 exemptions
.push_back(GinJavaBridgeMsgStart
);
61 exemptions
.push_back(AndroidWebViewMsgStart
);
62 #endif // !defined(OS_ANDROID)
63 #if !defined(USE_OZONE)
64 exemptions
.push_back(OzoneGpuMsgStart
);
65 #endif // !defined(USE_OZONE)
67 for (size_t i
= 0; i
< MSGTABLE_SIZE
; ++i
) {
68 int class_id
= IPC_MESSAGE_ID_CLASS(msgtable
[i
].id
);
69 file_name
= msgtable
[i
].file
;
70 if (class_id
>= LastIPCMsgStart
) {
71 std::cout
<< "Invalid LastIPCMsgStart setting\n";
74 if (class_id
== previous_class_id
&&
75 strcmp(file_name
, previous_file_name
) != 0) {
76 std::cerr
<< "enum used in multiple files: "
77 << file_name
<< " vs "
78 << previous_file_name
<< "\n";
81 while (class_id
> previous_class_id
+ 1) {
82 std::vector
<int>::iterator iter
;
83 iter
= find(exemptions
.begin(), exemptions
.end(), previous_class_id
+ 1);
84 if (iter
== exemptions
.end()) {
85 std::cout
<< "Missing message file for enum "
86 << class_id
- (previous_class_id
+ 1)
87 << " before enum used by " << file_name
<< "\n";
92 previous_class_id
= class_id
;
93 previous_file_name
= file_name
;
94 if (class_id
> highest_class_id
)
95 highest_class_id
= class_id
;
98 while (LastIPCMsgStart
> highest_class_id
+ 1) {
99 std::vector
<int>::iterator iter
;
100 iter
= find(exemptions
.begin(), exemptions
.end(), highest_class_id
+1);
101 if (iter
== exemptions
.end()) {
102 std::cout
<< "Missing message file for enum "
103 << LastIPCMsgStart
- (highest_class_id
+ 1)
104 << " before enum LastIPCMsgStart\n";
111 std::cout
<< "Please check tools/ipc_fuzzer/message_lib/all_messages.h\n";
116 static void dump_msgtable(bool show_args
, bool show_ids
,
117 bool show_comma
, const char *prefix
) {
119 for (size_t i
= 0; i
< MSGTABLE_SIZE
; ++i
) {
120 if ((!prefix
) || strstr(msgtable
[i
].name
, prefix
) == msgtable
[i
].name
) {
125 std::cout
<< msgtable
[i
].id
;
128 std::cout
<< msgtable
[i
].id
<< " " <<
129 IPC_MESSAGE_ID_CLASS(msgtable
[i
].id
) << "," <<
130 IPC_MESSAGE_ID_LINE(msgtable
[i
].id
) << " ";
131 std::cout
<< msgtable
[i
].name
;
133 std::cout
<< "(" << msgtable
[i
].in_count
<< " IN, " <<
134 msgtable
[i
].out_count
<< " OUT)";
144 int main(int argc
, char **argv
) {
145 bool show_args
= false;
146 bool show_ids
= false;
147 bool skip_check
= false;
148 bool show_comma
= false;
149 const char *filter
= NULL
;
153 if (std::string("--args") == *argv
) {
155 } else if (std::string("--comma") == *argv
) {
157 } else if (std::string("--filter") == *argv
) {
160 } else if (std::string("--ids") == *argv
) {
162 } else if (std::string("--no-check") == *argv
) {
166 "usage: ipclist [--args] [--ids] [--no-check] [--filter prefix] "
172 std::sort(msgtable
, msgtable
+ MSGTABLE_SIZE
);
174 if (!skip_check
&& check_msgtable() == false)
177 dump_msgtable(show_args
, show_ids
, show_comma
, filter
);