one_collect 0.1.34811

Cross-platform library for capturing machine-level traces.
Documentation
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
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

use std::marker::PhantomData;
use std::arch::asm;
#[cfg(target_os = "linux")]
use std::os::fd::BorrowedFd;
use std::rc::Rc;

#[cfg(target_os = "linux")]
use libc::*;

use tracing::{debug, info, trace, warn, error};
use super::abi;
use super::*;

pub mod source;

/* Arch: X64 */
#[cfg(target_arch = "x86_64")]
unsafe fn rmb() {
    asm!("lfence");
}

#[cfg(target_arch = "x86_64")]
unsafe fn mb() {
    asm!("mfence");
}

/* Arch: ARM64 */
#[cfg(target_arch = "aarch64")]
unsafe fn rmb() {
    asm!("dsb ld");
}

#[cfg(target_arch = "aarch64")]
unsafe fn mb() {
    asm!("dsb sy");
}

pub trait RingBufOptions {
    fn clone_options(&self) -> Self;

    fn attributes_mut(&mut self) -> &mut perf_event_attr;

    fn with_callchain_data(&self) -> Self where Self: Sized {
        let mut clone = self.clone_options();
        let attributes = clone.attributes_mut();

        attributes.sample_type |= abi::PERF_SAMPLE_CALLCHAIN;

        clone
    }

    fn without_user_callchain_data(&self) -> Self where Self: Sized {
        let mut clone = self.clone_options();
        let attributes = clone.attributes_mut();

        attributes.flags |= FLAG_EXCLUDE_CALLCHAIN_USER;

        clone
    }

    fn without_kernel_callchain_data(&self) -> Self where Self: Sized {
        let mut clone = self.clone_options();
        let attributes = clone.attributes_mut();

        attributes.flags |= FLAG_EXCLUDE_CALLCHAIN_KERNEL;

        clone
    }

    fn with_ip(&self) -> Self where Self: Sized {
        let mut clone = self.clone_options();
        let attributes = clone.attributes_mut();

        attributes.sample_type |= abi::PERF_SAMPLE_IP;
        attributes.flags |= FLAG_PRECISE_IP;

        clone
    }

    fn with_user_regs_data(
        &self,
        regs: u64) -> Self where Self: Sized {
        let mut clone = self.clone_options();
        let attributes = clone.attributes_mut();

        attributes.sample_type |= abi::PERF_SAMPLE_REGS_USER;
        attributes.sample_regs_user = regs;

        clone
    }

    fn with_user_stack_data(
        &self,
        stack_bytes: u32) -> Self where Self: Sized {
        let mut clone = self.clone_options();
        let attributes = clone.attributes_mut();

        attributes.sample_type |= abi::PERF_SAMPLE_STACK_USER;
        attributes.sample_stack_user = stack_bytes;

        clone
    }

    fn with_cgroup_data(&self) -> Self where Self: Sized {
        let mut clone = self.clone_options();
        let attributes = clone.attributes_mut();

        attributes.sample_type |= abi::PERF_SAMPLE_CGROUP;

        clone
    }
}

/// Determine whether cgroup ids can be recorded in samples.
///
/// This is done by checking whether the running Linux kernel supports
/// `PERF_SAMPLE_CGROUP`, which was added in kernel 5.7+. We check
/// this separately, otherwise `perf_event_open` would fail fatally.
pub(crate) fn cgroup_sample_supported() -> bool {
    let attr = perf_event_attr {
        size: PERF_ATTR_SIZE_VER4,
        event_type: PERF_TYPE_SOFTWARE,
        config: PERF_COUNT_SW_DUMMY,
        sample_type: abi::PERF_SAMPLE_CGROUP,
        flags: FLAG_DISABLED,
        .. Default::default()
    };

    // SAFETY: `attr` is the fully initialized perf_event_attr that
    // outlives the call. The syscall only reads through the pointer
    // and returns an fd or -1.
    let result = unsafe {
        syscall(
            SYS_perf_event_open,
            &attr as *const perf_event_attr as usize,
            0,                /* pid: calling process */
            (-1i32) as usize, /* cpu: any */
            (-1i32) as usize, /* group_fd: none */
            0)
    };

    if result >= 0 {
        // SAFETY: `result` is an fd we just opened and solely own.
        // Closed once now.
        unsafe { close(result as i32); }
        true
    } else {
        let err = std::io::Error::last_os_error();

        if err.raw_os_error() == Some(EINVAL) {
            warn!("PERF_SAMPLE_CGROUP unsupported; cgroup ids will not be recorded");
            false
        } else {
            /* Not a kernel support failure (but, e.g., permissions) */
            true
        }
    }
}

pub fn cpu_count() -> u32 {
    unsafe {
        const SC_NPROCESSORS_ONLN: i32 = 84;

        sysconf(SC_NPROCESSORS_ONLN) as u32
    }
}

/// Size in bytes of the per-CPU ring's data area for a user-supplied page
/// count.
///
/// The kernel requires the data area to be a power-of-two number of
/// pages, so the user's `page_count` is rounded up via
/// `next_power_of_two()`. The actual `mmap` is one additional metadata
/// page on top of this (`ring_data_bytes(n) + PAGE_SIZE`).
///
/// This is the bound the `wakeup_events_watermark` must be strictly
/// smaller than for the kernel to ever wake the perf fd.
pub(super) fn ring_data_bytes(page_count: usize) -> usize {
    let page_size = unsafe { sysconf(_SC_PAGE_SIZE) as usize };
    page_count.next_power_of_two() * page_size
}

pub fn perf_timestamp(
    attr: &perf_event_attr) -> u64 {
    unsafe {
        let mut tp = timespec {
            tv_sec: 0,
            tv_nsec: 0,
        };

        match clock_gettime(
            attr.clockid,
            &mut tp) {
            0 => {
                ((tp.tv_sec * 1000000000) + tp.tv_nsec) as u64
            }
            _ => {
                0
            }
        }
    }
}

fn perf_event_open(
    attr: &perf_event_attr,
    pid: i32,
    cpu: i32,
    group_fd: i32,
    flags: usize) -> IOResult<usize> {
    unsafe {
        match syscall(
            SYS_perf_event_open,
            attr as *const perf_event_attr as usize,
            pid as usize,
            cpu as usize,
            group_fd as usize,
            flags) {
            -1 => {
                let err = std::io::Error::last_os_error();
                error!("perf_event_open failed: pid={}, cpu={}, error={}", pid, cpu, err);
                Err(err)
            },
            result => {
                debug!("perf_event_open succeeded: pid={}, cpu={}, fd={}", pid, cpu, result);
                Ok(result as usize)
            },
        }
    }
}

pub struct Profiling;
pub struct ContextSwitches;
pub struct PageFaults;
pub struct Tracepoint;
pub struct Kernel;
pub struct Bpf;

pub struct RingBufBuilder<T = Profiling> {
    attributes: perf_event_attr,
    _type: PhantomData<T>,
}

