ghostscope-loader 0.1.5

Loads compiled GhostScope programs, manages sessions, and orchestrates eBPF lifecycle.
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
//! GhostScope eBPF Loader
//!
//! This crate provides the `GhostScopeLoader` which manages the lifecycle of eBPF programs:
//! - Loading eBPF bytecode into the kernel
//! - Attaching/detaching uprobes to target binaries
//! - Reading trace events from RingBuf or PerfEventArray
//! - Managing BPF maps for process module offsets
//!
//! ## Architecture
//!
//! The loader supports two event output mechanisms:
//! - **RingBuf**: Modern kernel (>= 5.8) continuous byte stream
//! - **PerfEventArray**: Legacy kernel (< 5.8) per-CPU independent events
//!
//! Event parsing is handled by `ghostscope_protocol::StreamingTraceParser` which
//! adapts to the event source type automatically.

use aya::{
    maps::{
        perf::{PerfEvent, PerfEventArray},
        Array, HashMap as AyaHashMap, MapData, PerCpuArray, ProgramArray, RingBuf,
    },
    programs::{
        uprobe::{UProbeLinkId, UProbeScope},
        ProgramError, UProbe,
    },
    Ebpf, EbpfLoader, VerifierLogLevel,
};
use ghostscope_protocol::{
    BacktraceModuleRowRange, BacktraceUnwindRow, ParsedTraceEvent, StreamingTraceParser,
    TraceContext, BACKTRACE_UNWIND_ROW_SIZE,
};
use log::log_enabled;
use log::Level as LogLevel;
use std::borrow::Borrow;
use std::collections::HashSet;
use std::convert::TryInto;
use std::future::poll_fn;
use std::num::NonZeroU32;
use std::os::unix::io::AsRawFd;
use std::os::unix::io::RawFd;
use std::path::Path;
use std::task::Poll;
use std::time::Instant;
use std::{io, ops::ControlFlow};
use tokio::io::unix::AsyncFd;
use tokio::io::Interest;
use tracing::{debug, error, info, warn};

const MAX_EVENTS_PER_WAIT: usize = 128;
const MAX_RINGBUF_RECORDS_PER_WAIT: usize = 256;
const PERF_READ_BATCH_SIZE: usize = 64;
const EVENT_LOSS_OUTPUT_FAILURES_KEY: u32 = 0;

#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub struct EventLossStats {
    pub output_failures: u64,
}

impl EventLossStats {
    pub fn is_empty(self) -> bool {
        self.output_failures == 0
    }

    pub fn saturating_sub(self, previous: Self) -> Self {
        Self {
            output_failures: self
                .output_failures
                .saturating_sub(previous.output_failures),
        }
    }
}

#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub struct BacktraceUnwindRowsAppendStats {
    pub modules: usize,
    pub rows: usize,
}

// Export kernel capabilities detection
mod kernel_caps;
pub use kernel_caps::{KernelCapabilities, KernelCapabilityError};

// Export error types
mod error;
pub use error::{LoaderError, Result};

// Internal uprobe module
mod uprobe;
use uprobe::UprobeAttachmentParams;

// Use shared map types from ghostscope-process
use ghostscope_process::pinned_bpf_maps::{
    bpffs_mount_hint_for_pin_path, bt_module_row_ranges_pin_path, bt_unwind_rows_pin_path,
    pid_aliases_pin_path, proc_module_range_meta_pin_path, proc_module_ranges_pin_path,
    proc_offsets_pin_dir, proc_offsets_pin_path, BT_MODULE_ROW_RANGES_MAP_NAME,
    BT_UNWIND_ROWS_MAP_NAME, PID_ALIASES_MAP_NAME, PROC_MODULE_RANGES_MAP_NAME,
    PROC_MODULE_RANGE_META_MAP_NAME, PROC_OFFSETS_MAP_NAME,
};

/// Event output map type wrapper
enum EventMap {
    RingBuf(RingBuf<MapData>),
    PerfEventArray {
        _map: PerfEventArray<MapData>,
        cpu_buffers: Vec<PerfEventCpuBuffer>,
    },
}

#[derive(Clone, Copy, Debug)]
struct PerfBufferFd(RawFd);

impl AsRawFd for PerfBufferFd {
    fn as_raw_fd(&self) -> RawFd {
        self.0
    }
}

fn log_backtrace_unwind_row_samples<T: Borrow<MapData>>(
    array: &Array<T, BacktraceUnwindRow>,
    rows: &[BacktraceUnwindRow],
) -> Result<()> {
    fn read_row<T: Borrow<MapData>>(
        array: &Array<T, BacktraceUnwindRow>,
        row_index: usize,
    ) -> Result<BacktraceUnwindRow> {
        let key = row_index as u32;
        array.get(&key, 0).map_err(|e| {
            LoaderError::Generic(format!("Failed to read back unwind row {row_index}: {e}"))
        })
    }

    let mut sample_indices = vec![0usize, rows.len() / 2, rows.len().saturating_sub(1)];
    sample_indices.sort_unstable();
    sample_indices.dedup();

    for index in sample_indices {
        let stored = read_row(array, index)?;
        if stored == rows[index] {
            debug!(index, row = ?stored, "bt unwind row readback sample");
        } else {
            warn!(
                index,
                expected = ?rows[index],
                stored = ?stored,
                "bt unwind row readback mismatch"
            );
        }
    }
    Ok(())
}

struct PerfEventCpuBuffer {
    cpu_id: u32,
    buffer: aya::maps::perf::PerfEventArrayBuffer<MapData>,
    readiness: AsyncFd<PerfBufferFd>,
}

