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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
use crate::raw_data::RawData;
use crate::utils::HexValue;
use crate::{
constants, CommonData, CpuMode, Endianness, RecordIdParseInfo, RecordParseInfo, RecordType,
SampleRecord,
};
use byteorder::{BigEndian, ByteOrder, LittleEndian};
use std::fmt;
pub fn get_record_identifier<T: ByteOrder>(
record_type: RecordType,
mut data: RawData,
sample_id_all: bool,
) -> Option<u64> {
if record_type.is_user_type() {
None
} else if record_type == RecordType::SAMPLE {
data.read_u64::<T>().ok()
} else if sample_id_all {
let id_offset_from_start = data.len().checked_sub(8)?;
data.skip(id_offset_from_start).ok()?;
data.read_u64::<T>().ok()
} else {
None
}
}
pub fn get_record_id<T: ByteOrder>(
record_type: RecordType,
mut data: RawData,
parse_info: &RecordIdParseInfo,
) -> Option<u64> {
if record_type.is_user_type() {
return None;
}
if record_type == RecordType::SAMPLE {
if let Some(id_offset_from_start) = parse_info.sample_record_id_offset_from_start {
data.skip(id_offset_from_start as usize).ok()?;
data.read_u64::<T>().ok()
} else {
None
}
} else if let Some(id_offset_from_end) = parse_info.nonsample_record_id_offset_from_end {
let id_offset_from_start = data.len().checked_sub(id_offset_from_end as usize)?;
data.skip(id_offset_from_start).ok()?;
data.read_u64::<T>().ok()
} else {
None
}
}
pub fn get_record_timestamp<T: ByteOrder>(
record_type: RecordType,
mut data: RawData,
parse_info: &RecordParseInfo,
) -> Option<u64> {
if record_type.is_user_type() {
return None;
}
if record_type == RecordType::SAMPLE {
if let Some(time_offset_from_start) = parse_info.sample_record_time_offset_from_start {
data.skip(time_offset_from_start as usize).ok()?;
data.read_u64::<T>().ok()
} else {
None
}
} else if let Some(time_offset_from_end) = parse_info.nonsample_record_time_offset_from_end {
let time_offset_from_start = data.len().checked_sub(time_offset_from_end as usize)?;
data.skip(time_offset_from_start).ok()?;
data.read_u64::<T>().ok()
} else {
None
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
#[allow(clippy::large_enum_variant)]
#[non_exhaustive]
pub enum EventRecord<'a> {
Sample(SampleRecord<'a>),
Comm(CommOrExecRecord<'a>),
Exit(ForkOrExitRecord),
Fork(ForkOrExitRecord),
Mmap(MmapRecord<'a>),
Mmap2(Mmap2Record<'a>),
Lost(LostRecord),
Throttle(ThrottleRecord),
Unthrottle(ThrottleRecord),
ContextSwitch(ContextSwitchRecord),
Raw(RawEventRecord<'a>),
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ForkOrExitRecord {
pub pid: i32,
pub ppid: i32,
pub tid: i32,
pub ptid: i32,
pub timestamp: u64,
}
impl ForkOrExitRecord {
pub fn parse<T: ByteOrder>(data: RawData) -> Result<Self, std::io::Error> {
let mut cur = data;
let pid = cur.read_i32::<T>()?;
let ppid = cur.read_i32::<T>()?;
let tid = cur.read_i32::<T>()?;
let ptid = cur.read_i32::<T>()?;
let timestamp = cur.read_u64::<T>()?;
Ok(Self {
pid,
ppid,
tid,
ptid,
timestamp,
})
}
}
#[derive(Clone, PartialEq, Eq)]
pub struct CommOrExecRecord<'a> {
pub pid: i32,
pub tid: i32,
pub name: RawData<'a>,
pub is_execve: bool,
}
impl<'a> CommOrExecRecord<'a> {
pub fn parse<T: ByteOrder>(data: RawData<'a>, misc: u16) -> Result<Self, std::io::Error> {
let mut cur = data;
let pid = cur.read_i32::<T>()?;
let tid = cur.read_i32::<T>()?;
let name = cur.read_string().unwrap_or(cur);
let is_execve = misc & constants::PERF_RECORD_MISC_COMM_EXEC != 0;
Ok(Self {
pid,
tid,
name,
is_execve,
})
}
}
impl<'a> fmt::Debug for CommOrExecRecord<'a> {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
use std::str;
let mut map = fmt.debug_map();
map.entry(&"pid", &self.pid).entry(&"tid", &self.tid);
if let Ok(string) = str::from_utf8(&self.name.as_slice()) {
map.entry(&"name", &string);
} else {
map.entry(&"name", &self.name);
}
map.entry(&"is_execve", &self.is_execve);
map.finish()
}
}
#[derive(Clone, PartialEq, Eq)]
pub struct MmapRecord<'a> {
pub pid: i32,
pub tid: i32,
pub address: u64,
pub length: u64,
pub page_offset: u64,
pub is_executable: bool,
pub cpu_mode: CpuMode,
pub path: RawData<'a>,
}
impl<'a> MmapRecord<'a> {
pub fn parse<T: ByteOrder>(data: RawData<'a>, misc: u16) -> Result<Self, std::io::Error> {
let mut cur = data;
let pid = cur.read_i32::<T>()?;
let tid = cur.read_i32::<T>()?;
let address = cur.read_u64::<T>()?;
let length = cur.read_u64::<T>()?;
let page_offset = cur.read_u64::<T>()?;
let path = cur.read_string().unwrap_or(cur);
let is_executable = misc & constants::PERF_RECORD_MISC_MMAP_DATA == 0;
Ok(MmapRecord {
pid,
tid,
address,
length,
page_offset,
is_executable,
cpu_mode: CpuMode::from_misc(misc),
path,
})
}
}
impl<'a> fmt::Debug for MmapRecord<'a> {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
fmt.debug_map()
.entry(&"pid", &self.pid)
.entry(&"tid", &self.tid)
.entry(&"address", &HexValue(self.address))
.entry(&"length", &HexValue(self.length))
.entry(&"page_offset", &HexValue(self.page_offset))
.entry(&"cpu_mode", &self.cpu_mode)
.entry(&"path", &&*String::from_utf8_lossy(&self.path.as_slice()))
.finish()
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Mmap2FileId {
InodeAndVersion(Mmap2InodeAndVersion),
BuildId(Vec<u8>),
}
#[derive(Clone, PartialEq, Eq)]
pub struct Mmap2Record<'a> {
pub pid: i32,
pub tid: i32,
pub address: u64,
pub length: u64,
pub page_offset: u64,
pub file_id: Mmap2FileId,
pub protection: u32,
pub flags: u32,
pub cpu_mode: CpuMode,
pub path: RawData<'a>,
}
impl<'a> Mmap2Record<'a> {
pub fn parse<T: ByteOrder>(data: RawData<'a>, misc: u16) -> Result<Self, std::io::Error> {
let mut cur = data;
let pid = cur.read_i32::<T>()?;
let tid = cur.read_i32::<T>()?;
let address = cur.read_u64::<T>()?;
let length = cur.read_u64::<T>()?;
let page_offset = cur.read_u64::<T>()?;
let file_id = if misc & constants::PERF_RECORD_MISC_MMAP_BUILD_ID != 0 {
let build_id_len = cur.read_u8()?;
assert!(build_id_len <= 20);
let _align = cur.read_u8()?;
let _align = cur.read_u16::<T>()?;
let mut build_id_bytes = [0; 20];
cur.read_exact(&mut build_id_bytes)?;
Mmap2FileId::BuildId(build_id_bytes[..build_id_len as usize].to_owned())
} else {
let major = cur.read_u32::<T>()?;
let minor = cur.read_u32::<T>()?;
let inode = cur.read_u64::<T>()?;
let inode_generation = cur.read_u64::<T>()?;
Mmap2FileId::InodeAndVersion(Mmap2InodeAndVersion {
major,
minor,
inode,
inode_generation,
})
};
let protection = cur.read_u32::<T>()?;
let flags = cur.read_u32::<T>()?;
let path = cur.read_string().unwrap_or(cur);
Ok(Mmap2Record {
pid,
tid,
address,
length,
page_offset,
file_id,
protection,
flags,
cpu_mode: CpuMode::from_misc(misc),
path,
})
}
}
impl<'a> fmt::Debug for Mmap2Record<'a> {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
fmt.debug_map()
.entry(&"pid", &self.pid)
.entry(&"tid", &self.tid)
.entry(&"address", &HexValue(self.address))
.entry(&"length", &HexValue(self.length))
.entry(&"page_offset", &HexValue(self.page_offset))
.entry(&"protection", &HexValue(self.protection as _))
.entry(&"flags", &HexValue(self.flags as _))
.entry(&"cpu_mode", &self.cpu_mode)
.entry(&"path", &&*String::from_utf8_lossy(&self.path.as_slice()))
.finish()
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Mmap2InodeAndVersion {
pub major: u32,
pub minor: u32,
pub inode: u64,
pub inode_generation: u64,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct LostRecord {
pub id: u64,
pub count: u64,
}
impl LostRecord {
pub fn parse<T: ByteOrder>(data: RawData) -> Result<Self, std::io::Error> {
let mut cur = data;
let id = cur.read_u64::<T>()?;
let count = cur.read_u64::<T>()?;
Ok(LostRecord { id, count })
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ThrottleRecord {
pub id: u64,
pub timestamp: u64,
}
impl ThrottleRecord {
pub fn parse<T: ByteOrder>(data: RawData) -> Result<Self, std::io::Error> {
let mut cur = data;
let timestamp = cur.read_u64::<T>()?;
let id = cur.read_u64::<T>()?;
Ok(ThrottleRecord { id, timestamp })
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum ContextSwitchRecord {
In {
prev_pid: Option<i32>,
prev_tid: Option<i32>,
},
Out {
next_pid: Option<i32>,
next_tid: Option<i32>,
preempted: TaskWasPreempted,
},
}
impl ContextSwitchRecord {
pub fn from_misc(misc: u16) -> Self {
Self::from_misc_pid_tid(misc, None, None)
}
pub fn parse_cpu_wide<T: ByteOrder>(data: RawData, misc: u16) -> Result<Self, std::io::Error> {
let mut cur = data;
let pid = cur.read_i32::<T>()?;
let tid = cur.read_i32::<T>()?;
Ok(Self::from_misc_pid_tid(misc, Some(pid), Some(tid)))
}
pub fn from_misc_pid_tid(misc: u16, pid: Option<i32>, tid: Option<i32>) -> Self {
let is_out = misc & constants::PERF_RECORD_MISC_SWITCH_OUT != 0;
if is_out {
let is_out_preempt = misc & constants::PERF_RECORD_MISC_SWITCH_OUT_PREEMPT != 0;
ContextSwitchRecord::Out {
next_pid: pid,
next_tid: tid,
preempted: if is_out_preempt {
TaskWasPreempted::Yes
} else {
TaskWasPreempted::No
},
}
} else {
ContextSwitchRecord::In {
prev_pid: pid,
prev_tid: tid,
}
}
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum TaskWasPreempted {
Yes,
No,
}
#[derive(Clone, PartialEq, Eq)]
pub struct RawEventRecord<'a> {
pub record_type: RecordType,
pub misc: u16,
pub data: RawData<'a>,
pub parse_info: RecordParseInfo,
}
impl<'a> RawEventRecord<'a> {
pub fn new(
record_type: RecordType,
misc: u16,
data: RawData<'a>,
parse_info: RecordParseInfo,
) -> Self {
Self {
record_type,
misc,
data,
parse_info,
}
}
pub fn common_data(&self) -> Result<CommonData, std::io::Error> {
if self.record_type.is_user_type() {
return Ok(Default::default());
}
if self.record_type == RecordType::SAMPLE {
CommonData::parse_sample(self.data, &self.parse_info)
} else {
CommonData::parse_nonsample(self.data, &self.parse_info)
}
}
pub fn timestamp(&self) -> Option<u64> {
match self.parse_info.endian {
Endianness::LittleEndian => self.timestamp_impl::<LittleEndian>(),
Endianness::BigEndian => self.timestamp_impl::<BigEndian>(),
}
}
fn timestamp_impl<T: ByteOrder>(&self) -> Option<u64> {
get_record_timestamp::<T>(self.record_type, self.data, &self.parse_info)
}
pub fn id(&self) -> Option<u64> {
match self.parse_info.endian {
Endianness::LittleEndian => self.id_impl::<LittleEndian>(),
Endianness::BigEndian => self.id_impl::<BigEndian>(),
}
}
fn id_impl<T: ByteOrder>(&self) -> Option<u64> {
get_record_id::<T>(self.record_type, self.data, &self.parse_info.id_parse_info)
}
pub fn parse(&self) -> Result<EventRecord<'a>, std::io::Error> {
match self.parse_info.endian {
Endianness::LittleEndian => self.parse_impl::<LittleEndian>(),
Endianness::BigEndian => self.parse_impl::<BigEndian>(),
}
}
fn parse_impl<T: ByteOrder>(&self) -> Result<EventRecord<'a>, std::io::Error> {
let parse_info = &self.parse_info;
let event = match self.record_type {
RecordType::MMAP => EventRecord::Mmap(MmapRecord::parse::<T>(self.data, self.misc)?),
RecordType::LOST => EventRecord::Lost(LostRecord::parse::<T>(self.data)?),
RecordType::COMM => {
EventRecord::Comm(CommOrExecRecord::parse::<T>(self.data, self.misc)?)
}
RecordType::EXIT => EventRecord::Exit(ForkOrExitRecord::parse::<T>(self.data)?),
RecordType::THROTTLE => EventRecord::Throttle(ThrottleRecord::parse::<T>(self.data)?),
RecordType::UNTHROTTLE => {
EventRecord::Unthrottle(ThrottleRecord::parse::<T>(self.data)?)
}
RecordType::FORK => EventRecord::Fork(ForkOrExitRecord::parse::<T>(self.data)?),
RecordType::SAMPLE => {
EventRecord::Sample(SampleRecord::parse::<T>(self.data, self.misc, parse_info)?)
}
RecordType::MMAP2 => EventRecord::Mmap2(Mmap2Record::parse::<T>(self.data, self.misc)?),
RecordType::SWITCH => {
EventRecord::ContextSwitch(ContextSwitchRecord::from_misc(self.misc))
}
RecordType::SWITCH_CPU_WIDE => EventRecord::ContextSwitch(
ContextSwitchRecord::parse_cpu_wide::<T>(self.data, self.misc)?,
),
_ => EventRecord::Raw(self.clone()),
};
Ok(event)
}
}
impl<'a> fmt::Debug for RawEventRecord<'a> {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
fmt.debug_map()
.entry(&"record_type", &self.record_type)
.entry(&"misc", &self.misc)
.entry(&"data.len", &self.data.len())
.finish()
}
}