1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
// 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.
#include <limits.h>
#include <set>
#include "base/logging.h"
#include "base/platform_file.h"
#include "tools/ipc_fuzzer/message_lib/message_file.h"
#include "tools/ipc_fuzzer/message_lib/message_file_format.h"
#include "tools/ipc_fuzzer/message_lib/message_names.h"
namespace ipc_fuzzer {
namespace {
// Helper class to write a MessageVector + message names to a file.
class Writer {
public:
Writer(const base::FilePath& path);
~Writer();
bool Write(const MessageVector& messages);
private:
bool OpenFile();
// Helper to append data to file_.
bool WriteBlob(const void *buffer, size_t size);
// Collects a set of MessageVector message types. Corresponding message
// names need to be included in the file.
bool CollectMessageTypes();
bool WriteHeader();
bool WriteMessages();
// Each name table entry is a message type + string table offset.
bool WriteNameTable();
// String table contains the actual message names.
bool WriteStringTable();
typedef std::set<uint32> TypesSet;
base::FilePath path_;
base::PlatformFile file_;
const MessageVector* messages_;
TypesSet types_;
DISALLOW_COPY_AND_ASSIGN(Writer);
};
Writer::Writer(const base::FilePath& path)
: path_(path),
file_(base::kInvalidPlatformFileValue),
messages_(NULL) {
}
Writer::~Writer() {
if (file_ != base::kInvalidPlatformFileValue)
base::ClosePlatformFile(file_);
}
bool Writer::OpenFile() {
file_ = base::CreatePlatformFile(
path_,
base::PLATFORM_FILE_CREATE_ALWAYS | base::PLATFORM_FILE_WRITE,
NULL,
NULL);
if (file_ == base::kInvalidPlatformFileValue) {
LOG(ERROR) << "Failed to create IPC message file: " << path_.value();
return false;
}
return true;
}
bool Writer::WriteBlob(const void *buffer, size_t size) {
if (size > INT_MAX)
return false;
const char* char_buffer = static_cast<const char*>(buffer);
int ret = base::WritePlatformFileAtCurrentPos(file_, char_buffer, size);
if (ret != size) {
LOG(ERROR) << "Failed to write " << size << " bytes.";
return false;
}
return true;
}
bool Writer::CollectMessageTypes() {
for (size_t i = 0; i < messages_->size(); ++i) {
uint32_t type = (*messages_)[i]->type();
if (!MessageNames::GetInstance()->TypeExists(type)) {
LOG(ERROR) << "Unknown message type: " << type;
return false;
}
types_.insert(type);
}
return true;
}
bool Writer::WriteHeader() {
FileHeader header;
if (messages_->size() > UINT_MAX)
return false;
header.magic = FileHeader::kMagicValue;
header.version = FileHeader::kCurrentVersion;
header.message_count = messages_->size();
header.name_count = types_.size();
if (!WriteBlob(&header, sizeof(FileHeader)))
return false;
return true;
}
bool Writer::WriteMessages() {
for (size_t i = 0; i < messages_->size(); ++i) {
IPC::Message* message = (*messages_)[i];
if (!WriteBlob(message->data(), message->size()))
return false;
}
return true;
}
bool Writer::WriteNameTable() {
size_t string_table_offset = 0;
NameTableEntry entry;
for (TypesSet::iterator it = types_.begin(); it != types_.end(); ++it) {
if (string_table_offset > UINT_MAX)
return false;
entry.type = *it;
entry.string_table_offset = string_table_offset;
if (!WriteBlob(&entry, sizeof(NameTableEntry)))
return false;
const std::string& name = MessageNames::GetInstance()->TypeToName(*it);
string_table_offset += name.length() + 1;
}
return true;
}
bool Writer::WriteStringTable() {
for (TypesSet::iterator it = types_.begin(); it != types_.end(); ++it) {
const std::string& name = MessageNames::GetInstance()->TypeToName(*it);
if (!WriteBlob(name.c_str(), name.length() + 1))
return false;
}
return true;
}
bool Writer::Write(const MessageVector& messages) {
messages_ = &messages;
if (!OpenFile())
return false;
if (!CollectMessageTypes())
return false;
if (!WriteHeader())
return false;
if (!WriteMessages())
return false;
if (!WriteNameTable())
return false;
if (!WriteStringTable())
return false;
return true;
}
} // namespace
bool MessageFile::Write(const base::FilePath& path,
const MessageVector& messages) {
Writer writer(path);
return writer.Write(messages);
}
} // namespace ipc_fuzzer
|