impl RingBufBuilder {
    pub(crate) fn common_attributes() -> perf_event_attr {
        perf_event_attr {
            size: PERF_ATTR_SIZE_VER4,
            flags: FLAG_USE_CLOCKID |
                FLAG_SAMPLE_ID_ALL |
                FLAG_DISABLED |
                FLAG_EXCLUDE_HV |
                FLAG_EXCLUDE_IDLE |
                FLAG_INHERIT,
            clockid: CLOCK_MONOTONIC_RAW,
            read_format: abi::PERF_FORMAT_ID,
            sample_type: abi::PERF_SAMPLE_IDENTIFIER |
                abi::PERF_SAMPLE_TIME |
                abi::PERF_SAMPLE_TID,
            /* Leave rest default */
            .. Default::default()
        }
    }

    pub fn for_kernel() -> RingBufBuilder<Kernel> {
        let mut attributes = Self::common_attributes();

        attributes.event_type = PERF_TYPE_SOFTWARE;
        attributes.config = PERF_COUNT_SW_DUMMY;

        RingBufBuilder::<Kernel> {
            attributes,
            _type: PhantomData::<Kernel>,
        }
    }

    pub fn for_cswitches() -> RingBufBuilder<ContextSwitches> {
        let mut attributes = Self::common_attributes();

        attributes.event_type = PERF_TYPE_SOFTWARE;
        attributes.config = PERF_COUNT_SW_CONTEXT_SWITCHES;
        attributes.sample_period_freq = 1;

        RingBufBuilder::<ContextSwitches> {
            attributes,
            _type: PhantomData::<ContextSwitches>,
        }
    }

    pub fn for_soft_page_faults() -> RingBufBuilder<PageFaults> {
        let mut attributes = Self::common_attributes();

        attributes.event_type = PERF_TYPE_SOFTWARE;
        attributes.config = PERF_COUNT_SW_PAGE_FAULTS_MIN;
        attributes.sample_period_freq = 1;

        RingBufBuilder::<PageFaults> {
            attributes,
            _type: PhantomData::<PageFaults>,
        }
    }

    pub fn for_hard_page_faults() -> RingBufBuilder<PageFaults> {
        let mut attributes = Self::common_attributes();

        attributes.event_type = PERF_TYPE_SOFTWARE;
        attributes.config = PERF_COUNT_SW_PAGE_FAULTS_MAJ;
        attributes.sample_period_freq = 1;

        RingBufBuilder::<PageFaults> {
            attributes,
            _type: PhantomData::<PageFaults>,
        }
    }

    pub fn for_profiling(
        sampling_frequency: u64) -> RingBufBuilder<Profiling> {
        let mut attributes = Self::common_attributes();

        attributes.event_type = PERF_TYPE_SOFTWARE;
        attributes.config = PERF_COUNT_SW_CPU_CLOCK;
        attributes.sample_period_freq = sampling_frequency;
        attributes.flags |= FLAG_FREQ;

        RingBufBuilder::<Profiling> {
            attributes,
            _type: PhantomData::<Profiling>,
        }
    }

    pub fn for_tracepoint() -> RingBufBuilder<Tracepoint> {
        let mut attributes = Self::common_attributes();

        attributes.event_type = PERF_TYPE_TRACEPOINT;
        attributes.sample_period_freq = 1;

        attributes.sample_type |= abi::PERF_SAMPLE_RAW;

        RingBufBuilder::<Tracepoint> {
            attributes,
            _type: PhantomData::<Tracepoint>,
        }
    }

    pub fn for_bpf() -> RingBufBuilder<Bpf> {
        let mut attributes = Self::common_attributes();

        attributes.event_type = PERF_TYPE_SOFTWARE;
        attributes.config = PERF_COUNT_SW_BPF_OUTPUT;
        attributes.sample_period_freq = 1;

        attributes.sample_type |= abi::PERF_SAMPLE_RAW;

        RingBufBuilder::<Bpf> {
            attributes,
            _type: PhantomData::<Bpf>,
        }
    }
}

impl<T> RingBufBuilder<T> {
    /// Configure the kernel to wake up the perf fd only after the ring
    /// buffer has accumulated at least `bytes` of data.
    ///
    /// Sets `FLAG_WATERMARK` and `wakeup_events_watermark` on the
    /// underlying `perf_event_attr`. A value of `0` keeps the kernel
    /// default of waking on every event.
    pub(crate) const fn set_wakeup_watermark(&mut self, bytes: u32) {
        self.attributes.flags |= FLAG_WATERMARK;
        self.attributes.wakeup_events_watermark = bytes;
    }
}

impl RingBufOptions for RingBufBuilder<Profiling> {
    fn clone_options(&self) -> Self {
        Self {
            attributes: self.attributes,
            _type: self._type,
        }
    }

    fn attributes_mut(&mut self) -> &mut perf_event_attr {
        &mut self.attributes
    }
}

impl RingBufBuilder<Profiling> {
    pub(crate) fn build(&self) -> CommonRingBuf {
        CommonRingBuf::new(self.attributes)
    }
}

impl RingBufOptions for RingBufBuilder<ContextSwitches> {
    fn clone_options(&self) -> Self {
        Self {
            attributes: self.attributes,
            _type: self._type,
        }
    }

    fn attributes_mut(&mut self) -> &mut perf_event_attr {
        &mut self.attributes
    }
}

impl RingBufBuilder<ContextSwitches> {
    pub(crate) fn build(&self) -> CommonRingBuf {
        CommonRingBuf::new(self.attributes)
    }
}

impl RingBufOptions for RingBufBuilder<PageFaults> {
    fn clone_options(&self) -> Self {
        Self {
            attributes: self.attributes,
            _type: self._type,
        }
    }

    fn attributes_mut(&mut self) -> &mut perf_event_attr {
        &mut self.attributes
    }
}

impl RingBufBuilder<PageFaults> {
    pub(crate) fn build(&self) -> CommonRingBuf {
        CommonRingBuf::new(self.attributes)
    }
}

impl RingBufOptions for RingBufBuilder<Tracepoint> {
    fn clone_options(&self) -> Self {
        Self {
            attributes: self.attributes,
            _type: self._type,
        }
    }

    fn attributes_mut(&mut self) -> &mut perf_event_attr {
        &mut self.attributes
    }
}

impl RingBufBuilder<Tracepoint> {
    pub(crate) fn build(
        &self,
        tracepoint_id: u64) -> CommonRingBuf {
        let mut attributes = self.attributes;

        /*
         * We need to support live adding more events so we
         * copy then update the tracepoint id live here.
         */
        attributes.config = tracepoint_id;

        CommonRingBuf::new(attributes)
    }
}

impl RingBufOptions for RingBufBuilder<Bpf> {
    fn clone_options(&self) -> Self {
        Self {
            attributes: self.attributes,
            _type: self._type,
        }
    }

