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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
use std::{
env,
fs::File,
io::{BufReader, BufWriter},
path::PathBuf,
process::{exit, Command, ExitStatus},
};
#[cfg(unix)]
use std::os::unix::process::ExitStatusExt;
#[cfg(target_os = "linux")]
use inferno::collapse::perf::{Folder, Options as CollapseOptions};
#[cfg(not(target_os = "linux"))]
use inferno::collapse::dtrace::{Folder, Options as CollapseOptions};
#[cfg(unix)]
use signal_hook::consts::{SIGINT, SIGTERM};
use anyhow::{anyhow, Context};
use clap::Args;
use inferno::{
collapse::Collapse,
flamegraph::color::Palette,
flamegraph::{defaults, from_reader},
};
pub enum Workload {
Command(Vec<String>),
Pid(u32),
ReadPerf(String),
}
#[cfg(target_os = "linux")]
mod arch {
use super::*;
pub const SPAWN_ERROR: &str = "could not spawn perf";
pub const WAIT_ERROR: &str = "unable to wait for perf child command to exit";
pub(crate) fn initial_command(
workload: Workload,
sudo: bool,
freq: Option<u32>,
custom_cmd: Option<String>,
verbose: bool,
) -> Option<String> {
let perf = env::var("PERF").unwrap_or_else(|_| "perf".to_string());
let mut command = if sudo {
let mut c = Command::new("sudo");
c.arg(perf);
c
} else {
Command::new(perf)
};
let args = custom_cmd.unwrap_or(format!(
"record -F {} --call-graph dwarf,16384 -g",
freq.unwrap_or(997)
));
let mut perf_output = None;
let mut args = args.split_whitespace();
while let Some(arg) = args.next() {
command.arg(arg);
if arg == "-o" {
let next_arg = args.next().expect("missing '-o' argument");
command.arg(next_arg);
perf_output = Some(next_arg.to_string());
}
}
match workload {
Workload::Command(c) => {
command.args(&c);
}
Workload::Pid(p) => {
command.arg("-p");
command.arg(p.to_string());
}
Workload::ReadPerf(_) => (),
}
run(command, verbose);
perf_output
}
pub fn output(
perf_output: Option<String>,
script_no_inline: bool,
sudo: bool,
) -> anyhow::Result<Vec<u8>> {
if sudo {
if let Ok(user) = env::var("USER") {
Command::new("sudo")
.args(["chown", user.as_str(), "perf.data"])
.spawn()
.expect(arch::SPAWN_ERROR)
.wait()
.expect(arch::WAIT_ERROR);
}
}
let perf = env::var("PERF").unwrap_or_else(|_| "perf".to_string());
let mut command = Command::new(perf);
command.arg("script");
if script_no_inline {
command.arg("--no-inline");
}
if let Some(perf_output) = perf_output {
command.arg("-i");
command.arg(perf_output);
}
Ok(command
.output()
.context("unable to call perf script")?
.stdout)
}
}
#[cfg(not(target_os = "linux"))]
mod arch {
use super::*;
pub const SPAWN_ERROR: &str = "could not spawn dtrace";
pub const WAIT_ERROR: &str = "unable to wait for dtrace child command to exit";
#[cfg(target_os = "windows")]
pub const BLONDIE_ERROR: &str = "could not find dtrace and could not profile using blondie";
pub(crate) fn initial_command(
workload: Workload,
sudo: bool,
freq: Option<u32>,
custom_cmd: Option<String>,
verbose: bool,
) -> Option<String> {
let dtrace = env::var("DTRACE").unwrap_or_else(|_| "dtrace".to_string());
let mut command = if sudo {
let mut c = Command::new("sudo");
c.arg(&dtrace);
c
} else {
Command::new(&dtrace)
};
let dtrace_script = custom_cmd.unwrap_or(format!(
"profile-{} /pid == $target/ \
{{ @[ustack(100)] = count(); }}",
freq.unwrap_or(997)
));
command.arg("-x");
command.arg("ustackframes=100");
command.arg("-n");
command.arg(&dtrace_script);
command.arg("-o");
command.arg("cargo-flamegraph.stacks");
match workload {
Workload::Command(c) => {
let mut escaped = String::new();
for (i, arg) in c.iter().enumerate() {
if i > 0 {
escaped.push(' ');
}
escaped.push_str(&arg.replace(' ', "\\ "));
}
command.arg("-c");
command.arg(&escaped);
#[cfg(target_os = "windows")]
{
use std::process::Stdio;
let mut help_test = Command::new(&dtrace);
let dtrace_found = help_test
.arg("--help")
.stderr(Stdio::null())
.stdout(Stdio::null())
.status()
.is_ok();
if !dtrace_found {
let mut command_builder = Command::new(&c[0]);
command_builder.args(&c[1..]);
print_command(&command_builder, verbose);
let trace = match blondie::trace_command(command_builder, false) {
Err(err) => {
eprintln!("{}: {:?}", BLONDIE_ERROR, err);
exit(1);
}
Ok(trace) => trace,
};
let f = std::fs::File::create("./cargo-flamegraph.stacks").unwrap();
let mut f = std::io::BufWriter::new(f);
trace.write_dtrace(&mut f).unwrap();
return None;
}
}
}
Workload::Pid(p) => {
command.arg("-p");
command.arg(p.to_string());
}
Workload::ReadPerf(_) => (),
}
run(command, verbose);
None
}
pub fn output(
_: Option<String>,
script_no_inline: bool,
sudo: bool,
) -> anyhow::Result<Vec<u8>> {
if script_no_inline {
return Err(anyhow::anyhow!("--no-inline is only supported on Linux"));
}
if sudo {
#[cfg(unix)]
if let Ok(user) = env::var("USER") {
Command::new("sudo")
.args(["chown", user.as_str(), "cargo-flamegraph.stacks"])
.spawn()
.expect(arch::SPAWN_ERROR)
.wait()
.expect(arch::WAIT_ERROR);
}
}
let mut buf = vec![];
let mut f = File::open("cargo-flamegraph.stacks")
.context("failed to open dtrace output file 'cargo-flamegraph.stacks'")?;
use std::io::Read;
f.read_to_end(&mut buf)
.context("failed to read dtrace expected output file 'cargo-flamegraph.stacks'")?;
std::fs::remove_file("cargo-flamegraph.stacks")
.context("unable to remove temporary file 'cargo-flamegraph.stacks'")?;
let string = String::from_utf8_lossy(&buf);
let reencoded_buf = string.as_bytes().to_owned();
if reencoded_buf != buf {
println!("Lossily converted invalid utf-8 found in cargo-flamegraph.stacks");
}
Ok(reencoded_buf)
}
}
fn run(mut command: Command, verbose: bool) {
print_command(&command, verbose);
let mut recorder = command.spawn().expect(arch::SPAWN_ERROR);
let exit_status = recorder.wait().expect(arch::WAIT_ERROR);
if terminated_by_error(exit_status) {
eprintln!("failed to sample program");
exit(1);
}
}
#[cfg(unix)]
fn terminated_by_error(status: ExitStatus) -> bool {
status
.signal()
.map_or(true, |code| code != SIGINT && code != SIGTERM)
&& !status.success()
}
#[cfg(not(unix))]
fn terminated_by_error(status: ExitStatus) -> bool {
!status.success()
}
fn print_command(cmd: &Command, verbose: bool) {
if verbose {
println!("command {:?}", cmd);
}
}
pub fn generate_flamegraph_for_workload(workload: Workload, opts: Options) -> anyhow::Result<()> {
#[cfg(unix)]
let handler = unsafe {
signal_hook::low_level::register(SIGINT, || {}).expect("cannot register signal handler")
};
let perf_output = if let Workload::ReadPerf(perf_file) = workload {
Some(perf_file)
} else {
arch::initial_command(
workload,
opts.root,
opts.frequency,
opts.custom_cmd,
opts.verbose,
)
};
#[cfg(unix)]
signal_hook::low_level::unregister(handler);
let output = arch::output(perf_output, opts.script_no_inline, opts.root)?;
let perf_reader = BufReader::new(&*output);
let mut collapsed = vec![];
let collapsed_writer = BufWriter::new(&mut collapsed);
#[allow(unused_mut)]
let mut collapse_options = CollapseOptions::default();
#[cfg(target_os = "linux")]
{
collapse_options.skip_after = opts.flamegraph_options.skip_after.clone();
}
Folder::from(collapse_options)
.collapse(perf_reader, collapsed_writer)
.context("unable to collapse generated profile data")?;
let collapsed_reader = BufReader::new(&*collapsed);
let flamegraph_filename = opts.output;
println!("writing flamegraph to {:?}", flamegraph_filename);
let flamegraph_file = File::create(&flamegraph_filename)
.context("unable to create flamegraph.svg output file")?;
let flamegraph_writer = BufWriter::new(flamegraph_file);
let mut inferno_opts = opts.flamegraph_options.into_inferno();
from_reader(&mut inferno_opts, collapsed_reader, flamegraph_writer)
.context("unable to generate a flamegraph from the collapsed stack data")?;
if opts.open {
opener::open(&flamegraph_filename).context(format!(
"failed to open '{}'",
flamegraph_filename.display()
))?;
}
Ok(())
}
#[derive(Debug, Args)]
pub struct Options {
#[clap(short, long)]
pub verbose: bool,
#[clap(short, long, default_value = "flamegraph.svg", parse(from_os_str))]
output: PathBuf,
#[clap(long)]
open: bool,
#[clap(long)]
root: bool,
#[clap(short = 'F', long = "freq")]
frequency: Option<u32>,
#[clap(short, long = "cmd")]
custom_cmd: Option<String>,
#[clap(flatten)]
flamegraph_options: FlamegraphOptions,
#[clap(long = "no-inline")]
script_no_inline: bool,
}
impl Options {
pub fn check(&self) -> anyhow::Result<()> {
match self.frequency.is_some() && self.custom_cmd.is_some() {
true => Err(anyhow!(
"Cannot pass both a custom command and a frequency."
)),
false => Ok(()),
}
}
}
#[derive(Debug, Args)]
pub struct FlamegraphOptions {
#[clap(long)]
pub deterministic: bool,
#[clap(short, long)]
pub inverted: bool,
#[clap(long)]
pub reverse: bool,
#[clap(long, value_name = "STRING")]
pub notes: Option<String>,
#[clap(
long,
default_value = &defaults::str::MIN_WIDTH,
value_name = "FLOAT"
)]
pub min_width: f64,
#[clap(long)]
pub image_width: Option<usize>,
#[clap(
long,
possible_values = [
"hot", "mem", "io", "red", "green", "blue", "aqua", "yellow",
"purple", "orange", "wakeup", "java", "perl", "js", "rust"
]
)]
pub palette: Option<Palette>,
#[cfg(target_os = "linux")]
#[clap(long, value_name = "FUNCTION")]
pub skip_after: Vec<String>,
#[clap(long = "flamechart", conflicts_with = "reverse")]
pub flame_chart: bool,
}
impl FlamegraphOptions {
pub fn into_inferno(self) -> inferno::flamegraph::Options<'static> {
let mut options = inferno::flamegraph::Options::default();
options.deterministic = self.deterministic;
if self.inverted {
options.direction = inferno::flamegraph::Direction::Inverted;
}
options.reverse_stack_order = self.reverse;
options.notes = self.notes.unwrap_or_default();
options.min_width = self.min_width;
options.image_width = self.image_width;
if let Some(palette) = self.palette {
options.colors = palette;
}
options.flame_chart = self.flame_chart;
options
}
}