fn drain_perf_cpu_buffer(
    entry: &mut PerfEventCpuBuffer,
    parser: &mut StreamingTraceParser,
    trace_context: &TraceContext,
    events: &mut Vec<ParsedTraceEvent>,
) -> Result<bool> {
    let mut produced = false;
    if events.len() >= MAX_EVENTS_PER_WAIT {
        return Ok(false);
    }

    let cpu = entry.cpu_id;
    let drain_result = entry.buffer.try_fold(
        (0usize, 0u64),
        |(mut read_count, mut lost_count), event| {
            if events.len() >= MAX_EVENTS_PER_WAIT || read_count >= PERF_READ_BATCH_SIZE {
                return ControlFlow::Break(Ok((read_count, lost_count)));
            }

            match event {
                PerfEvent::Sample { head, tail } => {
                    read_count += 1;
                    produced = true;
                    debug!(
                        "PerfEvent {}: {} bytes - {:02x?}",
                        read_count - 1,
                        head.len() + tail.len(),
                        &head[..head.len().min(32)]
                    );

                    for segment in [head, tail] {
                        if segment.is_empty() {
                            continue;
                        }
                        match parser.process_segment(segment, trace_context) {
                            Ok(Some(parsed_event)) => events.push(parsed_event),
                            Ok(None) => {}
                            Err(e) => {
                                return ControlFlow::Break(Err(LoaderError::Generic(format!(
                                    "Fatal: Failed to parse trace event from PerfEventArray CPU {cpu}: {e}"
                                ))));
                            }
                        }
                    }
                }
                PerfEvent::Lost { count } => {
                    lost_count = lost_count.saturating_add(count);
                }
            }

            ControlFlow::Continue((read_count, lost_count))
        },
    );

    let (read_count, lost_count) = match drain_result {
        ControlFlow::Continue(counts) => counts,
        ControlFlow::Break(result) => result?,
    };

    if read_count > 0 {
        info!(
            "Read {} events from CPU {} buffer",
            read_count, entry.cpu_id
        );
    }
    if lost_count > 0 {
        warn!(
            "Lost {} events from CPU {} buffer",
            lost_count, entry.cpu_id
        );
    }

    Ok(produced)
}

/// Compatibility shim that mimics Aya's newer attach location helper so we can keep
/// a single call-site regardless of which `UProbe::attach` signature we compile against.
enum UProbeAttachLocation<'a> {
    AbsoluteOffset(u64),
    Function(&'a str),
}

impl<'a> UProbeAttachLocation<'a> {
    fn attach<T: AsRef<Path>>(
        self,
        program: &mut UProbe,
        target: T,
        pid: Option<i32>,
    ) -> std::result::Result<UProbeLinkId, ProgramError> {
        let scope = uprobe_scope(pid)?;
        match self {
            Self::AbsoluteOffset(offset) => program.attach(offset, target, scope),
            Self::Function(fn_name) => program.attach(fn_name, target, scope),
        }
    }
}

fn uprobe_scope(pid: Option<i32>) -> std::result::Result<UProbeScope, ProgramError> {
    match pid {
        None => Ok(UProbeScope::AllProcesses),
        Some(pid) => {
            let pid = u32::try_from(pid)
                .ok()
                .and_then(NonZeroU32::new)
                .ok_or_else(|| {
                    ProgramError::IOError(io::Error::new(
                        io::ErrorKind::InvalidInput,
                        format!("invalid uprobe PID scope: {pid}"),
                    ))
                })?;
            Ok(UProbeScope::OneProcess(pid))
        }
    }
}

pub fn hello() -> String {
    format!("Loader: {}", ghostscope_compiler::hello())
}

/// Main eBPF program loader and manager
///
/// Manages the lifecycle of eBPF programs and provides methods for:
/// - Loading eBPF bytecode
/// - Attaching/detaching uprobes
/// - Reading trace events
/// - Managing BPF maps
pub struct GhostScopeLoader {
    /// Loaded eBPF program
    bpf: Ebpf,
    /// Event output map (RingBuf or PerfEventArray)
    event_map: Option<EventMap>,
    /// eBPF-side output helper failure counters.
    event_loss_counters: Option<PerCpuArray<MapData, u64>>,
    /// ProgramArray holding bt tail-call targets.
    bt_prog_array: Option<ProgramArray<MapData>>,
    /// Active uprobe link
    uprobe_link: Option<UProbeLinkId>,
    /// Stored parameters for re-attaching uprobe
    attachment_params: Option<UprobeAttachmentParams>,
    /// Streaming parser for trace events
    parser: StreamingTraceParser,
    /// String table and metadata for parsing trace events
    trace_context: Option<TraceContext>,
    /// Optional override for PerfEventArray page count (per CPU buffer size in pages)
    perf_page_count: Option<usize>,
    /// Number of compact unwind rows currently written to bt_unwind_rows.
    backtrace_unwind_row_count: u32,
    /// Module cookies already published in bt_module_row_ranges.
    backtrace_module_row_cookies: HashSet<u64>,
    /// Whether bt_unwind_rows and bt_module_row_ranges are shared pinned maps.
    shared_backtrace_maps: bool,
}

impl std::fmt::Debug for GhostScopeLoader {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("GhostScopeLoader")
            .field("bpf", &"<eBPF object>")
            .field("event_map", &self.event_map.is_some())
            .field("event_loss_counters", &self.event_loss_counters.is_some())
            .field("bt_prog_array", &self.bt_prog_array.is_some())
            .field("uprobe_attached", &self.uprobe_link.is_some())
            .field("attachment_params", &self.attachment_params.is_some())
            .field(
                "backtrace_unwind_row_count",
                &self.backtrace_unwind_row_count,
            )
            .field(
                "backtrace_module_row_cookies",
                &self.backtrace_module_row_cookies.len(),
            )
            .field("shared_backtrace_maps", &self.shared_backtrace_maps)
            .finish()
    }
}

impl GhostScopeLoader {
    // ============================================================================
    // Lifecycle Management
    // ============================================================================

    /// Create a new loader instance from eBPF bytecode
    pub fn new(bytecode: &[u8]) -> Result<Self> {
        Self::new_with_shared_backtrace_maps(bytecode, false)
    }