    fn attributes_mut(&mut self) -> &mut perf_event_attr {
        &mut self.attributes
    }
}

impl RingBufBuilder<Bpf> {
    pub(crate) fn build(
        &self) -> CommonRingBuf {
        CommonRingBuf::new(self.attributes)
    }
}

impl RingBufBuilder<Kernel> {
    pub fn with_executable_mmap_records(&self) -> Self {
        let mut attributes = self.attributes;

        attributes.flags |= FLAG_MMAP | FLAG_MMAP2;

        Self {
            attributes,
            _type: self._type,
        }
    }

    pub fn with_all_mmap_records(&self) -> Self {
        let mut attributes = self.attributes;

        attributes.flags |= FLAG_MMAP | FLAG_MMAP2 | FLAG_MMAP_DATA;

        Self {
            attributes,
            _type: self._type,
        }
    }

    pub fn with_comm_records(&self) -> Self {
        let mut attributes = self.attributes;

        attributes.flags |= FLAG_COMM | FLAG_COMM_EXEC;

        Self {
            attributes,
            _type: self._type,
        }
    }

    pub fn with_task_records(&self) -> Self {
        let mut attributes = self.attributes;

        attributes.flags |= FLAG_TASK;

        Self {
            attributes,
            _type: self._type,
        }
    }

    pub fn with_cswitch_records(&self) -> Self {
        let mut attributes = self.attributes;

        attributes.flags |= FLAG_CONTEXT_SWITCH;

        Self {
            attributes,
            _type: self._type,
        }
    }

    pub(crate) fn build(&self) -> CommonRingBuf {
        CommonRingBuf::new(self.attributes)
    }
}

#[repr(C)]
#[derive(Default)]
struct read_format {
    value: u64,
    id: u64,
}

pub(crate) struct CommonRingBuf {
    attributes: Rc<perf_event_attr>,
}

impl CommonRingBuf {
    pub(crate) fn new(
        attributes: perf_event_attr) -> Self {
        Self {
            attributes: Rc::new(attributes),
        }
    }

    pub(crate) fn without_callstack(
        self) -> Self {
        /* If no callchain/stack, then don't do anything */
        if !self.attributes.has_format(PERF_SAMPLE_CALLCHAIN) &&
           !self.attributes.has_format(PERF_SAMPLE_STACK_USER) {
            return self;
        }

        let mut clone = self;
        let mut attributes = *clone.attributes;

        /* Clear callchain/stack samples */
        attributes.sample_type &= !PERF_SAMPLE_CALLCHAIN;
        attributes.sample_type &= !PERF_SAMPLE_STACK_USER;
        attributes.sample_type &= !PERF_SAMPLE_REGS_USER;

        /* Enable IP only sample */
        attributes.sample_type |= PERF_SAMPLE_IP;

        clone.attributes = Rc::new(attributes);
        clone
    }

    pub(crate) fn for_cpu(
        &self,
        cpu: u32) -> CpuRingBuf {
        CpuRingBuf::new(
            cpu,
            self.attributes.clone())
    }
}

#[derive(Default)]
pub(crate) struct CpuRingCursor {
    start: u64,
    end: u64,
}

impl CpuRingCursor {
    pub(crate) fn set(
        &mut self,
        start: u64,
        end: u64) {
        self.start = start;
        self.end = end;
    }

    pub(crate) fn advance(
        &mut self,
        len: u16) {
        self.start += len as u64;
    }

    pub(crate) fn more(&self) -> bool {
        self.start < self.end
    }

    pub(crate) fn start(&self) -> u64 {
        self.start
    }
}

pub(crate) struct CpuRingReader {
    pages: *mut u8,
    pages_len: usize,
    data_offset: u64,
    data_size: u64,
    data_mask: u64,
    owned: bool,
}

impl<'a> CpuRingReader {
    pub(crate) fn new(
        pages: *mut u8,
        pages_len: usize) -> Self {
        let slice = unsafe {
            std::slice::from_raw_parts(
                pages,
                pages_len)
        };

        let data_offset = u64::from_ne_bytes(
            slice[1040..1048].try_into().unwrap());

        let data_size = u64::from_ne_bytes(
            slice[1048..1056].try_into().unwrap());

        debug!(
            "CpuRingReader initialized: data_offset={:#x}, data_size={:#x}, pages_len={}",
            data_offset, data_size, pages_len
        );

        Self {
            pages,
            pages_len,
            data_offset,
            data_size,
            data_mask: data_size - 1,
            owned: true,
        }
    }

    pub(crate) fn new_unowned(
        pages: *mut u8,
        pages_len: usize) -> Self {
        let mut reader = Self::new(pages, pages_len);
        reader.owned = false;
        reader
    }

    const fn slice(&self) -> &[u8] {
        unsafe {
            std::slice::from_raw_parts(
                self.pages,
                self.pages_len)
        }
    }

    pub(crate) fn begin_reading(
        &self,
        cursor: &mut CpuRingCursor) {
        let head = self.head();

        unsafe {
            rmb();
        }

        let tail = self.tail();

        cursor.set(tail, head);

        trace!(
            "begin_reading: head={:#x}, tail={:#x}, data_available={}",
            head, tail, head.saturating_sub(tail)
        );
    }

    pub(crate) fn data_slice(
        &'a self) -> &'a [u8] {
        let slice = self.slice();
        let data_start = self.data_offset as usize;
        let data_end = data_start + self.data_size as usize;
        &slice[data_start..data_end]
    }

    pub(crate) fn peek_header(
        &'a self,
        cursor: &CpuRingCursor,
        data_slice: &'a [u8],
        start: &mut usize) -> IOResult<abi::Header<'a>> {
        *start = (cursor.start() & self.data_mask) as usize;
        let end = *start + abi::Header::data_offset();
        let header_slice = &data_slice[*start .. end];

        match abi::Header::from_slice(header_slice) {
            Ok(header) => Ok(header),
            Err(_) => {
                trace!(
                    "peek_header failed: header slice too small, start={:#x}, end={:#x}",
                    *start, end
                );
                Err(io_error("Header slice was not large enough."))
            }
        }
    }

    pub(crate) fn peek_u64(
        &self,
        cursor: &CpuRingCursor,
        offset: u64) -> u64 {
        let start = ((cursor.start() + offset) & self.data_mask) as usize;
        let end = start + 8;

        let data_slice = self.data_slice();
        u64::from_ne_bytes(data_slice[start..end].try_into().unwrap())
    }

    pub(crate) fn read(
        &'a self,
        cursor: &mut CpuRingCursor,
        temp: &'a mut Vec<u8>) -> IOResult<&'a [u8]> {
        let data_slice = self.data_slice();
        let mut header_start = 0;

        let header = self.peek_header(
            cursor,
            data_slice,
            &mut header_start)?;

        let data_size = header.size as usize;
        let data_end = header_start + data_size;

        cursor.advance(header.size);

        if header_start + data_size <= self.data_size as usize {
            /* Fits within slice, no copy */
            trace!(
                "read: entry_type={}, size={}, header_start={:#x}, no_wrap",
                header.entry_type, header.size, header_start
            );
            Ok(&data_slice[header_start .. data_end])
        } else {
            /* Data wrapped, requires copy */
            trace!(
                "read: entry_type={}, size={}, header_start={:#x}, wrapped",
                header.entry_type, header.size, header_start
            );
            temp.clear();
            temp.extend_from_slice(&data_slice[header_start..]);
            let remaining = data_size - temp.len();
            temp.extend_from_slice(&data_slice[0..remaining]);

            Ok(&temp[0..])
        }
    }

    pub(crate) fn end_reading(
        &mut self,
        cursor: &CpuRingCursor) {
        trace!("end_reading: updating tail to {:#x}", cursor.start());
        unsafe {
            mb();
            let tail: *mut u64 = self.pages.offset(1032) as *mut u64;
            *tail = cursor.start();
        }
    }

    fn head(&self) -> u64 {
        let slice = self.slice();
        u64::from_ne_bytes(
            slice[1024..1032].try_into().unwrap())
    }

    fn tail(&self) -> u64 {
        let slice = self.slice();
        u64::from_ne_bytes(
            slice[1032..1040].try_into().unwrap())
    }
}

