-
Notifications
You must be signed in to change notification settings - Fork 0
/
diagnostics.cpp
357 lines (331 loc) · 12.8 KB
/
diagnostics.cpp
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
/*
* Copyright (C) 2020, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "diagnostics.h"
#include <functional>
#include <stack>
#include "aidl_language.h"
#include "logging.h"
using std::placeholders::_1;
namespace android {
namespace aidl {
const std::map<std::string, DiagnosticOption> kAllDiagnostics = {
#define DIAG(ENUM, NAME, ENABLED) {NAME, DiagnosticOption{DiagnosticID::ENUM, NAME, ENABLED}},
#include "diagnostics.inc"
#undef DIAG
};
static const std::map<DiagnosticID, std::string> kDiagnosticsNames = {
#define DIAG(ENUM, NAME, ENABLED) {DiagnosticID::ENUM, NAME},
#include "diagnostics.inc"
#undef DIAG
};
void DiagnosticMapping::Severity(DiagnosticID id, DiagnosticSeverity severity) {
mapping_[id] = severity;
}
DiagnosticSeverity DiagnosticMapping::Severity(DiagnosticID id) const {
return mapping_.at(id);
}
std::string to_string(DiagnosticID id) {
return kDiagnosticsNames.at(id);
}
class DiagnosticsContext {
public:
DiagnosticsContext(DiagnosticMapping mapping) : mapping_({std::move(mapping)}) {}
AidlErrorLog Report(const AidlLocation& loc, DiagnosticID id,
DiagnosticSeverity force_severity = DiagnosticSeverity::DISABLED) {
if (loc.IsInternal()) {
return AidlErrorLog(AidlErrorLog::NO_OP, loc);
}
const std::string suffix = " [-W" + to_string(id) + "]";
auto severity = std::max(force_severity, mapping_.top().Severity(id));
switch (severity) {
case DiagnosticSeverity::DISABLED:
return AidlErrorLog(AidlErrorLog::NO_OP, loc);
case DiagnosticSeverity::WARNING:
return AidlErrorLog(AidlErrorLog::WARNING, loc, suffix);
case DiagnosticSeverity::ERROR:
error_count_++;
return AidlErrorLog(AidlErrorLog::ERROR, loc, suffix);
}
}
size_t ErrorCount() const { return error_count_; }
void Suppress(const AidlAnnotatable& a) {
const auto& warnings = a.SuppressWarnings();
DiagnosticMapping new_mapping = mapping_.top();
for (const auto& w : warnings) {
auto it = kAllDiagnostics.find(w);
if (it == kAllDiagnostics.end()) {
Report(a.GetLocation(), DiagnosticID::unknown_warning, DiagnosticSeverity::ERROR)
<< "unknown warning: " << w;
continue;
}
new_mapping.Severity(it->second.id, DiagnosticSeverity::DISABLED);
}
mapping_.push(std::move(new_mapping));
}
void Restore(const AidlAnnotatable&) {
mapping_.pop();
}
private:
std::stack<DiagnosticMapping> mapping_;
size_t error_count_ = {};
};
class DiagnosticsVisitor : public AidlVisitor {
public:
DiagnosticsVisitor(DiagnosticsContext& diag) : diag(diag) {}
void Check(const AidlDocument& doc) {
DiagnosticsVisitor* visitor = this;
using Fun = std::function<void(const AidlAnnotatable&)>;
struct Hook : public AidlVisitor {
Fun fun;
Hook(Fun fun) : fun(fun) {}
void Visit(const AidlInterface& a) override { fun(a); }
void Visit(const AidlEnumDeclaration& a) override { fun(a); }
void Visit(const AidlStructuredParcelable& a) override { fun(a); }
void Visit(const AidlUnionDecl& a) override { fun(a); }
void Visit(const AidlParcelable& a) override { fun(a); }
void Visit(const AidlMethod& a) override { fun(a.GetType()); }
};
Hook suppress{std::bind(&DiagnosticsContext::Suppress, &diag, _1)};
Hook restore{std::bind(&DiagnosticsContext::Restore, &diag, _1)};
std::function<void(const AidlNode&)> top_down = [&top_down, &suppress, &restore,
visitor](const AidlNode& a) {
a.DispatchVisit(suppress);
a.DispatchVisit(*visitor);
a.TraverseChildren(top_down);
a.DispatchVisit(restore);
};
top_down(doc);
}
protected:
DiagnosticsContext& diag;
};
struct DiagnoseInterfaceName : DiagnosticsVisitor {
DiagnoseInterfaceName(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlInterface& i) override {
if (auto name = i.GetName(); name.size() < 1 || name[0] != 'I') {
diag.Report(i.GetLocation(), DiagnosticID::interface_name)
<< "Interface names should start with I.";
}
}
};
struct DiagnoseInoutParameter : DiagnosticsVisitor {
DiagnoseInoutParameter(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlArgument& a) override {
if (a.GetDirection() == AidlArgument::INOUT_DIR) {
diag.Report(a.GetLocation(), DiagnosticID::inout_parameter)
<< a.GetName()
<< " is 'inout'. Avoid inout parameters. This is somewhat confusing for clients "
"because although the parameters are 'in', they look out 'out' parameters.";
}
}
};
struct DiagnoseConstName : DiagnosticsVisitor {
DiagnoseConstName(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlEnumerator& e) override {
if (ToUpper(e.GetName()) != e.GetName()) {
diag.Report(e.GetLocation(), DiagnosticID::const_name)
<< "Enum values should be named in upper case: " << e.GetName();
}
}
void Visit(const AidlConstantDeclaration& c) override {
if (ToUpper(c.GetName()) != c.GetName()) {
diag.Report(c.GetLocation(), DiagnosticID::const_name)
<< "Constants should be named in upper case: " << c.GetName();
}
}
static std::string ToUpper(std::string name) {
for (auto& c : name) c = std::toupper(c);
return name;
}
};
struct DiagnoseExplicitDefault : DiagnosticsVisitor {
DiagnoseExplicitDefault(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlStructuredParcelable& p) override {
for (const auto& var : p.GetFields()) {
CheckExplicitDefault(*var);
}
}
void Visit(const AidlUnionDecl& u) override {
AIDL_FATAL_IF(u.GetFields().empty(), u) << "The union '" << u.GetName() << "' has no fields.";
const auto& first = u.GetFields()[0];
CheckExplicitDefault(*first);
}
void CheckExplicitDefault(const AidlVariableDeclaration& v) {
if (v.IsDefaultUserSpecified()) return;
if (v.GetType().IsNullable()) return;
if (v.GetType().IsArray()) return;
const auto defined_type = v.GetType().GetDefinedType();
if (defined_type && defined_type->AsEnumDeclaration()) {
diag.Report(v.GetLocation(), DiagnosticID::enum_explicit_default)
<< "The enum field '" << v.GetName() << "' has no explicit value.";
return;
}
}
};
struct DiagnoseMixedOneway : DiagnosticsVisitor {
DiagnoseMixedOneway(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlInterface& i) override {
bool has_oneway = false;
bool has_twoway = false;
for (const auto& m : i.GetMethods()) {
if (!m->IsUserDefined()) continue;
if (Suppressed(*m)) continue;
if (m->IsOneway()) {
has_oneway = true;
} else {
has_twoway = true;
}
}
if (has_oneway && has_twoway) {
diag.Report(i.GetLocation(), DiagnosticID::mixed_oneway)
<< "The interface '" << i.GetName()
<< "' has both one-way and two-way methods. This makes it hard to reason about threading "
"of client code.";
}
}
bool Suppressed(const AidlMethod& m) const {
for (const auto& w : m.GetType().SuppressWarnings()) {
if (w == to_string(DiagnosticID::mixed_oneway)) {
return true;
}
}
return false;
}
};
struct DiagnoseOutArray : DiagnosticsVisitor {
DiagnoseOutArray(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlMethod& m) override {
for (const auto& a : m.GetArguments()) {
if (a->GetType().IsArray() && a->IsOut()) {
diag.Report(m.GetLocation(), DiagnosticID::out_array)
<< "The method '" << m.GetName() << "' an array output parameter '" << a->GetName()
<< "'. Instead prefer APIs like '" << a->GetType().Signature() << " " << m.GetName()
<< "(...).";
}
}
}
};
struct DiagnoseFileDescriptor : DiagnosticsVisitor {
DiagnoseFileDescriptor(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlTypeSpecifier& t) override {
if (t.GetName() == "FileDescriptor") {
diag.Report(t.GetLocation(), DiagnosticID::file_descriptor)
<< "Please use ParcelFileDescriptor instead of FileDescriptor.";
}
}
};
struct DiagnoseOutNullable : DiagnosticsVisitor {
DiagnoseOutNullable(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlArgument& a) override {
if (a.GetType().IsArray()) return;
if (a.IsOut() && a.GetType().IsNullable()) {
diag.Report(a.GetLocation(), DiagnosticID::out_nullable)
<< "'" << a.GetName() << "' is an " << a.GetDirectionSpecifier()
<< " parameter and also nullable. Some backends don't support setting null value to out "
"parameters. Please use it as return value or drop @nullable to avoid potential "
"errors.";
}
}
};
struct DiagnoseImports : DiagnosticsVisitor {
DiagnoseImports(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlDocument& doc) override {
auto collide_with_decls = [&](const auto& import) {
for (const auto& type : doc.DefinedTypes()) {
if (type->GetCanonicalName() != import && type->GetName() == SimpleName(import)) {
return true;
}
}
return false;
};
std::set<std::string> imported_names;
for (const auto& import : doc.Imports()) {
if (collide_with_decls(import)) {
diag.Report(doc.GetLocation(), DiagnosticID::unique_import)
<< SimpleName(import) << " is already defined in this file.";
}
auto [_, inserted] = imported_names.insert(SimpleName(import));
if (!inserted) {
diag.Report(doc.GetLocation(), DiagnosticID::unique_import)
<< SimpleName(import) << " is already imported.";
}
}
}
};
struct DiagnoseUntypedCollection : DiagnosticsVisitor {
DiagnoseUntypedCollection(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlTypeSpecifier& t) override {
if (t.GetName() == "List" || t.GetName() == "Map") {
if (!t.IsGeneric()) {
diag.Report(t.GetLocation(), DiagnosticID::untyped_collection)
<< "Use List<V> or Map<K,V> instead.";
}
}
}
};
struct DiagnosePermissionAnnotations : DiagnosticsVisitor {
DiagnosePermissionAnnotations(DiagnosticsContext& diag) : DiagnosticsVisitor(diag) {}
void Visit(const AidlInterface& intf) override {
const std::string diag_message =
" is not annotated for permissions. Declare which permissions are "
"required using @EnforcePermission. If permissions are manually "
"verified within the implementation, use @PermissionManuallyEnforced. "
"If no permissions are required, use @RequiresNoPermission.";
if (intf.IsPermissionAnnotated()) {
return;
}
const auto& methods = intf.GetMethods();
std::vector<size_t> methods_without_annotations;
size_t num_user_defined_methods = 0;
for (size_t i = 0; i < methods.size(); ++i) {
auto& m = methods[i];
if (!m->IsUserDefined()) continue;
num_user_defined_methods++;
if (m->GetType().IsPermissionAnnotated()) {
continue;
}
methods_without_annotations.push_back(i);
}
if (methods_without_annotations.size() == num_user_defined_methods) {
diag.Report(intf.GetLocation(), DiagnosticID::missing_permission_annotation)
<< intf.GetName() << diag_message
<< " This can be done for the whole interface or for each method.";
} else {
for (size_t i : methods_without_annotations) {
auto& m = methods[i];
diag.Report(m->GetLocation(), DiagnosticID::missing_permission_annotation)
<< m->GetName() << diag_message;
}
}
}
};
bool Diagnose(const AidlDocument& doc, const DiagnosticMapping& mapping) {
DiagnosticsContext diag(mapping);
DiagnoseInterfaceName{diag}.Check(doc);
DiagnoseInoutParameter{diag}.Check(doc);
DiagnoseConstName{diag}.Check(doc);
DiagnoseExplicitDefault{diag}.Check(doc);
DiagnoseMixedOneway{diag}.Check(doc);
DiagnoseOutArray{diag}.Check(doc);
DiagnoseFileDescriptor{diag}.Check(doc);
DiagnoseOutNullable{diag}.Check(doc);
DiagnoseImports{diag}.Check(doc);
DiagnoseUntypedCollection{diag}.Check(doc);
DiagnosePermissionAnnotations{diag}.Check(doc);
return diag.ErrorCount() == 0;
}
} // namespace aidl
} // namespace android