    /// Create a new loader instance from eBPF bytecode, optionally binding
    /// module-normalized backtrace CFI maps to the per-process shared pins.
    pub fn new_with_shared_backtrace_maps(
        bytecode: &[u8],
        shared_backtrace_maps: bool,
    ) -> Result<Self> {
        info!(
            "Loading eBPF program from bytecode ({} bytes)",
            bytecode.len()
        );

        // Enforce: proc_module_offsets must be provided as a pinned global map by the process layer
        let pin_path = proc_offsets_pin_path()
            .map_err(|e| LoaderError::Generic(format!("Failed to resolve pinned map path: {e}")))?;
        if !pin_path.exists() {
            let hint = bpffs_mount_hint_for_pin_path(&pin_path)
                .map(|hint| format!(" {hint}"))
                .unwrap_or_default();
            return Err(LoaderError::Generic(format!(
                "Pinned map '{}' not found. Please call ghostscope-process to create it first.{}",
                pin_path.display(),
                hint
            )));
        }
        let alias_pin_path = pid_aliases_pin_path().map_err(|e| {
            LoaderError::Generic(format!("Failed to resolve pinned alias map path: {e}"))
        })?;
        if !alias_pin_path.exists() {
            let hint = bpffs_mount_hint_for_pin_path(&alias_pin_path)
                .map(|hint| format!(" {hint}"))
                .unwrap_or_default();
            return Err(LoaderError::Generic(format!(
                "Pinned map '{}' not found. Please call ghostscope-process to create it first.{}",
                alias_pin_path.display(),
                hint
            )));
        }
        let range_meta_pin_path = proc_module_range_meta_pin_path().map_err(|e| {
            LoaderError::Generic(format!("Failed to resolve pinned range meta map path: {e}"))
        })?;
        if !range_meta_pin_path.exists() {
            let hint = bpffs_mount_hint_for_pin_path(&range_meta_pin_path)
                .map(|hint| format!(" {hint}"))
                .unwrap_or_default();
            return Err(LoaderError::Generic(format!(
                "Pinned map '{}' not found. Please call ghostscope-process to create it first.{}",
                range_meta_pin_path.display(),
                hint
            )));
        }
        let ranges_pin_path = proc_module_ranges_pin_path().map_err(|e| {
            LoaderError::Generic(format!("Failed to resolve pinned ranges map path: {e}"))
        })?;
        if !ranges_pin_path.exists() {
            let hint = bpffs_mount_hint_for_pin_path(&ranges_pin_path)
                .map(|hint| format!(" {hint}"))
                .unwrap_or_default();
            return Err(LoaderError::Generic(format!(
                "Pinned map '{}' not found. Please call ghostscope-process to create it first.{}",
                ranges_pin_path.display(),
                hint
            )));
        }
        let bt_rows_pin_path = if shared_backtrace_maps {
            let path = bt_unwind_rows_pin_path().map_err(|e| {
                LoaderError::Generic(format!(
                    "Failed to resolve pinned bt_unwind_rows map path: {e}"
                ))
            })?;
            if !path.exists() {
                let hint = bpffs_mount_hint_for_pin_path(&path)
                    .map(|hint| format!(" {hint}"))
                    .unwrap_or_default();
                return Err(LoaderError::Generic(format!(
                    "Pinned map '{}' not found. Please call ghostscope-process to create it first.{}",
                    path.display(),
                    hint
                )));
            }
            Some(path)
        } else {
            None
        };
        let bt_ranges_pin_path = if shared_backtrace_maps {
            let path = bt_module_row_ranges_pin_path().map_err(|e| {
                LoaderError::Generic(format!(
                    "Failed to resolve pinned bt_module_row_ranges map path: {e}"
                ))
            })?;
            if !path.exists() {
                let hint = bpffs_mount_hint_for_pin_path(&path)
                    .map(|hint| format!(" {hint}"))
                    .unwrap_or_default();
                return Err(LoaderError::Generic(format!(
                    "Pinned map '{}' not found. Please call ghostscope-process to create it first.{}",
                    path.display(),
                    hint
                )));
            }
            Some(path)
        } else {
            None
        };

        let mut loader = EbpfLoader::new();
        let use_verbose = cfg!(debug_assertions)
            || log_enabled!(LogLevel::Trace)
            || log_enabled!(LogLevel::Debug);
        if use_verbose {
            loader.verifier_log_level(VerifierLogLevel::VERBOSE | VerifierLogLevel::STATS);
            tracing::info!("BPF verifier logs: VERBOSE (debug build/log)");
        } else {
            loader.verifier_log_level(VerifierLogLevel::DEBUG | VerifierLogLevel::STATS);
            tracing::info!("BPF verifier logs: DEBUG (release/info)");
        }
        // Configure Aya loader to reuse pinned maps by name under our per-process pin directory.
        // This makes @proc_module_offsets in the eBPF object bind to the already pinned map
        // created by ghostscope-process instead of creating a new private map.
        let pin_dir = proc_offsets_pin_dir().map_err(|e| {
            LoaderError::Generic(format!("Failed to resolve pinned map directory: {e}"))
        })?;
        if pin_dir.exists() {
            loader.map_pin_path(PROC_OFFSETS_MAP_NAME, pin_path);
            loader.map_pin_path(PID_ALIASES_MAP_NAME, alias_pin_path);
            loader.map_pin_path(PROC_MODULE_RANGE_META_MAP_NAME, range_meta_pin_path);
            loader.map_pin_path(PROC_MODULE_RANGES_MAP_NAME, ranges_pin_path);
            if let (Some(rows_path), Some(ranges_path)) =
                (bt_rows_pin_path.as_ref(), bt_ranges_pin_path.as_ref())
            {
                loader.map_pin_path(BT_UNWIND_ROWS_MAP_NAME, rows_path);
                loader.map_pin_path(BT_MODULE_ROW_RANGES_MAP_NAME, ranges_path);
            }
            tracing::info!(
                "Configured map pin directory for reuse: {}",
                pin_dir.display()
            );
        }
        match loader.load(bytecode) {
            Ok(bpf) => {
                info!("Successfully loaded eBPF program");
                Ok(Self {
                    bpf,
                    event_map: None,
                    event_loss_counters: None,
                    bt_prog_array: None,
                    uprobe_link: None,
                    attachment_params: None,
                    parser: StreamingTraceParser::new(),
                    trace_context: None,
                    perf_page_count: None,
                    backtrace_unwind_row_count: 0,
                    backtrace_module_row_cookies: HashSet::new(),
                    shared_backtrace_maps,
                })
            }
            Err(e) => {
                error!("Failed to load BPF program: {:?}", e);
                // Try to provide more specific error information
                match &e {
                    aya::EbpfError::ParseError(parse_err) => {
                        error!("Parse error details: {:?}", parse_err);
                    }
                    aya::EbpfError::BtfError(btf_err) => {
                        error!("BTF error details: {:?}", btf_err);
                    }
                    _ => {
                        error!("Other BPF error: {:?}", e);
                    }
                }
                Err(LoaderError::Aya(e))
            }
        }
    }

    // ============================================================================
    // Uprobe Management
    // ============================================================================

    /// Attach to a uprobe at the specified function offset
    pub fn attach_uprobe(
        &mut self,
        target_binary: &str,
        function_name: &str,
        offset: Option<u64>,
        pid: Option<i32>,
    ) -> Result<()> {
        self.attach_uprobe_with_program_name(target_binary, function_name, offset, pid, None)
    }

