-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathanalyze_leaks.py
390 lines (323 loc) · 13.6 KB
/
analyze_leaks.py
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
# pyre-strict
import json
import keyword
import os
from dataclasses import dataclass
from pathlib import Path
from typing import cast, Dict, List, TextIO, Tuple
import click
from more_itertools import partition
from ..client import daemon_socket, find_directories, identifiers
from ..client.commands import daemon_query
from ..client.language_server import connections
from .callgraph_utilities import (
CallGraph,
DependencyGraph,
Entrypoints,
get_union_callgraph_format,
InputType,
JSON,
load_json_from_file,
Trace,
)
DEFAULT_WORKING_DIRECTORY: str = os.getcwd()
@dataclass(frozen=True)
class LeakAnalysisScriptError:
error_message: str
bad_value: JSON
def to_json(self) -> JSON:
return {"error_message": self.error_message, "bad_value": self.bad_value}
@dataclass(frozen=True)
class LeakAnalysisResult:
global_leaks: List[Dict[str, JSON]]
query_errors: List[JSON]
script_errors: List[LeakAnalysisScriptError]
def _script_errors_to_json(self) -> List[JSON]:
return [script_error.to_json() for script_error in self.script_errors]
def to_json(self) -> str:
return json.dumps(
{
"global_leaks": self.global_leaks,
"query_errors": self.query_errors,
"script_errors": self._script_errors_to_json(),
}
)
def is_valid_callee(callee: str) -> bool:
components = callee.strip().split(".")
is_valid_callee = all(
component.isidentifier() and not keyword.iskeyword(component)
for component in components
)
return is_valid_callee
def partition_valid_invalid_callees(callees: List[str]) -> Tuple[List[str], List[str]]:
invalid, valid = partition(is_valid_callee, callees)
return list(valid), list(invalid)
def prepare_issues_for_query(callees: List[str]) -> str:
return "global_leaks(" + ", ".join(callees) + ")"
def collect_pyre_query_results(
pyre_results: object, invalid_callees: List[str]
) -> LeakAnalysisResult:
script_errors: List[LeakAnalysisScriptError] = [
LeakAnalysisScriptError(
error_message="Given callee is invalid",
bad_value=invalid_callee,
)
for invalid_callee in invalid_callees
]
if not isinstance(pyre_results, dict):
raise RuntimeError(
f"Expected dict for Pyre query results, got {type(pyre_results)}: {pyre_results}"
)
response = pyre_results.get("response")
if not response:
raise RuntimeError("`response` key not in Pyre query results", pyre_results)
if not isinstance(pyre_results["response"], dict):
raise RuntimeError(
f"Expected response value type to be list, got {type(response)}: {response}"
)
global_leaks = response.get("global_leaks")
if global_leaks is None:
script_errors.append(
LeakAnalysisScriptError(
error_message="Expected `global_leaks` key to be present in response",
bad_value=response,
)
)
global_leaks = []
elif not isinstance(global_leaks, list):
script_errors.append(
LeakAnalysisScriptError(
error_message="Expected `global_leaks` to be a list of error JSON objects",
bad_value=global_leaks,
)
)
global_leaks = []
query_errors = response.get("query_errors")
if query_errors is None:
script_errors.append(
LeakAnalysisScriptError(
error_message="Expected `query_errors` key to be present in response",
bad_value=response,
)
)
query_errors = []
elif not isinstance(query_errors, list):
script_errors.append(
LeakAnalysisScriptError(
error_message="Expected `query_errors` to be a list of error JSON objects",
bad_value=query_errors,
)
)
query_errors = []
return LeakAnalysisResult(
global_leaks=global_leaks,
query_errors=query_errors,
script_errors=script_errors,
)
def find_issues(callees: List[str], search_start_path: Path) -> LeakAnalysisResult:
valid_callees, invalid_callees = partition_valid_invalid_callees(callees)
query_str = prepare_issues_for_query(valid_callees)
project_root = find_directories.find_global_and_local_root(search_start_path)
if not project_root:
raise ValueError(
f"Given project path {search_start_path} is not in a Pyre project"
)
local_relative_path = (
str(project_root.local_root.relative_to(project_root.global_root))
if project_root.local_root
else None
)
project_identifier = identifiers.get_project_identifier(
project_root.global_root, local_relative_path
)
socket_path = daemon_socket.get_socket_path(
project_identifier,
flavor=identifiers.PyreFlavor.CLASSIC,
)
try:
response = daemon_query.execute_query(socket_path, query_str)
collected_results = collect_pyre_query_results(
response.payload, invalid_callees
)
for leak in collected_results.global_leaks:
leak["path"] = str(
Path(cast(str, leak["path"])).relative_to(project_root.global_root)
)
collected_results = LeakAnalysisResult(
global_leaks=collected_results.global_leaks,
query_errors=collected_results.query_errors,
script_errors=collected_results.script_errors,
)
return collected_results
except connections.ConnectionFailure as e:
raise RuntimeError(
"A running Pyre server is required for queries to be responded. "
"Please run `pyre` first to set up a server."
) from e
def attach_trace_to_query_results(
pyre_results: LeakAnalysisResult, callables_and_traces: Dict[str, Trace]
) -> None:
for issue in pyre_results.global_leaks:
if "define" not in issue:
pyre_results.script_errors.append(
LeakAnalysisScriptError(
error_message="Key `define` not present in global leak result, skipping trace",
bad_value=issue,
)
)
continue
define = issue["define"]
if define not in callables_and_traces:
pyre_results.script_errors.append(
LeakAnalysisScriptError(
error_message="Define not known in analyzed callables, skipping trace",
bad_value=issue,
)
)
continue
trace = callables_and_traces[define]
issue["trace"] = cast(JSON, trace)
def validate_json_list(json_list: JSON, from_file: str, level: str) -> None:
if not isinstance(json_list, list):
raise ValueError(
f"Expected {level} value in {from_file} file to be a list, got: {type(json_list)}"
)
for i, value in enumerate(json_list):
if not isinstance(value, str):
raise ValueError(
f"Expected {level} list value in {from_file} at position {i} to be a string, \
got: {type(value)}: {value}"
)
def find_issues_in_callables(
callables_file: TextIO, project_path: str
) -> LeakAnalysisResult:
callables = load_json_from_file(callables_file, "CALLABLES_FILE")
validate_json_list(callables, "CALLABLES_FILE", "top level")
issues = find_issues(cast(List[str], callables), Path(project_path))
return issues
@click.group()
def analyze() -> None:
"""
Performs analyses over Pyre's results using a call graph and list of entrypoints.
"""
pass
@analyze.command()
@click.argument("callables_file", type=click.File("r"))
@click.option(
"--project-path",
type=str,
default=DEFAULT_WORKING_DIRECTORY,
help="The path to the project in which global leaks will be searched for. \
The given directory or parent directory must have a global .pyre_configuration. \
Default: current directory.",
)
def callable_leaks(
callables_file: TextIO,
project_path: str,
) -> None:
"""
Run local global leak analysis per callable given in the callables_file.
The output of this script will be a JSON object containing three keys:
- `global_leaks`: any global leaks that are returned from `pyre query "global_leaks(...)"` for
callable checked.
- `query_errors`: any errors that occurred during pyre's analysis, for example, no qualifier found
- `script_errors`: any errors that occurred during the analysis, for example, a definition not
found for a callable
CALLABLES_FILE: a file containing a JSON list of fully qualified paths of callables
Example usage: ./analyze_leaks.py -- callable-leaks <CALLABLES_FILE>
"""
issues = find_issues_in_callables(callables_file, project_path)
print(issues.to_json())
@analyze.command()
@click.option(
"--call-graph-kind-and-path",
type=(click.Choice(InputType.members(), case_sensitive=False), click.File("r")),
multiple=True,
required=True,
)
@click.argument("entrypoints_file", type=click.File("r"))
@click.option(
"--project-path",
type=str,
default=DEFAULT_WORKING_DIRECTORY,
help="The path to the project in which global leaks will be searched for. \
The given directory or parent directory must have a global .pyre_configuration. \
Default: current directory.",
)
def entrypoint_leaks(
call_graph_kind_and_path: Tuple[Tuple[str, TextIO], ...],
entrypoints_file: TextIO,
project_path: str,
) -> None:
"""
Find global leaks for the given entrypoints and their transitive callees.
The output of this script will be a JSON object containing three keys:
- `global_leaks`: any global leaks that are returned from `pyre query "global_leaks(...)"` for
callables checked.
- `query_errors`: any errors that occurred during pyre's analysis, for example, no qualifier found
- `script_errors`: any errors that occurred during the analysis, for example, a definition not
found for a callable
CALL_GRAPH_KIND_AND_PATH: a tuple of the following form (KIND, PATH) where
- KIND is a string specifying the format type of the call graph e.g. pyre/pysa/dynanmic
- PATH points to a JSON file which is a dict mapping caller qualified paths to a list of callee qualified paths (e.g. can be
return from `pyre analyze --dump-call-graph ...` or `pyre query "dump_call_graph()"`)
ENTRYPOINTS_FILE: a file containing a JSON list of qualified paths for entrypoints
Example usage: ./analyze_leaks.py -- entrypoint-leaks <ENTRYPOINTS_FILE> --call-graph-kind-and-path <KIND1> <CALL_GRAPH_1> --call-graph-kind-and-path <KIND2> <CALL_GRAPH2>
"""
entrypoints_json = load_json_from_file(entrypoints_file, "ENTRYPOINTS_FILE")
validate_json_list(entrypoints_json, "ENTRYPOINTS_FILE", "top-level")
input_format = get_union_callgraph_format(call_graph_kind_and_path)
entrypoints = Entrypoints(entrypoints_json, input_format.get_keys())
call_graph = CallGraph(input_format, entrypoints)
all_callables = call_graph.get_transitive_callees_and_traces()
issues = find_issues(list(all_callables.keys()), Path(project_path))
attach_trace_to_query_results(issues, all_callables)
print(issues.to_json())
@analyze.command()
@click.argument("issues_file", type=click.File("r"))
@click.argument("call_graph_file", type=click.File("r"))
@click.argument("entrypoints_file", type=click.File("r"))
@click.option(
"--call-graph-kind",
type=click.Choice(InputType.members(), case_sensitive=False),
default="PYRE",
help="The format of the call_graph_file, see CALL_GRAPH_FILE for more info.",
)
def trace(
issues_file: TextIO,
call_graph_file: TextIO,
entrypoints_file: TextIO,
call_graph_kind: str,
) -> None:
"""
Get a list of traces from callable to entrypoint.
The output of this script will be a JSON object mapping a callee to a list of strings
representing the path from the callee to an entrypoint. The values of the output object
will be one of the following:
- List[str]: the path from the callee to the entrypoint
- empty List: no path mapping the callee to any entrypoint
- None: the callee given is not present in the dependency graph
ISSUES_FILE: a file containing a JSON list of callee strings to find traces for
CALL_GRAPH_FILE: a file containing a JSON dict mapping caller strings to a list of callee strings
ENTRYPOINTS_FILE: a file containing a JSON list of caller strings, which represent entrypoints
transitive callees will be found
"""
# TODO (T141832117): consume method override information to perform traces on call graphs
# with overrides
issues = load_json_from_file(issues_file, "ISSUES_FILE")
call_graph_data = load_json_from_file(call_graph_file, "CALL_GRAPH_FILE")
entrypoints_json = load_json_from_file(entrypoints_file, "ENTRYPOINTS_FILE")
validate_json_list(entrypoints_json, "ENTRYPOINTS_FILE", "top-level")
input_format_type = InputType[call_graph_kind.upper()].value
input_format = input_format_type(call_graph_data)
entrypoints = Entrypoints(entrypoints_json, input_format.get_keys())
dependency_graph = DependencyGraph(input_format, entrypoints)
validate_json_list(issues, "ISSUES_FILE", "top level")
found_paths = dependency_graph.find_traces_for_callees(cast(List[str], issues))
print(json.dumps(found_paths))
if __name__ == "__main__":
analyze()