impl Drop for CpuRingReader {
    fn drop(&mut self) {
        if self.owned {
            unsafe {
                munmap(self.pages as *mut c_void, self.pages_len);
            }
        }
    }
}

pub(crate) struct CpuRingBuf {
    cpu: u32,
    attributes: Rc<perf_event_attr>,
    sample_time_offset: u16,
    fd: Option<i32>,
    id: Option<u64>,
}

impl CpuRingBuf {
    pub(crate) fn new(
        cpu: u32,
        attributes: Rc<perf_event_attr>) -> Self {
        let mut sample_time_offset = abi::Header::data_offset() as u16;

        if attributes.has_format(abi::PERF_SAMPLE_IDENTIFIER) {
            sample_time_offset += 8;
        }

        if attributes.has_format(abi::PERF_SAMPLE_IP) {
            sample_time_offset += 8;
        }

        if attributes.has_format(abi::PERF_SAMPLE_TID) {
            sample_time_offset += 8;
        }

        debug!(
            "CpuRingBuf created: cpu={}, sample_time_offset={}",
            cpu, sample_time_offset
        );

        Self {
            cpu,
            attributes,
            sample_time_offset,
            fd: None,
            id: None,
        }
    }

    pub(crate) fn ancillary(&self) -> AncillaryData {
        AncillaryData {
            cpu: self.cpu,
            attributes: self.attributes.clone(),
        }
    }

    /// Borrow the per-CPU perf fd for the lifetime of `self`.
    ///
    /// Returns `None` if the buffer has not been opened yet.
    #[cfg(target_os = "linux")]
    pub(crate) fn borrowed_fd(&self) -> Option<BorrowedFd<'_>> {
        /* SAFETY: `self.fd` is an open file descriptor for the lifetime
         * of this `CpuRingBuf`. The returned `BorrowedFd` is tied to
         * `&self` so the caller cannot outlive it. */
        self.fd.map(|fd| unsafe { BorrowedFd::borrow_raw(fd) })
    }

    fn read_id(&self) -> IOResult<u64> {
        match &self.fd {
            Some(fd) => {
                let mut id = read_format::default();

                unsafe {
                    let result = read(
                        *fd,
                        &mut id as *mut read_format as *mut c_void,
                        16);

                    if result == -1 {
                        let err = IOError::last_os_error();
                        warn!("read_id failed: cpu={}, fd={}, error={}", self.cpu, fd, err);
                        return Err(err);
                    }
                }

                trace!("read_id succeeded: cpu={}, id={}", self.cpu, id.id);
                Ok(id.id)
            },

            None => {
                warn!("read_id failed: ring buffer not open, cpu={}", self.cpu);
                Err(io_error("Ring buffer is not open."))
            }
        }
    }

    pub(crate) fn sample_time_offset(&self) -> u16 {
        self.sample_time_offset
    }

    pub(crate) fn id(&self) -> Option<u64> {
        self.id
    }

    pub(crate) fn is_open(&self) -> bool {
        self.fd.is_some()
    }

    pub(crate) fn open(
        &mut self,
        target_pid: Option<i32>) -> IOResult<()> {
        let pid = target_pid.unwrap_or(-1);

        let fd = perf_event_open(
            &self.attributes,
            pid,
            self.cpu as i32,
            -1,
            0)?;

        self.fd = Some(fd as i32);
        self.id = Some(self.read_id()?);

        info!(
            "CpuRingBuf opened: cpu={}, pid={}, fd={}, id={}",
            self.cpu, pid, fd, self.id.unwrap()
        );

        Ok(())
    }

    pub(crate) fn create_reader(
        &self,
        page_count: usize) -> IOResult<CpuRingReader> {
        if self.fd.is_none() {
            warn!("create_reader failed: ring buffer not open, cpu={}", self.cpu);
            return Err(io_error(
                "Ring buffer is not open."));
        }

        let data_bytes = ring_data_bytes(page_count);

        unsafe {
            let page_size = sysconf(_SC_PAGE_SIZE) as usize;
            let pages_len = data_bytes + page_size; /* + metadata page */

            let pages = mmap(
                std::ptr::null_mut::<u8>() as *mut c_void,
                pages_len,
                PROT_READ | PROT_WRITE,
                MAP_SHARED,
                self.fd.unwrap(),
                0);

            if pages == MAP_FAILED {
                let err = IOError::last_os_error();
                warn!(
                    "create_reader mmap failed: cpu={}, page_count={}, pages_len={}, error={}",
                    self.cpu, page_count, pages_len, err
                );
                return Err(err);
            }

            debug!(
                "CpuRingReader created: cpu={}, page_count={}, pages_len={}",
                self.cpu, page_count, pages_len
            );

            Ok(CpuRingReader::new(
                pages as *mut u8,
                pages_len))
        }
    }

    pub(crate) fn enable(
        &self) -> IOResult<()> {
        if self.fd.is_none() {
            warn!("enable failed: ring buffer not open, cpu={}", self.cpu);
            return Err(io_error(
                "Ring buffer is not open."));
        }

        unsafe {
            let result = ioctl(
                self.fd.unwrap(),
                PERF_EVENT_IOC_ENABLE as _);

            if result != 0 {
                let err = IOError::last_os_error();
                warn!("enable ioctl failed: cpu={}, fd={}, error={}", self.cpu, self.fd.unwrap(), err);
                return Err(err);
            }
        };

        debug!("CpuRingBuf enabled: cpu={}, id={:?}", self.cpu, self.id);

        Ok(())
    }

    pub(crate) fn disable(
        &self) -> IOResult<()> {
        if self.fd.is_none() {
            warn!("disable failed: ring buffer not open, cpu={}", self.cpu);
            return Err(io_error(
                "Ring buffer is not open."));
        }

        unsafe {
            let result = ioctl(
                self.fd.unwrap(),
                PERF_EVENT_IOC_DISABLE as _);

            if result != 0 {
                let err = IOError::last_os_error();
                warn!("disable ioctl failed: cpu={}, fd={}, error={}", self.cpu, self.fd.unwrap(), err);
                return Err(err);
            }
        };

        debug!("CpuRingBuf disabled: cpu={}, id={:?}", self.cpu, self.id);

        Ok(())
    }

    pub(crate) fn redirect_to(
        &self, 
        target: &Self) -> IOResult<()> {
        if self.fd.is_none() || target.fd.is_none() {
            warn!(
                "redirect_to failed: ring buffer or target not open, cpu={}, target_cpu={}",
                self.cpu, target.cpu
            );
            return Err(io_error(
                "Ring buffer or target is not open."));
        }

        unsafe {
            let result = ioctl(
                self.fd.unwrap(),
                PERF_EVENT_IOC_SET_OUTPUT as _,
                target.fd.unwrap());

            if result == -1 {
                let err = IOError::last_os_error();
                warn!(
                    "redirect_to ioctl failed: cpu={}, target_cpu={}, error={}",
                    self.cpu, target.cpu, err
                );
                return Err(err);
            }

            debug!(
                "CpuRingBuf redirected: cpu={}, id={:?}, target_cpu={}, target_id={:?}",
                self.cpu, self.id, target.cpu, target.id
            );

            Ok(())
        }
    }

    pub(crate) fn set_filter(&self, filter: &std::ffi::CStr) -> IOResult<()> {
        if self.fd.is_none() {
            warn!("set_filter failed: ring buffer not open, cpu={}", self.cpu);
            return Err(io_error("Ring buffer is not open."));
        }

        unsafe {
            let result = ioctl(
                self.fd.unwrap(),
                abi::PERF_EVENT_IOC_SET_FILTER as _,
                filter.as_ptr(),
            );

            if result == -1 {
                let err = IOError::last_os_error();
                warn!(
                    "set_filter ioctl failed: cpu={}, fd={}, error={}",
                    self.cpu,
                    self.fd.unwrap(),
                    err
                );
                return Err(err);
            }
        };

        debug!("CpuRingBuf filter set: cpu={}, id={:?}", self.cpu, self.id);

        Ok(())
    }
}