    /// Set PerfEventArray page count override (applies when using Perf backend)
    pub fn set_perf_page_count(&mut self, pages: u32) {
        self.perf_page_count = Some(pages as usize);
    }

    /// Load and register optional bt tail-call programs before the entry uprobe is attached.
    pub fn register_backtrace_tail_call_program(
        &mut self,
        program_name: Option<&str>,
    ) -> Result<()> {
        let Some(program_name) = program_name else {
            return Ok(());
        };

        info!("Registering bt tail-call step program: {}", program_name);
        let program_ref = self.bpf.program_mut(program_name).ok_or_else(|| {
            LoaderError::Generic(format!("bt tail-call program '{program_name}' not found"))
        })?;
        let program: &mut UProbe = program_ref.try_into().map_err(|e| {
            LoaderError::Generic(format!(
                "bt tail-call program '{program_name}' is not a UProbe: {e:?}"
            ))
        })?;
        program.load().map_err(LoaderError::Program)?;
        let step_fd = program
            .fd()
            .map_err(LoaderError::Program)?
            .try_clone()
            .map_err(|e| {
                LoaderError::Generic(format!(
                    "Failed to clone bt tail-call program fd for '{program_name}': {e}"
                ))
            })?;

        let map = self
            .bpf
            .take_map("bt_prog_array")
            .ok_or_else(|| LoaderError::MapNotFound("bt_prog_array".to_string()))?;
        let mut prog_array: ProgramArray<_> = map.try_into().map_err(|e| {
            LoaderError::Generic(format!("Failed to convert bt_prog_array map: {e}"))
        })?;
        prog_array.set(0, &step_fd, 0).map_err(|e| {
            LoaderError::Generic(format!("Failed to set bt tail-call program fd: {e}"))
        })?;
        self.bt_prog_array = Some(prog_array);
        info!("Registered bt tail-call step program at bt_prog_array[0]");
        Ok(())
    }

