-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile_reader.rs
More file actions
733 lines (660 loc) · 28.6 KB
/
file_reader.rs
File metadata and controls
733 lines (660 loc) · 28.6 KB
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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
use byteorder::{BigEndian, ByteOrder, LittleEndian};
use linear_map::LinearMap;
use linux_perf_event_reader::{
get_record_id, get_record_identifier, get_record_timestamp, AttrFlags, Endianness,
PerfEventHeader, RawData, RawEventRecord, RecordIdParseInfo, RecordParseInfo, RecordType,
SampleFormat,
};
use std::collections::{HashMap, VecDeque};
use std::io::{Cursor, Read, Seek, SeekFrom};
#[cfg(feature = "zstd")]
use crate::decompression::ZstdDecompressor;
use super::error::{Error, ReadError};
use super::feature_sections::AttributeDescription;
use super::features::Feature;
use super::header::{PerfHeader, PerfPipeHeader};
use super::perf_file::PerfFile;
use super::record::{HeaderAttr, HeaderFeature, PerfFileRecord, RawUserRecord, UserRecordType};
use super::section::PerfFileSection;
use super::simpleperf;
use super::sorter::Sorter;
/// A parser for the perf.data file format.
///
/// # Example
///
/// ```
/// use linux_perf_data::{AttributeDescription, PerfFileReader, PerfFileRecord};
///
/// # fn wrapper() -> Result<(), linux_perf_data::Error> {
/// let file = std::fs::File::open("perf.data")?;
/// let reader = std::io::BufReader::new(file);
/// let PerfFileReader { mut perf_file, mut record_iter } = PerfFileReader::parse_file(reader)?;
/// let event_names: Vec<_> =
/// perf_file.event_attributes().iter().filter_map(AttributeDescription::name).collect();
/// println!("perf events: {}", event_names.join(", "));
///
/// while let Some(record) = record_iter.next_record(&mut perf_file)? {
/// match record {
/// PerfFileRecord::EventRecord { attr_index, record } => {
/// let record_type = record.record_type;
/// let parsed_record = record.parse()?;
/// println!("{:?} for event {}: {:?}", record_type, attr_index, parsed_record);
/// }
/// PerfFileRecord::UserRecord(record) => {
/// let record_type = record.record_type;
/// let parsed_record = record.parse()?;
/// println!("{:?}: {:?}", record_type, parsed_record);
/// }
/// }
/// }
/// # Ok(())
/// # }
/// ```
pub struct PerfFileReader<R: Read> {
pub perf_file: PerfFile,
pub record_iter: PerfRecordIter<R>,
}
impl<C: Read + Seek> PerfFileReader<C> {
pub fn parse_file(mut cursor: C) -> Result<Self, Error> {
let header = PerfHeader::parse(&mut cursor)?;
match &header.magic {
b"PERFILE2" => {
Self::parse_file_impl::<LittleEndian>(cursor, header, Endianness::LittleEndian)
}
b"2ELIFREP" => {
Self::parse_file_impl::<BigEndian>(cursor, header, Endianness::BigEndian)
}
_ => Err(Error::UnrecognizedMagicValue(header.magic)),
}
}
fn parse_file_impl<T>(
mut cursor: C,
header: PerfHeader,
endian: Endianness,
) -> Result<Self, Error>
where
T: ByteOrder,
{
// Read the section information for each feature, starting just after the data section.
let feature_pos = header.data_section.offset + header.data_section.size;
cursor.seek(SeekFrom::Start(feature_pos))?;
let mut feature_sections_info = Vec::new();
for feature in header.features.iter() {
let section = PerfFileSection::parse::<_, T>(&mut cursor)?;
feature_sections_info.push((feature, section));
}
let mut feature_sections = LinearMap::new();
for (feature, section) in feature_sections_info {
let offset = section.offset;
let size = usize::try_from(section.size).map_err(|_| Error::SectionSizeTooBig)?;
let mut data = vec![0; size];
cursor.seek(SeekFrom::Start(offset))?;
cursor.read_exact(&mut data)?;
feature_sections.insert(feature, data);
}
let attributes =
if let Some(event_desc_section) = feature_sections.get(&Feature::EVENT_DESC) {
AttributeDescription::parse_event_desc_section::<_, T>(Cursor::new(
&event_desc_section[..],
))?
} else if header.event_types_section.size != 0 {
AttributeDescription::parse_event_types_section::<_, T>(
&mut cursor,
&header.event_types_section,
header.attr_size,
)?
} else if let Some(simpleperf_meta_info) =
feature_sections.get(&Feature::SIMPLEPERF_META_INFO)
{
let info_map = simpleperf::parse_meta_info_map(&simpleperf_meta_info[..])?;
let event_types = simpleperf::get_event_types(&info_map)
.ok_or(Error::NoEventTypesInSimpleperfMetaInfo)?;
AttributeDescription::parse_simpleperf_attr_section::<_, T>(
&mut cursor,
&header.attr_section,
header.attr_size,
&event_types,
)?
} else {
AttributeDescription::parse_attr_section::<_, T>(
&mut cursor,
&header.attr_section,
header.attr_size,
)?
};
let mut event_id_to_attr_index = HashMap::new();
for (attr_index, AttributeDescription { event_ids, .. }) in attributes.iter().enumerate() {
for event_id in event_ids {
event_id_to_attr_index.insert(*event_id, attr_index);
}
}
let parse_infos: Vec<_> = attributes
.iter()
.map(|attr| RecordParseInfo::new(&attr.attr, endian))
.collect();
let first_attr = attributes.first().ok_or(Error::NoAttributes)?;
let first_has_sample_id_all = first_attr.attr.flags.contains(AttrFlags::SAMPLE_ID_ALL);
let (first_parse_info, remaining_parse_infos) = parse_infos.split_first().unwrap();
let id_parse_infos = if remaining_parse_infos.is_empty() {
IdParseInfos::OnlyOneEvent
} else if remaining_parse_infos
.iter()
.all(|parse_info| parse_info.id_parse_info == first_parse_info.id_parse_info)
{
IdParseInfos::Same(first_parse_info.id_parse_info)
} else {
// Make sure that all attributes have IDENTIFIER and the same SAMPLE_ID_ALL setting.
// Otherwise we won't be able to know which attr a record belongs to; we need to know
// the record's ID for that, and we can only read the ID if it's in the same location
// regardless of attr.
// In theory we could make the requirements weaker, and take the record type into
// account for disambiguation. For example, if there are two events, but one of them
// only creates SAMPLE records and the other only non-SAMPLE records, we don't
// necessarily need IDENTIFIER in order to be able to read the record ID.
for (attr_index, AttributeDescription { attr, .. }) in attributes.iter().enumerate() {
if !attr.sample_format.contains(SampleFormat::IDENTIFIER) {
return Err(Error::NoIdentifierDespiteMultiEvent(attr_index));
}
if attr.flags.contains(AttrFlags::SAMPLE_ID_ALL) != first_has_sample_id_all {
return Err(Error::InconsistentSampleIdAllWithMultiEvent(attr_index));
}
}
IdParseInfos::PerAttribute(first_has_sample_id_all)
};
// Move the cursor to the start of the data section so that we can start
// reading records from it.
cursor.seek(SeekFrom::Start(header.data_section.offset))?;
let perf_file = PerfFile {
endian,
features: header.features,
feature_sections,
attributes,
};
let record_iter = PerfRecordIter {
reader: cursor,
endian,
id_parse_infos,
parse_infos,
event_id_to_attr_index,
read_offset: 0,
record_data_len: Some(header.data_section.size),
sorter: Sorter::new(),
buffers_for_recycling: VecDeque::new(),
current_event_body: Vec::new(),
pending_first_record: None,
#[cfg(feature = "zstd")]
zstd_decompressor: ZstdDecompressor::new(),
};
Ok(Self {
perf_file,
record_iter,
})
}
}
impl<R: Read> PerfFileReader<R> {
/// Parse a perf.data file in pipe mode (streaming format).
///
/// Pipe mode is designed for streaming and does not require seeking.
/// Metadata (attributes and features) is embedded in the stream as
/// synthesized records (PERF_RECORD_HEADER_ATTR, PERF_RECORD_HEADER_FEATURE).
pub fn parse_pipe(mut reader: R) -> Result<Self, Error> {
let pipe_header = PerfPipeHeader::parse(&mut reader)?;
match &pipe_header.magic {
b"PERFILE2" => Self::parse_pipe_impl::<LittleEndian>(reader, Endianness::LittleEndian),
b"2ELIFREP" => Self::parse_pipe_impl::<BigEndian>(reader, Endianness::BigEndian),
_ => Err(Error::UnrecognizedMagicValue(pipe_header.magic)),
}
}
fn parse_pipe_impl<T: ByteOrder>(mut reader: R, endian: Endianness) -> Result<Self, Error> {
let mut attributes = Vec::new();
let mut feature_sections = LinearMap::new();
let mut pending_first_record: Option<(PerfEventHeader, Vec<u8>)> = None;
// Read records from the stream until we hit a non-metadata record or EOF
loop {
let header = match PerfEventHeader::parse::<_, T>(&mut reader) {
Ok(header) => header,
Err(e) if e.kind() == std::io::ErrorKind::UnexpectedEof => {
// Stream ended with only metadata records - this is valid
break;
}
Err(e) => return Err(e.into()),
};
let size = header.size as usize;
if size < PerfEventHeader::STRUCT_SIZE {
return Err(Error::InvalidPerfEventSize);
}
let event_body_len = size - PerfEventHeader::STRUCT_SIZE;
let mut buffer = vec![0; event_body_len];
match reader.read_exact(&mut buffer) {
Ok(()) => {}
Err(e) if e.kind() == std::io::ErrorKind::UnexpectedEof => {
// Incomplete record at end of stream
return Err(e.into());
}
Err(e) => return Err(e.into()),
}
let record_type = RecordType(header.type_);
match UserRecordType::try_from(record_type) {
Some(UserRecordType::PERF_HEADER_ATTR) => {
let data = RawData::from(&buffer[..]);
let header_attr = HeaderAttr::parse::<T>(data)?;
attributes.push(AttributeDescription {
attr: header_attr.attr,
name: None,
event_ids: header_attr.ids,
});
}
Some(UserRecordType::PERF_HEADER_FEATURE) => {
let data = RawData::from(&buffer[..]);
let header_feature = HeaderFeature::parse::<T>(data)?;
feature_sections.insert(header_feature.feature, header_feature.data);
}
_ => {
// Not a metadata record - this is the first real event
pending_first_record = Some((header, buffer));
break;
}
}
}
if attributes.is_empty() {
return Err(Error::NoAttributes);
}
if let Some(event_desc_data) = feature_sections.get(&Feature::EVENT_DESC) {
let event_desc_attrs = AttributeDescription::parse_event_desc_section::<_, T>(
Cursor::new(&event_desc_data[..]),
)?;
// Match attributes by event IDs and update names
for attr in attributes.iter_mut() {
// Find matching event in EVENT_DESC by comparing event IDs
if let Some(event_desc_attr) = event_desc_attrs.iter().find(|desc| {
!desc.event_ids.is_empty()
&& !attr.event_ids.is_empty()
&& desc.event_ids[0] == attr.event_ids[0]
}) {
attr.name = event_desc_attr.name.clone();
}
}
}
let mut event_id_to_attr_index = HashMap::new();
for (attr_index, AttributeDescription { event_ids, .. }) in attributes.iter().enumerate() {
for event_id in event_ids {
event_id_to_attr_index.insert(*event_id, attr_index);
}
}
let parse_infos: Vec<_> = attributes
.iter()
.map(|attr| RecordParseInfo::new(&attr.attr, endian))
.collect();
let first_attr = attributes.first().ok_or(Error::NoAttributes)?;
let first_has_sample_id_all = first_attr.attr.flags.contains(AttrFlags::SAMPLE_ID_ALL);
let (first_parse_info, remaining_parse_infos) = parse_infos.split_first().unwrap();
let id_parse_infos = if remaining_parse_infos.is_empty() {
IdParseInfos::OnlyOneEvent
} else if remaining_parse_infos
.iter()
.all(|parse_info| parse_info.id_parse_info == first_parse_info.id_parse_info)
{
IdParseInfos::Same(first_parse_info.id_parse_info)
} else {
for (attr_index, AttributeDescription { attr, .. }) in attributes.iter().enumerate() {
if !attr.sample_format.contains(SampleFormat::IDENTIFIER) {
return Err(Error::NoIdentifierDespiteMultiEvent(attr_index));
}
if attr.flags.contains(AttrFlags::SAMPLE_ID_ALL) != first_has_sample_id_all {
return Err(Error::InconsistentSampleIdAllWithMultiEvent(attr_index));
}
}
IdParseInfos::PerAttribute(first_has_sample_id_all)
};
// Infer features from the feature_sections we collected
let mut features_array = [0u64; 4];
for feature in feature_sections.keys() {
let feature_bit = feature.0;
if feature_bit < 256 {
let chunk_index = (feature_bit / 64) as usize;
let bit_in_chunk = feature_bit % 64;
features_array[chunk_index] |= 1u64 << bit_in_chunk;
}
}
let perf_file = PerfFile {
endian,
features: super::features::FeatureSet(features_array),
feature_sections,
attributes,
};
let record_iter = PerfRecordIter {
reader,
endian,
id_parse_infos,
parse_infos,
event_id_to_attr_index,
read_offset: 0,
record_data_len: None, // Unbounded for pipes
sorter: Sorter::new(),
buffers_for_recycling: VecDeque::new(),
current_event_body: Vec::new(),
pending_first_record,
#[cfg(feature = "zstd")]
zstd_decompressor: ZstdDecompressor::new(),
};
Ok(Self {
perf_file,
record_iter,
})
}
}
/// An iterator which incrementally reads and sorts the records from a perf.data file.
pub struct PerfRecordIter<R: Read> {
reader: R,
endian: Endianness,
read_offset: u64,
/// None for pipe mode
record_data_len: Option<u64>,
current_event_body: Vec<u8>,
id_parse_infos: IdParseInfos,
/// Guaranteed to have at least one element
parse_infos: Vec<RecordParseInfo>,
event_id_to_attr_index: HashMap<u64, usize>,
sorter: Sorter<RecordSortKey, PendingRecord>,
buffers_for_recycling: VecDeque<Vec<u8>>,
/// For pipe mode: the first non-metadata record that was read during initialization
pending_first_record: Option<(PerfEventHeader, Vec<u8>)>,
/// Zstd decompressor for handling COMPRESSED records
#[cfg(feature = "zstd")]
zstd_decompressor: ZstdDecompressor,
}
impl<R: Read> PerfRecordIter<R> {
/// Iterates the records in this file. The records are emitted in the
/// correct order, i.e. sorted by time.
///
/// `next_record` does some internal buffering so that the sort order can
/// be guaranteed. This buffering takes advantage of `FINISHED_ROUND`
/// records so that we don't buffer more records than necessary.
pub fn next_record(
&mut self,
_perf_file: &mut PerfFile,
) -> Result<Option<PerfFileRecord<'_>>, Error> {
if !self.sorter.has_more() {
self.read_next_round()?;
}
if let Some(pending_record) = self.sorter.get_next() {
let record = self.convert_pending_record(pending_record);
return Ok(Some(record));
}
Ok(None)
}
/// Reads events into self.sorter until a FINISHED_ROUND record is found
/// and self.sorter is non-empty, or until we've run out of records to read.
fn read_next_round(&mut self) -> Result<(), Error> {
if self.endian == Endianness::LittleEndian {
self.read_next_round_impl::<byteorder::LittleEndian>()
} else {
self.read_next_round_impl::<byteorder::BigEndian>()
}
}
/// Reads events into self.sorter until a FINISHED_ROUND record is found
/// and self.sorter is non-empty, or until we've run out of records to read.
fn read_next_round_impl<T: ByteOrder>(&mut self) -> Result<(), Error> {
// Handle pending first record from pipe mode initialization
if let Some((pending_header, pending_buffer)) = self.pending_first_record.take() {
self.process_record::<T>(pending_header, pending_buffer, self.read_offset)?;
self.read_offset += u64::from(pending_header.size);
}
while self
.record_data_len
.is_none_or(|len| self.read_offset < len)
{
let offset = self.read_offset;
// Try to parse the next header. For pipe mode (unbounded), EOF is normal termination.
let header = match PerfEventHeader::parse::<_, T>(&mut self.reader) {
Ok(header) => header,
Err(e) => {
// For pipe mode with unbounded length, EOF just means end of stream
if self.record_data_len.is_none()
&& e.kind() == std::io::ErrorKind::UnexpectedEof
{
break;
}
return Err(e.into());
}
};
let size = header.size as usize;
if size < PerfEventHeader::STRUCT_SIZE {
return Err(Error::InvalidPerfEventSize);
}
self.read_offset += u64::from(header.size);
let user_record_type = UserRecordType::try_from(RecordType(header.type_));
if user_record_type == Some(UserRecordType::PERF_FINISHED_ROUND) {
self.sorter.finish_round();
if self.sorter.has_more() {
// The sorter is non-empty. We're done.
return Ok(());
}
// Keep going so that we never exit the loop with sorter
// being empty, unless we've truly run out of data to read.
continue;
}
let event_body_len = size - PerfEventHeader::STRUCT_SIZE;
let mut buffer = self.buffers_for_recycling.pop_front().unwrap_or_default();
buffer.resize(event_body_len, 0);
// Try to read the event body. For pipe mode, EOF here also means end of stream.
match self.reader.read_exact(&mut buffer) {
Ok(()) => {}
Err(e) => {
// For pipe mode with unbounded length, EOF just means end of stream
if self.record_data_len.is_none()
&& e.kind() == std::io::ErrorKind::UnexpectedEof
{
break;
}
return Err(ReadError::PerfEventData.into());
}
}
if user_record_type == Some(UserRecordType::PERF_COMPRESSED) {
#[cfg(not(feature = "zstd"))]
{
return Err(Error::IoError(std::io::Error::new(std::io::ErrorKind::Unsupported,
"Compression support is not enabled. Please rebuild with the 'zstd' feature flag.",
)));
}
#[cfg(feature = "zstd")]
{
self.decompress_and_process_compressed::<T>(&buffer)?;
continue;
}
}
if user_record_type == Some(UserRecordType::PERF_COMPRESSED2) {
#[cfg(not(feature = "zstd"))]
{
return Err(Error::IoError(std::io::Error::new(std::io::ErrorKind::Unsupported,
"Compression support is not enabled. Please rebuild with the 'zstd' feature flag.",
)));
}
#[cfg(feature = "zstd")]
{
self.decompress_and_process_compressed2::<T>(&buffer)?;
continue;
}
}
self.process_record::<T>(header, buffer, offset)?;
}
// Everything has been read.
self.sorter.finish();
Ok(())
}
/// Process a single record and add it to the sorter
fn process_record<T: ByteOrder>(
&mut self,
header: PerfEventHeader,
buffer: Vec<u8>,
offset: u64,
) -> Result<(), Error> {
let data = RawData::from(&buffer[..]);
let record_type = RecordType(header.type_);
let (attr_index, timestamp) = if record_type.is_builtin_type() {
let attr_index = match &self.id_parse_infos {
IdParseInfos::OnlyOneEvent => 0,
IdParseInfos::Same(id_parse_info) => {
get_record_id::<T>(record_type, data, id_parse_info)
.and_then(|id| self.event_id_to_attr_index.get(&id).cloned())
.unwrap_or(0)
}
IdParseInfos::PerAttribute(sample_id_all) => {
// We have IDENTIFIER (guaranteed by PerAttribute).
get_record_identifier::<T>(record_type, data, *sample_id_all)
.and_then(|id| self.event_id_to_attr_index.get(&id).cloned())
.unwrap_or(0)
}
};
let parse_info = self.parse_infos[attr_index];
let timestamp = get_record_timestamp::<T>(record_type, data, &parse_info);
(Some(attr_index), timestamp)
} else {
// user type
(None, None)
};
let sort_key = RecordSortKey { timestamp, offset };
let misc = header.misc;
let pending_record = PendingRecord {
record_type,
misc,
buffer,
attr_index,
};
self.sorter.insert_unordered(sort_key, pending_record);
Ok(())
}
/// Decompresses a PERF_RECORD_COMPRESSED record and processes its sub-records.
///
/// PERF_RECORD_COMPRESSED (type 81) was introduced in Linux 5.2 (2019).
/// Format: header (8 bytes) + compressed data (header.size - 8 bytes)
/// The compressed data size is implicit from the header size.
#[cfg(feature = "zstd")]
fn decompress_and_process_compressed<T: ByteOrder>(
&mut self,
buffer: &[u8],
) -> Result<(), Error> {
// For COMPRESSED, the entire buffer is compressed data
// (no data_size field - size is implicit from header.size)
let compressed_data = buffer;
let decompressed = self.zstd_decompressor.decompress(compressed_data)?;
self.process_decompressed_records::<T>(&decompressed)
}
/// Decompresses a PERF_RECORD_COMPRESSED2 record and processes its sub-records.
///
/// PERF_RECORD_COMPRESSED2 (type 83) was introduced in Linux 6.x (May 2025)
/// to fix 8-byte alignment issues with the original format.
/// Format: header (8 bytes) + data_size (8 bytes) + compressed data + padding
/// The header.size includes padding for 8-byte alignment; data_size has the actual size.
#[cfg(feature = "zstd")]
fn decompress_and_process_compressed2<T: ByteOrder>(
&mut self,
buffer: &[u8],
) -> Result<(), Error> {
if buffer.len() < 8 {
return Err(ReadError::PerfEventData.into());
}
let data_size = T::read_u64(&buffer[0..8]) as usize;
if data_size > buffer.len() - 8 {
return Err(ReadError::PerfEventData.into());
}
let compressed_data = &buffer[8..8 + data_size];
let decompressed = self.zstd_decompressor.decompress(compressed_data)?;
self.process_decompressed_records::<T>(&decompressed)
}
/// Processes decompressed data as a sequence of perf records.
/// Shared by both COMPRESSED and COMPRESSED2 handlers.
#[cfg(feature = "zstd")]
fn process_decompressed_records<T: ByteOrder>(
&mut self,
decompressed: &[u8],
) -> Result<(), Error> {
let mut cursor = Cursor::new(decompressed);
let mut offset = 0u64;
while (cursor.position() as usize) < decompressed.len() {
let header_start = cursor.position() as usize;
// Check if we have enough bytes for a header
let remaining = decompressed.len() - header_start;
if remaining < PerfEventHeader::STRUCT_SIZE {
self.zstd_decompressor
.save_partial_record(&decompressed[header_start..]);
break;
}
let sub_header = PerfEventHeader::parse::<_, T>(&mut cursor)?;
let sub_size = sub_header.size as usize;
if sub_size < PerfEventHeader::STRUCT_SIZE {
return Err(Error::InvalidPerfEventSize);
}
let sub_event_body_len = sub_size - PerfEventHeader::STRUCT_SIZE;
// Check if we have enough bytes for the sub-record body
let remaining_after_header = decompressed.len() - cursor.position() as usize;
if sub_event_body_len > remaining_after_header {
self.zstd_decompressor
.save_partial_record(&decompressed[header_start..]);
break;
}
let mut sub_buffer = self.buffers_for_recycling.pop_front().unwrap_or_default();
sub_buffer.resize(sub_event_body_len, 0);
cursor
.read_exact(&mut sub_buffer)
.map_err(|_| ReadError::PerfEventData)?;
self.process_record::<T>(sub_header, sub_buffer, offset)?;
offset += sub_size as u64;
}
Ok(())
}
/// Converts pending_record into an RawRecord which references the data in self.current_event_body.
fn convert_pending_record(&mut self, pending_record: PendingRecord) -> PerfFileRecord<'_> {
let PendingRecord {
record_type,
misc,
buffer,
attr_index,
..
} = pending_record;
let prev_buffer = std::mem::replace(&mut self.current_event_body, buffer);
self.buffers_for_recycling.push_back(prev_buffer);
let data = RawData::from(&self.current_event_body[..]);
if let Some(record_type) = UserRecordType::try_from(record_type) {
let endian = self.endian;
PerfFileRecord::UserRecord(RawUserRecord {
record_type,
misc,
data,
endian,
})
} else {
let attr_index = attr_index.unwrap();
let parse_info = self.parse_infos[attr_index];
let record = RawEventRecord {
record_type,
misc,
data,
parse_info,
};
PerfFileRecord::EventRecord { attr_index, record }
}
}
}
#[derive(Clone, Debug, PartialEq, Eq)]
struct PendingRecord {
record_type: RecordType,
misc: u16,
buffer: Vec<u8>,
attr_index: Option<usize>,
}
#[derive(Clone, Copy, Default, Debug, PartialEq, Eq, PartialOrd, Ord)]
struct RecordSortKey {
timestamp: Option<u64>,
offset: u64,
}
#[derive(Debug, Clone)]
enum IdParseInfos {
/// There is only one event.
OnlyOneEvent,
/// There are multiple events, but all events are parsed the same way.
Same(RecordIdParseInfo),
/// All elements are guaranteed to have [`SampleFormat::IDENTIFIER`] set in `attr.sample_format`.
/// The inner element indicates sample_id_all.
PerAttribute(bool),
}