impl Drop for CpuRingBuf {
    fn drop(&mut self) {
        if let Some(fd) = self.fd {
            unsafe {
                close(fd);
            }
        }
    }
}

/// A ring buffer backed by user-space memory instead of kernel memory.
///
/// This struct uses the same memory layout as the kernel's perf ring buffer,
/// allowing it to be read by `CpuRingReader`. It is used during
/// `capture_environment` so that synthetic events (COMM, MMAP2) can be
/// written from a background thread while the main parse loop reads them
/// alongside real kernel events.
pub(crate) struct InProcessRingBuf {
    data: Vec<u8>,
    data_offset: usize,
    data_size: usize,
    data_mask: usize,
    head: usize,
}

/// Writer half of an `InProcessRingBuf`.
///
/// This is `Send` so it can be moved to another thread. The writer
/// appends perf-event records and updates the head pointer with the
/// appropriate memory barriers so a concurrent `CpuRingReader` sees the
/// data.
pub struct InProcessRingBufWriter {
    data: *mut u8,
    data_offset: usize,
    data_size: usize,
    data_mask: usize,
    head: usize,
    lost_count: u64,
}

// SAFETY: InProcessRingBufWriter only writes to memory via raw pointer.
// The ring buffer protocol (single writer, single reader, memory barriers)
// ensures safe concurrent access with a CpuRingReader on another thread.
unsafe impl Send for InProcessRingBufWriter {}

impl InProcessRingBuf {
    /// Create a new in-process ring buffer with the given number of data pages.
    /// The data_pages value will be rounded up to the next power of two.
    pub(crate) fn new(data_pages: usize) -> Self {
        let page_size = unsafe { sysconf(_SC_PAGE_SIZE) as usize };
        let data_pages = data_pages.next_power_of_two();
        let data_size = data_pages * page_size;
        let data_offset = page_size; /* first page is metadata */
        let total_size = data_offset + data_size;

        let mut data = vec![0u8; total_size];

        /* Set data_offset at byte 1040 */
        data[1040..1048].copy_from_slice(
            &(data_offset as u64).to_ne_bytes());

        /* Set data_size at byte 1048 */
        data[1048..1056].copy_from_slice(
            &(data_size as u64).to_ne_bytes());

        debug!(
            "InProcessRingBuf created: data_pages={}, data_size={:#x}, total_size={:#x}",
            data_pages, data_size, total_size
        );

        Self {
            data,
            data_offset,
            data_size,
            data_mask: data_size - 1,
            head: 0,
        }
    }

    /// Create a `CpuRingReader` that reads from this buffer's memory.
    /// The reader does NOT own the memory.
    pub(crate) fn create_reader(&mut self) -> CpuRingReader {
        CpuRingReader::new_unowned(
            self.data.as_mut_ptr(),
            self.data.len())
    }

    /// Split into a writer (movable to another thread) and a reader.
    /// The writer and reader share the underlying memory.
    ///
    /// # Safety
    /// The returned `InProcessRingBufWriter` holds a raw pointer into
    /// `self.data`. The caller must ensure that `self` outlives both the
    /// writer and the reader.
    pub(crate) fn writer(&mut self) -> InProcessRingBufWriter {
        InProcessRingBufWriter {
            data: self.data.as_mut_ptr(),
            data_offset: self.data_offset,
            data_size: self.data_size,
            data_mask: self.data_mask,
            head: self.head,
            lost_count: 0,
        }
    }
}

impl InProcessRingBufWriter {
    /// Maximum time to spin-wait for space to become available (100 ms).
    const WAIT_TIMEOUT: std::time::Duration = std::time::Duration::from_millis(100);

    /// Size of a PERF_RECORD_LOST record with sample_id_all fields:
    /// 8-byte header + (id + lost) + (pid/tid + time + id).
    const LOST_RECORD_SIZE: usize = 48;

    /// Read the current tail value written by the reader.
    fn tail(&self) -> usize {
        unsafe {
            let tail_ptr = self.data.add(1032) as *const u64;
            std::ptr::read_volatile(tail_ptr) as usize
        }
    }

    /// Returns the available space in the data region.
    fn available(&self) -> usize {
        let tail = self.tail();
        self.data_size - (self.head - tail)
    }

    /// Spin-wait until at least `needed` bytes are available or timeout
    /// elapses.  Returns `true` if space is available.
    fn wait_for_space(&self, needed: usize) -> bool {
        let start = std::time::Instant::now();

        loop {
            if self.available() >= needed {
                return true;
            }

            if start.elapsed() >= Self::WAIT_TIMEOUT {
                return false;
            }

            std::thread::sleep(std::time::Duration::from_millis(10));
        }
    }