    /// Attach to a uprobe with a specific eBPF program name
    pub fn attach_uprobe_with_program_name(
        &mut self,
        target_binary: &str,
        function_name: &str,
        offset: Option<u64>,
        pid: Option<i32>,
        program_name: Option<&str>,
    ) -> Result<()> {
        info!("attach_uprobe called with offset: {:?}", offset);
        if let Some(offset) = offset {
            info!(
                "Using offset-based attachment: {} at 0x{:x} ({}) (pid: {:?})",
                target_binary, offset, function_name, pid
            );
        } else {
            info!(
                "Using function name-based attachment: {}:{} (pid: {:?})",
                target_binary, function_name, pid
            );
        }

        // Collect all available program names first to avoid borrowing conflicts
        let available_programs: Vec<String> = self
            .bpf
            .programs()
            .map(|(name, _)| name.to_string())
            .collect();

        // Debug: Print all available programs
        info!("Available programs:");
        for name in &available_programs {
            info!("  - {}", name);
        }

        // Get the program from the BPF object
        let program_name: String = if let Some(name) = program_name {
            // Use the specified program name
            info!("Using specified program name: {}", name);
            if available_programs.contains(&name.to_string()) {
                name.to_string()
            } else {
                return Err(LoaderError::Generic(format!(
                    "Specified program '{name}' not found in eBPF object"
                )));
            }
        } else {
            // Try different program names: section name first, then function name, then any program
            let program_names = ["uprobe", "main"];
            let mut found_program_name: Option<String> = None;

            for name in &program_names {
                info!("Checking if program exists: {}", name);
                if available_programs.contains(&name.to_string()) {
                    info!("Found program: {}", name);
                    found_program_name = Some(name.to_string());
                    break;
                }
            }

            // If no standard names found, use the first available program
            if found_program_name.is_none() {
                if let Some(first_name) = available_programs.first() {
                    info!(
                        "No standard program names found, using first available: {}",
                        first_name
                    );
                    found_program_name = Some(first_name.clone());
                }
            }

            found_program_name
                .ok_or_else(|| LoaderError::Generic("No suitable program found".to_string()))?
        };

        info!("Attempting to load program: {}", program_name);

        let program_ref = self
            .bpf
            .program_mut(&program_name)
            .ok_or_else(|| LoaderError::Generic(format!("Program '{program_name}' not found")))?;

        info!("Found program, attempting to convert to UProbe");
        info!("Program type: {:?}", program_ref.prog_type());

        // Check what type of program this actually is
        match program_ref {
            aya::programs::Program::UProbe(_) => {
                info!("Program is correctly recognized as UProbe");
            }
            aya::programs::Program::KProbe(_) => {
                error!("Program is incorrectly recognized as KProbe, should be UProbe");
            }
            ref _other => {
                error!("Program is unexpected type (not UProbe or KProbe)");
            }
        }

        let program: &mut UProbe = program_ref.try_into().map_err(|e| {
            LoaderError::Generic(format!("Program '{program_name}' is not a UProbe: {e:?}"))
        })?;

        // Load the program
        info!("About to load eBPF program");
        match program.load() {
            Ok(()) => {
                info!("Program loaded successfully");
            }
            Err(e) => {
                error!("eBPF program load failed: {}", e);
                error!("This typically indicates eBPF verifier rejection");

                // Check for specific verifier errors
                if let ProgramError::SyscallError(syscall_error) = &e {
                    error!(
                        "Syscall '{}' failed: {}",
                        syscall_error.call, syscall_error.io_error
                    );

                    // Check for common error codes
                    if let Some(errno) = syscall_error.io_error.raw_os_error() {
                        match errno {
                            22 => error!(
                                "EINVAL (22): Invalid argument - likely eBPF verifier rejection"
                            ),
                            7 => error!("E2BIG (7): Program too large"),
                            13 => error!("EACCES (13): Permission denied"),
                            95 => error!("EOPNOTSUPP (95): Operation not supported"),
                            _ => error!("Unknown errno: {}", errno),
                        }
                    }
                }

                // Log additional debugging info
                error!("Program name: {}", program_name);
                error!("Program type: {:?}", program_ref.prog_type());

                return Err(LoaderError::Program(e));
            }
        }

        // Attach the uprobe using Aya API via a compatibility helper
        // so argument ordering stays explicit regardless of Aya version.
        let attach_location = match offset {
            Some(offset) => UProbeAttachLocation::AbsoluteOffset(offset),
            None => UProbeAttachLocation::Function(function_name),
        };
        let attach_result = attach_location.attach(program, target_binary, pid);

        match attach_result {
            Ok(link) => {
                if let Some(offset) = offset {
                    info!(
                        "Uprobe attached successfully to {} at offset 0x{:x}",
                        target_binary, offset
                    );
                } else {
                    info!(
                        "Uprobe attached successfully to {}:{}",
                        target_binary, function_name
                    );
                }

                // Store the link handle and attachment parameters for later use
                self.uprobe_link = Some(link);
                self.attachment_params = Some(UprobeAttachmentParams {
                    target_binary: target_binary.to_string(),
                    function_name: function_name.to_string(),
                    offset,
                    pid,
                    program_name,
                });
            }
            Err(e) => {
                if let Some(offset) = offset {
                    error!(
                        "Failed to attach uprobe to {} at offset 0x{:x}: {}",
                        target_binary, offset, e
                    );
                    error!("Detailed error: {:#?}", e);
                } else {
                    error!(
                        "Failed to attach uprobe to {}:{}: {}",
                        target_binary, function_name, e
                    );
                    error!("Detailed error: {:#?}", e);
                }

                // Try to provide more helpful error information
                if let ProgramError::SyscallError(syscall_error) = &e {
                    error!(
                        "Syscall '{}' failed: {}",
                        syscall_error.call, syscall_error.io_error
                    );
                    if let Some(13) = syscall_error.io_error.raw_os_error() {
                        error!("Permission denied - make sure to run with sudo");
                    }
                }

                return Err(LoaderError::Program(e));
            }
        }

        // Initialize event map after successful attachment
        // Try RingBuf first, fall back to PerfEventArray
        let event_map = if let Some(map) = self.bpf.take_map("ringbuf") {
            info!("Initializing RingBuf event map");
            let ringbuf: RingBuf<_> = map
                .try_into()
                .map_err(|e| LoaderError::Generic(format!("Failed to convert ringbuf map: {e}")))?;
            EventMap::RingBuf(ringbuf)
        } else if let Some(map) = self.bpf.take_map("events") {
            info!("Initializing PerfEventArray event map");
            let mut perf_array: PerfEventArray<_> = map.try_into().map_err(|e| {
                LoaderError::Generic(format!("Failed to convert perf event array map: {e}"))
            })?;

            // Get online CPUs
            let online_cpus = aya::util::online_cpus().map_err(|(_, e)| {
                LoaderError::Generic(format!("Failed to get online CPUs: {e}"))
            })?;

            info!(
                "Opening PerfEventArray buffers for {} online CPUs",
                online_cpus.len()
            );

            // Open buffers for all online CPUs
            let mut cpu_buffers = Vec::new();

            for cpu_id in online_cpus {
                let pages = self.perf_page_count;
                match perf_array.open(cpu_id, pages) {
                    Ok(buffer) => {
                        if let Some(p) = pages {
                            info!(
                                "Opened PerfEventArray buffer for CPU {} with {} pages",
                                cpu_id, p
                            );
                        } else {
                            info!(
                                "Opened PerfEventArray buffer for CPU {} (default pages)",
                                cpu_id
                            );
                        }
                        let fd = buffer.as_raw_fd();
                        let readiness =
                            AsyncFd::with_interest(PerfBufferFd(fd), Interest::READABLE).map_err(
                                |err| {
                                    LoaderError::Generic(format!(
                                        "Failed to register perf buffer fd for CPU {cpu_id}: {err}"
                                    ))
                                },
                            )?;
                        cpu_buffers.push(PerfEventCpuBuffer {
                            cpu_id,
                            buffer,
                            readiness,
                        });
                    }
                    Err(e) => {
                        warn!("Failed to open perf buffer for CPU {}: {}", cpu_id, e);
                    }
                }
            }

            if cpu_buffers.is_empty() {
                return Err(LoaderError::Generic(
                    "Failed to open any perf event buffers".to_string(),
                ));
            }

            EventMap::PerfEventArray {
                _map: perf_array,
                cpu_buffers,
            }
        } else {
            return Err(LoaderError::MapNotFound(
                "Neither 'ringbuf' nor 'events' map found".to_string(),
            ));
        };

        self.event_loss_counters = if let Some(map) = self.bpf.take_map("event_loss_counters") {
            info!("Initializing eBPF event loss counter map");
            Some(map.try_into().map_err(|e| {
                LoaderError::Generic(format!("Failed to convert event_loss_counters map: {e}"))
            })?)
        } else {
            warn!("No eBPF event loss counter map found; kernel output loss stats unavailable");
            None
        };

        // Set parser event source based on map type
        let event_source = match &event_map {
            EventMap::RingBuf(_) => {
                info!("Using RingBuf mode for parser");
                ghostscope_protocol::EventSource::RingBuf
            }
            EventMap::PerfEventArray { .. } => {
                info!("Using PerfEventArray mode for parser");
                ghostscope_protocol::EventSource::PerfEventArray
            }
        };
        self.parser = StreamingTraceParser::with_event_source(event_source);

        self.event_map = Some(event_map);
        info!("Event map initialized");

        Ok(())
    }

    /// Detach the uprobe (disable tracing) while keeping eBPF resources loaded
    /// This allows the trace to be quickly re-enabled later
    pub fn detach_uprobe(&mut self) -> Result<()> {
        if let Some(link_id) = self.uprobe_link.take() {
            if let Some(params) = &self.attachment_params {
                info!("Detaching uprobe...");

                // Get the program to detach the link
                let program_ref = self.bpf.program_mut(&params.program_name).ok_or_else(|| {
                    let program_name = &params.program_name;
                    LoaderError::Generic(format!("Program '{program_name}' not found"))
                })?;

                let program: &mut UProbe = program_ref.try_into().map_err(|e| {
                    let program_name = &params.program_name;
                    LoaderError::Generic(format!("Program '{program_name}' is not a UProbe: {e:?}"))
                })?;

                // Detach the uprobe using the link ID
                program.detach(link_id).map_err(LoaderError::Program)?;

                info!("Uprobe detached successfully");
                Ok(())
            } else {
                error!("No attachment parameters stored");
                Err(LoaderError::Generic(
                    "No attachment parameters stored".to_string(),
                ))
            }
        } else {
            warn!("No uprobe attached, nothing to detach");
            Ok(())
        }
    }

