-
Notifications
You must be signed in to change notification settings - Fork 259
/
Copy pathmain.rs
398 lines (356 loc) · 12.2 KB
/
main.rs
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
391
392
393
394
395
396
397
398
#![feature(min_specialization)]
#![feature(rustc_private)]
#![feature(map_try_insert)]
extern crate rustc_ast;
extern crate rustc_const_eval;
extern crate rustc_data_structures;
extern crate rustc_driver;
extern crate rustc_hir;
extern crate rustc_index;
extern crate rustc_interface;
extern crate rustc_middle;
extern crate rustc_mir_build;
extern crate rustc_mir_transform;
extern crate rustc_serialize;
extern crate rustc_session;
extern crate rustc_span;
extern crate rustc_target;
mod assert;
mod builder;
mod graph;
mod info;
mod query;
mod util;
use builder::{construct_pdg, read_event_log};
use c2rust_analysis_rt::{events::Event, metadata::Metadata};
use clap::{Parser, ValueEnum};
use color_eyre::eyre;
use graph::Graphs;
use info::add_info;
use std::{
fmt::{self, Display, Formatter},
path::{Path, PathBuf},
sync::Once,
};
use crate::builder::read_metadata;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, ValueEnum)]
pub enum ToPrint {
Graphs,
Counts,
Events,
LatestAssignments,
WritePermissions,
Metadata,
}
impl Display for ToPrint {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
f.write_str(self.to_possible_value().unwrap().get_name())
}
}
pub struct Pdg {
pub events: Vec<Event>,
pub metadata: Metadata,
pub graphs: Graphs,
}
impl Pdg {
pub fn new(metadata_path: &Path, event_log_path: &Path) -> eyre::Result<Self> {
let events = read_event_log(event_log_path)?;
let metadata = read_metadata(metadata_path)?;
let mut graphs = construct_pdg(&events, &metadata);
add_info(&mut graphs);
graphs.remove_addr_of_local_sources();
Ok(Self {
events,
metadata,
graphs,
})
}
pub fn repr<'a>(&'a self, to_print: &'a [ToPrint]) -> PdgRepr<'a> {
PdgRepr {
pdg: self,
to_print,
}
}
}
pub struct PdgRepr<'a> {
pub pdg: &'a Pdg,
pub to_print: &'a [ToPrint],
}
impl Display for PdgRepr<'_> {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
let Self {
pdg:
Pdg {
events,
metadata,
graphs,
},
to_print,
} = self;
let should_print = |e| to_print.contains(&e);
if should_print(ToPrint::Metadata) {
writeln!(f, "{metadata:#?}")?;
}
if should_print(ToPrint::Events) {
for event in events.iter() {
let mir_loc = metadata.get(event.mir_loc);
let kind = &event.kind;
writeln!(f, "{mir_loc:?} -> {kind:?}")?;
}
}
if should_print(ToPrint::LatestAssignments) {
for ((func_hash, local), p) in &graphs.latest_assignment {
let func = &metadata.functions[func_hash];
writeln!(f, "({func}:{local:?}) => {p:?}")?;
}
}
if should_print(ToPrint::Graphs) || should_print(ToPrint::WritePermissions) {
for graph in &graphs.graphs {
if should_print(ToPrint::Graphs) {
writeln!(f, "{graph}")?;
}
if should_print(ToPrint::WritePermissions) {
let needs_write = graph
.needs_write_permission()
.map(|node_id| node_id.as_usize())
.collect::<Vec<_>>();
writeln!(f, "nodes_that_need_write = {needs_write:?}")?;
}
writeln!(f)?;
}
}
if should_print(ToPrint::Counts) {
let num_graphs = graphs.graphs.len();
let num_nodes = graphs
.graphs
.iter()
.map(|graph| graph.nodes.len())
.sum::<usize>();
writeln!(f, "num_graphs = {num_graphs}")?;
writeln!(f, "num_nodes = {num_nodes}")?;
}
Ok(())
}
}
/// Construct and query a PDG from an instrumented program's event log.
#[derive(Debug, Parser)]
#[clap(author, version, about, long_about = None)]
pub struct Args {
/// Path to an event log from a run of an instrumented program.
#[clap(long, value_parser)]
event_log: PathBuf,
/// Path to the instrumented program's metadata generated at compile/instrumentation time.
#[clap(long, value_parser)]
metadata: PathBuf,
/// What to print.
#[clap(long, value_parser, default_value = "graphs")]
print: Vec<ToPrint>,
}
static INIT: Once = Once::new();
/// Initialize things before running any code (in [`main`] or tests).
/// Call this as the first thing.
/// Will do nothing if [`init`] has already run.
pub fn init() {
INIT.call_once(|| {
// Throws an error if it's already been installed,
// but if it's already installed, then we're good.
// Shouldn't happen since we're inside of [`Once::call_once`],
// but good to be safe, as there's no downside.
let _: eyre::Result<()> = color_eyre::install();
env_logger::init();
});
}
fn main() -> eyre::Result<()> {
init();
let args = Args::parse();
let pdg = Pdg::new(&args.metadata, &args.event_log)?;
pdg.graphs.assert_all_tests();
let repr = pdg.repr(&args.print);
println!("{repr}");
Ok(())
}
#[cfg(test)]
mod tests {
use std::{
env,
ffi::OsStr,
fmt::Display,
path::{Path, PathBuf},
process::Command,
};
use c2rust_analysis_rt::runtime::backend::BackendKind;
use c2rust_analysis_rt::{parse::AsStr, runtime::scoped_runtime::RuntimeKind};
use color_eyre::eyre::{self, ensure, eyre, Context};
use crate::{Pdg, ToPrint};
pub enum Profile {
Debug,
Release,
// Will be used by future test code.
#[allow(dead_code)]
Other(String),
}
impl Profile {
pub fn name(&self) -> &str {
use Profile::*;
match self {
Debug => "dev",
Release => "release",
Other(other) => other.as_str(),
}
}
pub fn dir_name(&self) -> &str {
use Profile::*;
match self {
Debug => "debug",
Release => "release",
Other(other) => other.as_str(),
}
}
}
impl From<String> for Profile {
fn from(profile: String) -> Self {
use Profile::*;
match profile.as_str() {
"debug" => Debug,
"release" => Release,
_ => Other(profile),
}
}
}
impl Profile {
pub fn current() -> eyre::Result<Self> {
let profile =
env::var("PROFILE").wrap_err(eyre!("should be set by `build.rs` from `cargo`"))?;
Ok(profile.into())
}
}
pub fn repo_dir() -> eyre::Result<PathBuf> {
let crate_dir = env::var("CARGO_MANIFEST_DIR")?;
let repo_dir = Path::new(&crate_dir)
.parent()
.ok_or_else(|| eyre!("`$CARGO_MANIFEST_DIR` should have a parent"))?;
Ok(repo_dir.to_owned())
}
/// Instrument and run a test crate and return a snapshot (an `impl `[`Display`]) of its [`Pdg`].
///
/// # Args
/// * `test_crate_dir` is the directory of the test crate.
/// It must contain a `Cargo.toml`.
///
/// * `profile` is the [`Profile`] the test crate is compiled and run as.
///
/// * `to_print` are the [`ToPrint`]s that should be printed in the [`Pdg`] snapshot.
///
/// # Overview
///
/// This instruments the `test_crate_dir` crate using `c2rust-instrument` through `cargo run --bin c2rust-instrument`.
/// It is used through a separate binary and its CLI because `c2rust-instrument`
/// must have control over its `main` in order to invoke itself as a `$RUSTC_WRAPPER`.
///
/// The instrumented binary, compiled with `profile`,
/// is then run via a `cargo run`, but done through `c2rust-instrument ... -- run`.
///
/// Then the metadata and event log files created are read in by the `c2rust-pdg` code here.
/// All assertion tests are checked on the [`Pdg`]'s [`Graphs`](crate::Graphs).
/// Then, finally, the [`Pdg`] is snapshotted into an `impl `[`Display`], printing the [`ToPrint`]s in `to_print`.
///
/// # Details
///
/// `c2rust-instrument` is compiled with the same `$PROFILE`/`--profile`/`--release` that this current crate is.
///
/// The metadata file and event log are placed in the same directory as the test binary built.
/// Thus, there should be no conflicts when building with different [`Profile`]s simultaneously.
///
/// `--set-runtime` and `--runtime-path` are also passed to `c2rust-instrument`,
/// setting the runtime dependency to the correct path in case it's out-of-date.
///
/// `$INSTRUMENT_OUTPUT_APPEND` is set to `false` as this runs the test binary only once,
/// so appending is not yet necessary.
fn pdg_snapshot(
test_crate_dir: &Path,
profile: Profile,
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
to_print: &[ToPrint],
runtime_kind: RuntimeKind,
) -> eyre::Result<impl Display> {
let runtime_path = repo_dir()?.join("analysis/runtime");
let manifest_path = test_crate_dir.join("Cargo.toml");
let target_dir = test_crate_dir.join("instrument.target");
let exe_dir = target_dir.join(profile.dir_name());
let metadata_path = exe_dir.join("metadata.bc");
let event_log_path = exe_dir.join("event.log.bc");
let mut cmd = Command::new("cargo");
cmd.current_dir(repo_dir()?)
.args(&[
"run",
"--bin",
"c2rust-instrument",
"--profile",
// Compile `c2rust-instrument` with the same profile as `c2rust-pdg` was.
// Makes sense to match them, plus that one is probably already compiled.
Profile::current()?.name(),
"--",
"--metadata",
])
.arg(&metadata_path)
.args(&["--runtime-path"])
.arg(&runtime_path)
.args(&["--", "run", "--manifest-path"])
.arg(&manifest_path)
.args(&["--profile", profile.name()])
.arg("--")
.args(args)
.env("METADATA_FILE", &metadata_path)
.env("INSTRUMENT_RUNTIME", runtime_kind.as_str())
.env("INSTRUMENT_BACKEND", BackendKind::Log.as_str())
.env("INSTRUMENT_OUTPUT", &event_log_path)
.env("INSTRUMENT_OUTPUT_APPEND", "false");
let status = cmd.status()?;
ensure!(status.success(), eyre!("{cmd:?} failed: {status}"));
let pdg = Pdg::new(&metadata_path, &event_log_path)?;
pdg.graphs.assert_all_tests();
let repr = pdg.repr(to_print);
Ok(repr.to_string())
}
fn analysis_tests_misc_pdg_snapshot(
profile: Profile,
runtime_kind: RuntimeKind,
) -> eyre::Result<impl Display> {
pdg_snapshot(
repo_dir()?.join("analysis/tests/misc").as_path(),
profile,
&[] as &[&OsStr],
{
use ToPrint::*;
&[Graphs, WritePermissions, Counts]
},
runtime_kind,
)
}
use crate::init;
#[test]
fn analysis_tests_misc_pdg_snapshot_debug() -> eyre::Result<()> {
init();
let pdg = analysis_tests_misc_pdg_snapshot(Profile::Debug, Default::default())?;
insta::assert_display_snapshot!(pdg);
Ok(())
}
#[test]
fn analysis_tests_misc_pdg_snapshot_release() -> eyre::Result<()> {
init();
let pdg = analysis_tests_misc_pdg_snapshot(Profile::Release, Default::default())?;
insta::assert_display_snapshot!(pdg);
Ok(())
}
#[test]
fn analysis_tests_misc_miri() -> eyre::Result<()> {
init();
let mut cmd = Command::new("cargo");
cmd.current_dir(repo_dir()?.join("analysis/tests/misc"))
.args(&["miri", "run", "--features", "miri"])
.env("MIRIFLAGS", "");
let status = cmd.status()?;
ensure!(status.success(), eyre!("{cmd:?} failed: {status}"));
Ok(())
}
}