    /// Write raw bytes into the ring buffer without any lost-record logic.
    /// Caller must ensure aligned record size is <= `self.data_size` and that
    /// sufficient space is available.
    fn write_raw(&mut self, record: &[u8], aligned_len: usize) {
        let write_pos = self.head & self.data_mask;

        unsafe {
            let dest = self.data.add(self.data_offset);

            if write_pos + record.len() <= self.data_size {
                /* Fits without wrapping */
                std::ptr::copy_nonoverlapping(
                    record.as_ptr(),
                    dest.add(write_pos),
                    record.len());
            } else {
                /* Wraps around */
                let first_part = self.data_size - write_pos;
                std::ptr::copy_nonoverlapping(
                    record.as_ptr(),
                    dest.add(write_pos),
                    first_part);
                std::ptr::copy_nonoverlapping(
                    record.as_ptr().add(first_part),
                    dest,
                    record.len() - first_part);
            }

            let padding = aligned_len - record.len();
            if padding > 0 {
                let padding_start = (write_pos + record.len()) & self.data_mask;

                if padding_start + padding <= self.data_size {
                    std::ptr::write_bytes(dest.add(padding_start), 0, padding);
                } else {
                    let first_part = self.data_size - padding_start;
                    std::ptr::write_bytes(dest.add(padding_start), 0, first_part);
                    std::ptr::write_bytes(dest, 0, padding - first_part);
                }
            }

            self.head += aligned_len;

            /* Memory barrier then update head so the reader sees the data */
            mb();
            let head_ptr = self.data.add(1024) as *mut u64;
            std::ptr::write_volatile(head_ptr, self.head as u64);
        }

        trace!(
            "InProcessRingBufWriter::write_raw: record_len={}, head={:#x}",
            record.len(), self.head
        );
    }

    /// If there are pending lost events and enough space is available,
    /// write a PERF_RECORD_LOST record and reset the counter.
    fn flush_pending_lost(&mut self) {
        if self.lost_count == 0 {
            return;
        }

        if self.available() < Self::LOST_RECORD_SIZE {
            return;
        }

        let mut record = Vec::new();

        /* Payload: id + lost count + sample_id_all(pid/tid,time,id) */
        let mut payload = Vec::new();
        payload.extend_from_slice(&0u64.to_ne_bytes());
        payload.extend_from_slice(&self.lost_count.to_ne_bytes());
        payload.extend_from_slice(&0u64.to_ne_bytes()); /* pid/tid */
        payload.extend_from_slice(
            &perf_timestamp(&RingBufBuilder::common_attributes()).to_ne_bytes()
        );
        payload.extend_from_slice(&0u64.to_ne_bytes()); /* id */

        abi::Header::write(
            abi::PERF_RECORD_LOST,
            0,
            &payload,
            &mut record);

        warn!(
            "InProcessRingBufWriter: writing lost record, lost_count={}",
            self.lost_count
        );

        self.lost_count = 0;
        self.write_raw(&record, abi::align_to_perf_record(record.len()));
    }

    /// Flush any pending lost record. Call this at the end of a session
    /// to ensure lost events are reported even when no more writes follow.
    pub fn flush(&mut self) {
        self.flush_pending_lost();
    }