    /// Reattach the uprobe (re-enable tracing) using previously stored parameters
    /// This requires that attach_uprobe was called previously to store the parameters
    pub fn reattach_uprobe(&mut self) -> Result<()> {
        if self.uprobe_link.is_some() {
            info!("Uprobe already attached");
            return Ok(());
        }

        let params = self
            .attachment_params
            .as_ref()
            .ok_or_else(|| {
                LoaderError::Generic(
                    "No attachment parameters stored. Call attach_uprobe first.".to_string(),
                )
            })?
            .clone();

        info!("Reattaching uprobe with stored parameters...");

        // Get the program directly (it's already loaded)
        let program_ref = self.bpf.program_mut(&params.program_name).ok_or_else(|| {
            LoaderError::Generic(format!("Program '{}' not found", params.program_name))
        })?;

        let program: &mut UProbe = program_ref.try_into().map_err(|e| {
            LoaderError::Generic(format!(
                "Program '{}' is not a UProbe: {:?}",
                params.program_name, e
            ))
        })?;

        // Attach the uprobe directly (don't load - it's already loaded)
        let attach_location = match params.offset {
            Some(offset) => UProbeAttachLocation::AbsoluteOffset(offset),
            None => UProbeAttachLocation::Function(params.function_name.as_str()),
        };
        let attach_result = attach_location.attach(program, &params.target_binary, params.pid);

        match attach_result {
            Ok(link) => {
                if let Some(offset) = params.offset {
                    info!(
                        "Uprobe reattached successfully to {} at offset 0x{:x}",
                        params.target_binary, offset
                    );
                } else {
                    info!(
                        "Uprobe reattached successfully to {}:{}",
                        params.target_binary, params.function_name
                    );
                }

                // Store the new link handle
                self.uprobe_link = Some(link);
                Ok(())
            }
            Err(e) => {
                error!("Failed to reattach uprobe: {:?}", e);
                Err(LoaderError::Program(e))
            }
        }
    }

    /// Check if the uprobe is currently attached
    pub fn is_uprobe_attached(&self) -> bool {
        self.uprobe_link.is_some()
    }

    /// Completely destroy this loader and all associated resources
    /// This detaches any attached uprobes and clears all eBPF resources
    /// After calling this, the loader cannot be reused
    pub fn destroy(&mut self) -> Result<()> {
        info!("Destroying GhostScopeLoader and all associated resources");

        // First detach uprobe if attached
        if self.uprobe_link.is_some() {
            if let Err(e) = self.detach_uprobe() {
                warn!("Failed to detach uprobe during destroy: {}", e);
                // Continue with destruction even if detach fails
            }
        }

        // Clear attachment parameters
        self.attachment_params = None;

        // Clear event map reference (this doesn't destroy the actual eBPF map,
        // but removes our handle to it)
        self.event_map = None;

        // Note: The eBPF programs and maps will be automatically cleaned up
        // when the `bpf` field is dropped (when this struct is dropped)

        info!("GhostScopeLoader destroyed successfully");
        Ok(())
    }

    /// Get current attachment status information
    pub fn get_attachment_info(&self) -> Option<String> {
        if let Some(params) = &self.attachment_params {
            if let Some(offset) = params.offset {
                Some(format!(
                    "{}:{} (offset: 0x{:x}, pid: {:?}) - {}",
                    params.target_binary,
                    params.function_name,
                    offset,
                    params.pid,
                    if self.is_uprobe_attached() {
                        "attached"
                    } else {
                        "detached"
                    }
                ))
            } else {
                Some(format!(
                    "{}:{} (pid: {:?}) - {}",
                    params.target_binary,
                    params.function_name,
                    params.pid,
                    if self.is_uprobe_attached() {
                        "attached"
                    } else {
                        "detached"
                    }
                ))
            }
        } else {
            None
        }
    }

    // ============================================================================
    // Event Reading
    // ============================================================================

    /// Wait for events asynchronously using AsyncFd
    pub async fn wait_for_events_async(&mut self) -> Result<Vec<ParsedTraceEvent>> {
        let trace_context = self.trace_context.as_ref().ok_or_else(|| {
            LoaderError::Generic(
                "No trace context available - cannot parse trace events".to_string(),
            )
        })?;

        let event_map = self.event_map.as_mut().ok_or_else(|| {
            LoaderError::Generic("Event map not initialized. Call attach_uprobe first.".to_string())
        })?;

        let mut events = Vec::with_capacity(MAX_EVENTS_PER_WAIT.min(128));

        match event_map {
            EventMap::RingBuf(ringbuf) => {
                // Create AsyncFd and wait for readable; clear readiness to avoid spin
                let async_fd = AsyncFd::new(ringbuf.as_raw_fd())
                    .map_err(|e| LoaderError::Generic(format!("Failed to create AsyncFd: {e}")))?;
                let mut guard = async_fd
                    .readable()
                    .await
                    .map_err(|e| LoaderError::Generic(format!("AsyncFd error: {e}")))?;
                guard.clear_ready();

                // Drain a bounded batch. Under very hot probes the ringbuf may never
                // become empty, so an unbounded drain would starve output and signals.
                let mut records_read = 0;
                while events.len() < MAX_EVENTS_PER_WAIT
                    && records_read < MAX_RINGBUF_RECORDS_PER_WAIT
                {
                    let Some(item) = ringbuf.next() else {
                        break;
                    };
                    records_read += 1;
                    match self.parser.process_segment(&item, trace_context) {
                        Ok(Some(parsed_event)) => events.push(parsed_event),
                        Ok(None) => {}
                        Err(e) => {
                            return Err(LoaderError::Generic(format!(
                                "Fatal: Failed to parse trace event from RingBuf (async): {e}"
                            )));
                        }
                    }
                }
                if events.len() == MAX_EVENTS_PER_WAIT
                    || records_read == MAX_RINGBUF_RECORDS_PER_WAIT
                {
                    debug!(
                        "RingBuf batch limit reached ({} events, {} records); yielding to caller",
                        events.len(),
                        records_read
                    );
                }
            }
            EventMap::PerfEventArray { cpu_buffers, .. } => {
                let parser = &mut self.parser;

                loop {
                    // Drain any buffers that already report data without waiting.
                    let mut made_progress = false;
                    for entry in cpu_buffers.iter_mut() {
                        if events.len() >= MAX_EVENTS_PER_WAIT {
                            break;
                        }
                        if entry.buffer.readable() {
                            made_progress |=
                                drain_perf_cpu_buffer(entry, parser, trace_context, &mut events)?;
                        }
                    }

                    if made_progress {
                        break;
                    }

                    // Wait for at least one buffer to become readable.
                    let ready_idx = poll_fn(|cx| {
                        for (idx, entry) in cpu_buffers.iter().enumerate() {
                            match entry.readiness.poll_read_ready(cx) {
                                Poll::Ready(Ok(mut guard)) => {
                                    guard.clear_ready();
                                    return Poll::Ready(Ok(idx));
                                }
                                Poll::Ready(Err(e)) => return Poll::Ready(Err(e)),
                                Poll::Pending => {}
                            }
                        }
                        Poll::Pending
                    })
                    .await
                    .map_err(|e| {
                        LoaderError::Generic(format!(
                            "AsyncFd error while waiting for perf events: {e}"
                        ))
                    })?;

                    // Drain the buffer that triggered readiness.
                    made_progress |= drain_perf_cpu_buffer(
                        cpu_buffers
                            .get_mut(ready_idx)
                            .expect("ready index should be valid"),
                        parser,
                        trace_context,
                        &mut events,
                    )?;

                    // Drain any other buffers now advertising data.
                    for (idx, entry) in cpu_buffers.iter_mut().enumerate() {
                        if events.len() >= MAX_EVENTS_PER_WAIT {
                            break;
                        }
                        if idx == ready_idx || !entry.buffer.readable() {
                            continue;
                        }
                        made_progress |=
                            drain_perf_cpu_buffer(entry, parser, trace_context, &mut events)?;
                    }

                    if made_progress {
                        if events.len() == MAX_EVENTS_PER_WAIT {
                            debug!(
                                "PerfEventArray event batch limit reached ({} events); yielding to caller",
                                MAX_EVENTS_PER_WAIT
                            );
                        }
                        break;
                    }
                    // No events were produced despite readiness (eg. lost event markers).
                    // Loop back and wait again.
                }
            }
        }

        Ok(events)
    }

    pub fn read_event_loss_stats(&self) -> Result<Option<EventLossStats>> {
        let Some(counters) = &self.event_loss_counters else {
            return Ok(None);
        };

        let values = counters
            .get(&EVENT_LOSS_OUTPUT_FAILURES_KEY, 0)
            .map_err(|e| {
                LoaderError::Generic(format!("Failed to read event_loss_counters map: {e}"))
            })?;

        Ok(Some(EventLossStats {
            output_failures: values.iter().copied().sum(),
        }))
    }

    /// Set the trace context for parsing trace events
    pub fn set_trace_context(&mut self, trace_context: TraceContext) {
        info!("Setting trace context for trace event parsing");
        self.trace_context = Some(trace_context);
    }

    fn sync_shared_backtrace_row_state(&mut self) -> Result<()> {
        if !self.shared_backtrace_maps {
            return Ok(());
        }

        let Some(map) = self.bpf.map_mut(BT_MODULE_ROW_RANGES_MAP_NAME) else {
            return Ok(());
        };
        let hash: AyaHashMap<_, u64, BacktraceModuleRowRange> = map.try_into().map_err(|e| {
            LoaderError::Generic(format!(
                "Failed to convert shared bt_module_row_ranges map: {e}"
            ))
        })?;
        let keys = hash
            .keys()
            .collect::<std::result::Result<Vec<_>, _>>()
            .map_err(|e| {
                LoaderError::Generic(format!(
                    "Failed to list shared bt_module_row_ranges keys: {e}"
                ))
            })?;

        let mut max_row_end = self.backtrace_unwind_row_count;
        for cookie in keys {
            match hash.get(&cookie, 0) {
                Ok(range) => {
                    self.backtrace_module_row_cookies.insert(cookie);
                    max_row_end = max_row_end.max(range.row_end);
                }
                Err(e) => {
                    debug!(
                        cookie = format_args!("0x{cookie:016x}"),
                        "Skipped shared bt module row range during sync: {}", e
                    );
                }
            }
        }
        self.backtrace_unwind_row_count = max_row_end;
        Ok(())
    }

    pub fn populate_backtrace_unwind_rows_and_module_row_ranges(
        &mut self,
        rows: &[BacktraceUnwindRow],
        ranges: &[(u64, BacktraceModuleRowRange)],
    ) -> Result<()> {
        if rows.is_empty() {
            return Ok(());
        }

        if ranges.is_empty() || !self.shared_backtrace_maps {
            self.populate_backtrace_unwind_rows(rows)?;
            self.populate_backtrace_module_row_ranges(ranges)?;
            return Ok(());
        }

        self.sync_shared_backtrace_row_state()?;
        for (cookie, range) in ranges.iter().copied() {
            if self.backtrace_module_row_cookies.contains(&cookie) {
                continue;
            }

            let row_start = usize::try_from(range.row_start).map_err(|_| {
                LoaderError::Generic(format!(
                    "Invalid row_start for module cookie 0x{cookie:016x}: {}",
                    range.row_start
                ))
            })?;
            let row_end = usize::try_from(range.row_end).map_err(|_| {
                LoaderError::Generic(format!(
                    "Invalid row_end for module cookie 0x{cookie:016x}: {}",
                    range.row_end
                ))
            })?;
            if row_start > row_end || row_end > rows.len() {
                return Err(LoaderError::Generic(format!(
                    "Invalid bt row range for module cookie 0x{cookie:016x}: \
                     {}..{} with {} rows",
                    range.row_start,
                    range.row_end,
                    rows.len()
                )));
            }

            self.append_backtrace_unwind_rows_for_module_after_sync(
                cookie,
                &rows[row_start..row_end],
            )?;
        }

        Ok(())
    }