    /// Write a complete perf event record into the ring buffer.
    /// If not enough space is available after a brief spin-wait, the
    /// record is dropped, the lost counter is incremented, and a
    /// warning is logged.  On a successful write, any accumulated
    /// lost events are flushed first.
    pub fn write(&mut self, record: &[u8]) {
        let aligned_len = abi::align_to_perf_record(record.len());

        if aligned_len > self.data_size {
            warn!(
                "InProcessRingBufWriter::write: aligned_record_len={} exceeds data_size={}, dropping",
                aligned_len, self.data_size
            );
            self.lost_count += 1;
            return;
        }

        /* Account for a pending lost record that may need to be written
         * alongside the actual record. */
        let extra = if self.lost_count > 0 {
            Self::LOST_RECORD_SIZE
        } else {
            0
        };

        let needed = aligned_len + extra;

        if self.available() < needed {
            warn!(
                "InProcessRingBufWriter::write: insufficient space for record_len={}, waiting",
                record.len()
            );

            if !self.wait_for_space(needed) {
                warn!(
                    "InProcessRingBufWriter::write: timed out waiting for space, dropping record_len={}",
                    record.len()
                );
                self.lost_count += 1;
                return;
            }
        }

        self.flush_pending_lost();
        self.write_raw(record, aligned_len);
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    fn swap(
        source: &[u8],
        dest: &mut [u8]) {
        let mut i: usize = 0;

        for b in source {
            dest[i] = *b;
            i += 1;
        }
    }

    #[test]
    fn reader() {
        let mut temp = Vec::new();

        let mut data = Vec::new();
        data.resize(2 * 4096, 0);

        let slice = data.as_mut_slice();

        /* Data Offset: 4096 */
        swap(
            &4096u64.to_ne_bytes(),
            &mut slice[1040..1048]);

        /* Data Size: 4096 */
        swap(
            &4096u64.to_ne_bytes(),
            &mut slice[1048..1056]);

        /* Write a few entries */
        let mut entry = Vec::new();

        /* 1 */
        abi::Header::write(1024, 0, &1u64.to_ne_bytes(), &mut entry);

        /* 2 */
        abi::Header::write(1024, 0, &2u64.to_ne_bytes(), &mut entry);

        /* 3 */
        abi::Header::write(1024, 0, &3u64.to_ne_bytes(), &mut entry);

        /* Add entry to ring buffer */
        swap(
            entry.as_slice(),
            &mut slice[4096..]);

        /* Head position */
        swap(
            &(entry.len() as u64).to_ne_bytes(),
            &mut slice[1024..1032]);

        /* Tail position */
        swap(
            &0u64.to_ne_bytes(),
            &mut slice[1032..1040]);

        let mut reader = CpuRingReader::new(
            data.as_mut_ptr(),
            data.len());

        let mut cursor = CpuRingCursor::default();
        reader.begin_reading(&mut cursor);

        assert_eq!(true, cursor.more());

        /* 1 */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(16, header.size);
        assert_eq!(16, read.len());
        assert_eq!(1, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        /* 2 */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(16, header.size);
        assert_eq!(16, read.len());
        assert_eq!(2, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        /* 3 */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(16, header.size);
        assert_eq!(16, read.len());
        assert_eq!(3, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        /* Reading after end results in 0 sized slice */
        assert_eq!(false, cursor.more());
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        assert_eq!(0, read.len());

        reader.end_reading(&cursor);
        drop(reader);

        let slice = data.as_mut_slice();

        /* Add wrapping entry */
        entry.clear();

        /* 4 */
        abi::Header::write(1024, 0, &4u64.to_ne_bytes(), &mut entry);

        /* Add entry to ring buffer */
        swap(
            &entry.as_slice()[0..8],
            &mut slice[8184..8192]);

        swap(
            &entry.as_slice()[8..16],
            &mut slice[4096..4104]);

        /* Head position: 8200 */
        swap(
            &8200u64.to_ne_bytes(),
            &mut slice[1024..1032]);

        /* Tail position: 8184 */
        swap(
            &8184u64.to_ne_bytes(),
            &mut slice[1032..1040]);

        let mut reader = CpuRingReader::new(
            data.as_mut_ptr(),
            data.len());

        reader.begin_reading(&mut cursor);

        assert_eq!(true, cursor.more());

        /* 4 */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(16, header.size);
        assert_eq!(16, read.len());
        assert_eq!(4, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        /* Reading after end results in 0 sized slice */
        assert_eq!(false, cursor.more());
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        assert_eq!(0, read.len());

        reader.end_reading(&cursor);

        /* Ensure update stuck */
        reader.begin_reading(&mut cursor);
        assert_eq!(false, cursor.more());
        reader.end_reading(&cursor);
    }

    #[test]
    #[ignore]
    fn open_close() {
        println!("NOTE: Requires sudo/SYS_CAP_ADMIN/tracefs access.");

        let cpu = 0;
        let pid = Some(0);
        let mut rb_head = RingBufBuilder::for_kernel().build().for_cpu(cpu);

        rb_head.open(pid).unwrap();

        let kernel = RingBufBuilder::for_kernel()
            .with_executable_mmap_records();

        let page_count = 1;
        let _reader = rb_head.create_reader(page_count).unwrap();

        let mut rb = kernel.build().for_cpu(cpu);
        rb.open(pid).unwrap();
        rb.redirect_to(&rb_head).unwrap();
        rb.enable().unwrap();
    }

    #[test]
    fn in_process_ring_buf_write_read() {
        let mut temp = Vec::new();

        /* Create an in-process ring buffer with 1 data page */
        let mut ring_buf = InProcessRingBuf::new(1);

        /* Get writer and reader */
        let mut writer = ring_buf.writer();
        let mut reader = ring_buf.create_reader();

        /* Write three records using abi::Header format */
        let mut record = Vec::new();
        abi::Header::write(1024, 0, &1u64.to_ne_bytes(), &mut record);
        writer.write(&record);

        record.clear();
        abi::Header::write(1024, 0, &2u64.to_ne_bytes(), &mut record);
        writer.write(&record);

        record.clear();
        abi::Header::write(1024, 0, &3u64.to_ne_bytes(), &mut record);
        writer.write(&record);

        /* Read from the ring buffer */
        let mut cursor = CpuRingCursor::default();
        reader.begin_reading(&mut cursor);

        assert!(cursor.more());

        /* Read record 1 */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(16, header.size);
        assert_eq!(1, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        /* Read record 2 */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(16, header.size);
        assert_eq!(2, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        /* Read record 3 */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(16, header.size);
        assert_eq!(3, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        /* No more data */
        assert!(!cursor.more());

        reader.end_reading(&cursor);
    }

    #[test]
    fn in_process_ring_buf_writer_threaded() {
        let mut temp = Vec::new();
        let mut ring_buf = InProcessRingBuf::new(1);

        /* Get the reader before spawning the writer thread */
        let mut reader = ring_buf.create_reader();

        /* Get a writer and move it to another thread */
        let mut writer = ring_buf.writer();

        let handle = std::thread::spawn(move || {
            let mut record = Vec::new();
            for i in 1u64..=5 {
                record.clear();
                abi::Header::write(1024, 0, &i.to_ne_bytes(), &mut record);
                writer.write(&record);
            }
        });

        handle.join().unwrap();

        /* Reader should see all 5 records */
        let mut cursor = CpuRingCursor::default();
        reader.begin_reading(&mut cursor);

        assert!(cursor.more());

        for expected in 1u64..=5 {
            let read = reader.read(&mut cursor, &mut temp).unwrap();
            let header = abi::Header::from_slice(read).unwrap();
            assert_eq!(1024, header.entry_type);
            assert_eq!(16, header.size);
            assert_eq!(
                expected,
                u64::from_ne_bytes(read[8..16].try_into().unwrap()));
        }

        assert!(!cursor.more());
        reader.end_reading(&cursor);
    }

    #[test]
    fn in_process_ring_buf_write_wrap() {
        let mut temp = Vec::new();

        /* Create an in-process ring buffer with 1 data page */
        let mut ring_buf = InProcessRingBuf::new(1);
        let mut writer = ring_buf.writer();
        let mut reader = ring_buf.create_reader();

        /* Each record is 16 bytes (8-byte header + 8-byte payload).
         * Write 255 records to advance head to 4080 bytes, leaving
         * 16 bytes before the end of the 4096-byte data region. */
        let mut record = Vec::new();
        for i in 0u64..255 {
            record.clear();
            abi::Header::write(1024, 0, &i.to_ne_bytes(), &mut record);
            writer.write(&record);
        }

        /* Read and discard those records, advancing the tail to 4080
         * so the writer sees enough free space for the next write. */
        let mut cursor = CpuRingCursor::default();
        reader.begin_reading(&mut cursor);
        while cursor.more() {
            let _ = reader.read(&mut cursor, &mut temp).unwrap();
        }
        reader.end_reading(&cursor);

        /* Write a 24-byte record (8-byte header + 16-byte payload).
         * With head at 4080 and data_size = 4096:
         *   write_pos = 4080, write_pos + 24 = 4104 > 4096
         * so the record must wrap around the end of the buffer. */
        let payload = [0x55u8; 16]; /* arbitrary fill pattern */
        record.clear();
        abi::Header::write(1024, 0, &payload, &mut record);
        assert_eq!(24, record.len());
        writer.write(&record);

        /* Read the wrapped record and verify its contents */
        reader.begin_reading(&mut cursor);
        assert!(cursor.more());

        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(24, header.size);
        assert_eq!(24, read.len());
        assert_eq!(payload, read[8..24]);

        assert!(!cursor.more());
        reader.end_reading(&cursor);
    }

    #[test]
    fn in_process_ring_buf_write_unaligned_record_aligns_head() {
        let mut temp = Vec::new();
        let mut ring_buf = InProcessRingBuf::new(1);
        let mut writer = ring_buf.writer();
        let mut reader = ring_buf.create_reader();
        let mut cursor = CpuRingCursor::default();

        let mut record = Vec::new();
        let payload = [0xABu8; 5];
        abi::Header::write(1024, 0, &payload, &mut record);
        assert_eq!(16, record.len());
        writer.write(&record);

        reader.begin_reading(&mut cursor);
        assert_eq!(16, cursor.end);
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(16, header.size);
        assert_eq!(payload, read[8..13]);
        assert_eq!([0u8; 3], read[13..16]);
        assert!(!cursor.more());
        reader.end_reading(&cursor);

        record.clear();
        abi::Header::write(1024, 0, &42u64.to_ne_bytes(), &mut record);
        writer.write(&record);

        reader.begin_reading(&mut cursor);
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(16, header.size);
        assert_eq!(42, u64::from_ne_bytes(read[8..16].try_into().unwrap()));
        assert!(!cursor.more());
        reader.end_reading(&cursor);
    }

    #[test]
    fn in_process_ring_buf_lost_record_on_next_write() {
        let mut temp = Vec::new();

        /* 1 data page = 4096 bytes */
        let mut ring_buf = InProcessRingBuf::new(1);
        let mut writer = ring_buf.writer();
        let mut reader = ring_buf.create_reader();

        /* Fill the buffer completely: 256 × 16-byte records = 4096 bytes.
         * After this, available() == 0 so the next write will be dropped. */
        let mut record = Vec::new();
        for i in 0u64..256 {
            record.clear();
            abi::Header::write(1024, 0, &i.to_ne_bytes(), &mut record);
            writer.write(&record);
        }

        /* Attempt a write that will fail due to no space - this should
         * increment lost_count rather than silently dropping. */
        record.clear();
        abi::Header::write(1024, 0, &0xDEADu64.to_ne_bytes(), &mut record);
        writer.write(&record);

        /* Drain all data so the reader advances the tail, freeing space. */
        let mut cursor = CpuRingCursor::default();
        reader.begin_reading(&mut cursor);
        while cursor.more() {
            let _ = reader.read(&mut cursor, &mut temp).unwrap();
        }
        reader.end_reading(&cursor);

        /* Next successful write should first emit a PERF_RECORD_LOST,
         * then the actual record. */
        record.clear();
        abi::Header::write(1024, 0, &42u64.to_ne_bytes(), &mut record);
        writer.write(&record);

        reader.begin_reading(&mut cursor);
        assert!(cursor.more());

        /* First record should be PERF_RECORD_LOST */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(abi::PERF_RECORD_LOST, header.entry_type);
        assert_eq!(48, header.size);
        let lost_id = u64::from_ne_bytes(read[8..16].try_into().unwrap());
        let lost_count = u64::from_ne_bytes(read[16..24].try_into().unwrap());
        let sample_id = u64::from_ne_bytes(read[40..48].try_into().unwrap());
        assert_eq!(0, lost_id);
        assert_eq!(1, lost_count);
        assert_eq!(0, sample_id);

        /* Second record should be the actual data */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(42, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        assert!(!cursor.more());
        reader.end_reading(&cursor);
    }

    #[test]
    fn in_process_ring_buf_lost_record_accumulates() {
        let mut temp = Vec::new();

        let mut ring_buf = InProcessRingBuf::new(1);
        let mut writer = ring_buf.writer();
        let mut reader = ring_buf.create_reader();

        /* Fill the buffer completely */
        let mut record = Vec::new();
        for i in 0u64..256 {
            record.clear();
            abi::Header::write(1024, 0, &i.to_ne_bytes(), &mut record);
            writer.write(&record);
        }

        /* Attempt 3 writes that will each fail */
        for _ in 0..3 {
            record.clear();
            abi::Header::write(1024, 0, &0u64.to_ne_bytes(), &mut record);
            writer.write(&record);
        }

        /* Drain */
        let mut cursor = CpuRingCursor::default();
        reader.begin_reading(&mut cursor);
        while cursor.more() {
            let _ = reader.read(&mut cursor, &mut temp).unwrap();
        }
        reader.end_reading(&cursor);

        /* Next write should emit a single PERF_RECORD_LOST with count=3 */
        record.clear();
        abi::Header::write(1024, 0, &99u64.to_ne_bytes(), &mut record);
        writer.write(&record);

        reader.begin_reading(&mut cursor);
        assert!(cursor.more());

        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(abi::PERF_RECORD_LOST, header.entry_type);
        assert_eq!(48, header.size);
        let lost_count = u64::from_ne_bytes(read[16..24].try_into().unwrap());
        let sample_id = u64::from_ne_bytes(read[40..48].try_into().unwrap());
        assert_eq!(3, lost_count);
        assert_eq!(0, sample_id);

        /* Followed by the actual data record */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(99, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        assert!(!cursor.more());
        reader.end_reading(&cursor);
    }

    #[test]
    fn in_process_ring_buf_flush_writes_lost_record() {
        let mut temp = Vec::new();

        let mut ring_buf = InProcessRingBuf::new(1);
        let mut writer = ring_buf.writer();
        let mut reader = ring_buf.create_reader();

        /* Fill the buffer */
        let mut record = Vec::new();
        for i in 0u64..256 {
            record.clear();
            abi::Header::write(1024, 0, &i.to_ne_bytes(), &mut record);
            writer.write(&record);
        }

        /* Fail 2 writes */
        for _ in 0..2 {
            record.clear();
            abi::Header::write(1024, 0, &0u64.to_ne_bytes(), &mut record);
            writer.write(&record);
        }

        /* Drain */
        let mut cursor = CpuRingCursor::default();
        reader.begin_reading(&mut cursor);
        while cursor.more() {
            let _ = reader.read(&mut cursor, &mut temp).unwrap();
        }
        reader.end_reading(&cursor);

        /* flush() at end of session should emit the lost record */
        writer.flush();

        reader.begin_reading(&mut cursor);
        assert!(cursor.more());

        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(abi::PERF_RECORD_LOST, header.entry_type);
        assert_eq!(48, header.size);
        let lost_count = u64::from_ne_bytes(read[16..24].try_into().unwrap());
        let sample_id = u64::from_ne_bytes(read[40..48].try_into().unwrap());
        assert_eq!(2, lost_count);
        assert_eq!(0, sample_id);

        assert!(!cursor.more());
        reader.end_reading(&cursor);
    }

    #[test]
    fn in_process_ring_buf_no_lost_record_when_zero() {
        let mut temp = Vec::new();

        let mut ring_buf = InProcessRingBuf::new(1);
        let mut writer = ring_buf.writer();
        let mut reader = ring_buf.create_reader();

        /* Write a normal record */
        let mut record = Vec::new();
        abi::Header::write(1024, 0, &1u64.to_ne_bytes(), &mut record);
        writer.write(&record);

        /* flush() with no lost records should be a no-op */
        writer.flush();

        let mut cursor = CpuRingCursor::default();
        reader.begin_reading(&mut cursor);
        assert!(cursor.more());

        /* Only the normal record, no lost record */
        let read = reader.read(&mut cursor, &mut temp).unwrap();
        let header = abi::Header::from_slice(read).unwrap();
        assert_eq!(1024, header.entry_type);
        assert_eq!(1, u64::from_ne_bytes(read[8..16].try_into().unwrap()));

        assert!(!cursor.more());
        reader.end_reading(&cursor);
    }
}