    pub fn populate_backtrace_unwind_rows(&mut self, rows: &[BacktraceUnwindRow]) -> Result<()> {
        if rows.is_empty() {
            return Ok(());
        }

        let Some(map) = self.bpf.map_mut("bt_unwind_rows") else {
            return Err(LoaderError::MapNotFound("bt_unwind_rows".to_string()));
        };
        let mut array: Array<_, BacktraceUnwindRow> = map.try_into().map_err(|e| {
            LoaderError::Generic(format!("Failed to convert bt_unwind_rows map: {e}"))
        })?;
        let populate_started_at = Instant::now();
        for (row_index, row) in rows.iter().copied().enumerate() {
            array.set(row_index as u32, row, 0).map_err(|e| {
                LoaderError::Generic(format!("Failed to set unwind row {row_index}: {e}"))
            })?;
        }
        self.backtrace_unwind_row_count = self.backtrace_unwind_row_count.max(rows.len() as u32);
        info!(
            rows = rows.len(),
            capacity = array.len(),
            row_size = BACKTRACE_UNWIND_ROW_SIZE,
            elapsed_ms = populate_started_at.elapsed().as_millis(),
            "Loaded DWARF unwind rows for bt"
        );
        if log_enabled!(LogLevel::Debug) {
            log_backtrace_unwind_row_samples(&array, rows)?;
        }
        Ok(())
    }

    pub fn populate_backtrace_module_row_ranges(
        &mut self,
        ranges: &[(u64, BacktraceModuleRowRange)],
    ) -> Result<()> {
        if ranges.is_empty() {
            return Ok(());
        }

        let Some(map) = self.bpf.map_mut("bt_module_row_ranges") else {
            return Err(LoaderError::MapNotFound("bt_module_row_ranges".to_string()));
        };
        let mut hash: AyaHashMap<_, u64, BacktraceModuleRowRange> =
            map.try_into().map_err(|e| {
                LoaderError::Generic(format!("Failed to convert bt_module_row_ranges map: {e}"))
            })?;
        let populate_started_at = Instant::now();
        for (cookie, range) in ranges.iter().copied() {
            hash.insert(cookie, range, 0).map_err(|e| {
                LoaderError::Generic(format!(
                    "Failed to set bt module row range for cookie 0x{cookie:016x}: {e}"
                ))
            })?;
            self.backtrace_module_row_cookies.insert(cookie);
            self.backtrace_unwind_row_count = self.backtrace_unwind_row_count.max(range.row_end);
        }
        info!(
            modules = ranges.len(),
            elapsed_ms = populate_started_at.elapsed().as_millis(),
            "Loaded DWARF unwind row ranges for bt"
        );
        Ok(())
    }

    pub fn append_backtrace_unwind_rows_for_module(
        &mut self,
        cookie: u64,
        rows: &[BacktraceUnwindRow],
    ) -> Result<Option<BacktraceModuleRowRange>> {
        if self.shared_backtrace_maps {
            self.sync_shared_backtrace_row_state()?;
        }
        self.append_backtrace_unwind_rows_for_module_after_sync(cookie, rows)
    }

    fn append_backtrace_unwind_rows_for_module_after_sync(
        &mut self,
        cookie: u64,
        rows: &[BacktraceUnwindRow],
    ) -> Result<Option<BacktraceModuleRowRange>> {
        if rows.is_empty() || self.backtrace_module_row_cookies.contains(&cookie) {
            return Ok(None);
        }

        if self.bpf.map("bt_unwind_rows").is_none()
            || self.bpf.map("bt_module_row_ranges").is_none()
        {
            return Ok(None);
        }

        let start = self.backtrace_unwind_row_count;
        let row_count = u32::try_from(rows.len()).map_err(|_| {
            LoaderError::Generic(format!(
                "Too many unwind rows for module cookie 0x{cookie:016x}: {}",
                rows.len()
            ))
        })?;
        let end = start.checked_add(row_count).ok_or_else(|| {
            LoaderError::Generic(format!(
                "Unwind row index overflow for module cookie 0x{cookie:016x}"
            ))
        })?;

        let Some(map) = self.bpf.map_mut("bt_unwind_rows") else {
            return Ok(None);
        };
        let mut array: Array<_, BacktraceUnwindRow> = map.try_into().map_err(|e| {
            LoaderError::Generic(format!("Failed to convert bt_unwind_rows map: {e}"))
        })?;
        if end > array.len() {
            return Err(LoaderError::Generic(format!(
                "bt_unwind_rows capacity exceeded while appending module \
                 0x{cookie:016x}: need end row {}, capacity {}",
                end,
                array.len()
            )));
        }

        for (offset, row) in rows.iter().copied().enumerate() {
            let row_index = start + offset as u32;
            array.set(row_index, row, 0).map_err(|e| {
                LoaderError::Generic(format!("Failed to append unwind row {row_index}: {e}"))
            })?;
        }

        let range = BacktraceModuleRowRange {
            row_start: start,
            row_end: end,
        };
        let Some(map) = self.bpf.map_mut("bt_module_row_ranges") else {
            return Ok(None);
        };
        let mut hash: AyaHashMap<_, u64, BacktraceModuleRowRange> =
            map.try_into().map_err(|e| {
                LoaderError::Generic(format!("Failed to convert bt_module_row_ranges map: {e}"))
            })?;
        hash.insert(cookie, range, 0).map_err(|e| {
            LoaderError::Generic(format!(
                "Failed to append bt module row range for cookie 0x{cookie:016x}: {e}"
            ))
        })?;

        self.backtrace_unwind_row_count = end;
        self.backtrace_module_row_cookies.insert(cookie);
        debug!(
            cookie = format_args!("0x{cookie:016x}"),
            rows = rows.len(),
            row_start = range.row_start,
            row_end = range.row_end,
            "Appended DWARF unwind rows for bt module"
        );

        Ok(Some(range))
    }

    pub fn append_backtrace_unwind_rows_for_modules(
        &mut self,
        modules: &[(u64, Vec<BacktraceUnwindRow>)],
    ) -> Result<BacktraceUnwindRowsAppendStats> {
        let mut stats = BacktraceUnwindRowsAppendStats::default();
        if self.shared_backtrace_maps {
            self.sync_shared_backtrace_row_state()?;
        }
        for (cookie, rows) in modules {
            if self
                .append_backtrace_unwind_rows_for_module_after_sync(*cookie, rows)?
                .is_some()
            {
                stats.modules += 1;
                stats.rows += rows.len();
            }
        }
        Ok(stats)
    }

    // ============================================================================
    // Information and Debugging
    // ============================================================================

    /// Get information about loaded maps
    pub fn get_map_info(&self) -> Vec<String> {
        self.bpf
            .maps()
            .map(|(name, _map)| format!("Map: {name}"))
            .collect()
    }

    /// Get information about loaded programs
    pub fn get_program_info(&self) -> Vec<String> {
        self.bpf
            .programs()
            .map(|(name, _prog)| format!("Program: {name}"))
            .collect()
    }
}