sqc 0.4.13

Software Code Quality - CERT C compliance checker
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
//! EXP33-C: Do not read uninitialized memory
//!
//! Detects reads of local variables that may not have been initialized.
//! Uses CFG-based forward dataflow analysis to track initialization state
//! across branches, loops, and early returns.

use super::super::{CertRule, RuleViolation};
use crate::analyze::cfg::{self as cfg_mod, FunctionCfg};
use crate::analyze::context::ProjectContext;
use crate::analyze::function_summary::FunctionSummary;
use crate::analyze::init_state::{self, InitAnalysisResult, InitState, InitStateMap};
use crate::manifest::{RuleCategory, Severity};
use crate::utility::cert_c::ast_utils::get_node_text;
use std::cell::RefCell;
use std::collections::{HashMap, HashSet};
use tree_sitter::Node;

pub struct Exp33C {
    function_cfgs: RefCell<HashMap<usize, FunctionCfg>>,
    /// File-scope static variable init states (collected at translation_unit level).
    file_scope_statics: RefCell<InitStateMap>,
    /// Functions that return realloc results (interprocedural pre-scan).
    realloc_wrapper_fns: RefCell<HashSet<String>>,
    /// Functions with pointer params that are only conditionally initialized.
    /// Maps function name → set of pointer parameter indices that are conditional.
    conditionally_init_fns: RefCell<HashMap<String, HashSet<usize>>>,
    /// Cross-file function summaries from prescan (for inter-procedural init tracking).
    cross_file_summaries: RefCell<HashMap<String, FunctionSummary>>,
    /// File-scope constants for dead-branch elimination in init-state analysis.
    file_scope_constants: RefCell<HashMap<String, i64>>,
}

impl Exp33C {
    pub fn new() -> Self {
        Self {
            function_cfgs: RefCell::new(HashMap::new()),
            file_scope_statics: RefCell::new(InitStateMap::new()),
            realloc_wrapper_fns: RefCell::new(HashSet::new()),
            conditionally_init_fns: RefCell::new(HashMap::new()),
            cross_file_summaries: RefCell::new(HashMap::new()),
            file_scope_constants: RefCell::new(HashMap::new()),
        }
    }

    /// Build the read-only dereference map from cross-file summaries.
    /// Returns functions that dereference a pointer param without modifying it.
    fn build_read_only_deref_fns(&self) -> HashMap<String, HashSet<usize>> {
        let summaries = self.cross_file_summaries.borrow();
        let mut result = HashMap::new();
        for (name, summary) in summaries.iter() {
            let read_only: HashSet<usize> = summary
                .dereferences_params
                .difference(&summary.modifies_params)
                .copied()
                .collect();
            if !read_only.is_empty() {
                result.insert(name.clone(), read_only);
            }
        }
        result
    }
}

impl CertRule for Exp33C {
    fn rule_id(&self) -> &'static str {
        "EXP33-C"
    }

    fn description(&self) -> &'static str {
        "Do not read uninitialized memory"
    }

    fn severity(&self) -> Severity {
        Severity::High
    }

    fn category(&self) -> RuleCategory {
        RuleCategory::Rule
    }

    fn cert_id(&self) -> &'static str {
        "EXP33-C"
    }

    fn set_project_context(&self, context: &ProjectContext) {
        *self.cross_file_summaries.borrow_mut() = context.function_summaries.clone();
        // Merge prescan global constants into file-scope constants.
        // File-scope constants (set later during check()) take precedence.
        let mut constants = self.file_scope_constants.borrow_mut();
        for (k, v) in &context.global_constants {
            constants.entry(k.clone()).or_insert(*v);
        }
        // Also include prescan macro constants (from #define directives)
        for (k, v) in &context.macro_constants {
            constants.entry(k.clone()).or_insert(*v);
        }
    }

    fn set_function_cfgs(&self, cfgs: &HashMap<usize, FunctionCfg>) {
        *self.function_cfgs.borrow_mut() = cfgs.clone();
    }

    fn check(&self, node: &Node, source: &str) -> Vec<RuleViolation> {
        let mut violations = Vec::new();
        let cfgs = self.function_cfgs.borrow();

        // At translation_unit level: collect file-scope statics and pre-scan functions
        if node.kind() == "translation_unit" {
            let statics = init_state::collect_file_scope_statics(node, source);
            *self.file_scope_statics.borrow_mut() = statics;

            // Collect file-scope constants for dead-branch elimination.
            // Merge with prescan global constants (file-scope wins on conflict).
            let file_constants = init_state::collect_file_scope_constants(node, source);
            // Also collect zero-arg constant-return functions (e.g., staticReturnsTrue()).
            let fn_constants = init_state::collect_constant_functions(node, source);
            {
                let mut constants = self.file_scope_constants.borrow_mut();
                // File-scope constants and constant functions override prescan globals
                constants.extend(file_constants);
                constants.extend(fn_constants);
            }

            // Pre-scan for realloc wrapper functions
            let mut wrappers = HashSet::new();
            scan_realloc_wrappers(node, source, &mut wrappers);
            *self.realloc_wrapper_fns.borrow_mut() = wrappers;

            // Pre-scan for functions that conditionally initialize pointer params
            let mut cond_init = HashMap::new();
            scan_conditionally_init_functions(node, source, &mut cond_init);
            *self.conditionally_init_fns.borrow_mut() = cond_init;
        }

        if node.kind() == "function_definition" {
            if let Some(body) = node.child_by_field_name("body") {
                // Get pre-built CFG or build one on the fly
                let inline_cfg;
                let cfg = if let Some(c) = cfgs.get(&node.start_byte()) {
                    c
                } else if let Some(c) = cfg_mod::build_function_cfg(node, source) {
                    inline_cfg = c;
                    &inline_cfg
                } else {
                    return violations;
                };

                // Run CFG-based init-state dataflow
                let statics = self.file_scope_statics.borrow();
                let cond_fns = self.conditionally_init_fns.borrow();
                let realloc_fns = self.realloc_wrapper_fns.borrow();
                let read_only_fns = self.build_read_only_deref_fns();
                let file_constants = self.file_scope_constants.borrow();
                let config = init_state::InitAnalysisConfig {
                    conditionally_init_fns: cond_fns.clone(),
                    realloc_wrapper_fns: realloc_fns.clone(),
                    read_only_deref_fns: read_only_fns.clone(),
                    file_scope_constants: file_constants.clone(),
                };
                let analysis = init_state::analyze_init_states_with_statics(
                    cfg, node, source, &statics, &config,
                );

                // Walk AST for read sites and check each against dataflow result
                let mut reported: HashSet<String> = HashSet::new();
                check_reads(
                    &body,
                    source,
                    &analysis,
                    cfg,
                    &body,
                    &mut violations,
                    &mut reported,
                    &config,
                );

                // Check for cross-file calls passing &uninit_var to functions
                // that read through the pointer (variant 63/64 pattern).
                if !read_only_fns.is_empty() {
                    check_cross_file_uninit_calls(
                        &body,
                        source,
                        &analysis,
                        cfg,
                        &body,
                        &read_only_fns,
                        &mut violations,
                        &mut reported,
                    );
                }
            }
        }

        // Recurse into child nodes (handles preproc blocks, nested structures)
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                violations.extend(self.check(&child, source));
            }
        }

        violations
    }
}

// ---------------------------------------------------------------------------
// AST walk for read sites
// ---------------------------------------------------------------------------

/// Recursively walk the AST looking for reads of tracked variables.
fn check_reads(
    node: &Node,
    source: &str,
    analysis: &InitAnalysisResult,
    cfg: &FunctionCfg,
    body: &Node,
    violations: &mut Vec<RuleViolation>,
    reported: &mut HashSet<String>,
    config: &init_state::InitAnalysisConfig,
) {
    match node.kind() {
        "identifier" => {
            check_identifier_read(
                node, source, analysis, cfg, body, violations, reported, config,
            );
        }
        "pointer_expression" => {
            // *ptr — check if ptr content is uninitialized
            let text = get_node_text(node, source);
            if text.starts_with('*') {
                check_deref_read(
                    node, source, analysis, cfg, body, violations, reported, config,
                );
            }
        }
        "subscript_expression" => {
            check_subscript_read(
                node, source, analysis, cfg, body, violations, reported, config,
            );
        }
        _ => {}
    }

    // Recurse into children
    for i in 0..node.child_count() {
        if let Some(child) = node.child(i) {
            check_reads(
                &child, source, analysis, cfg, body, violations, reported, config,
            );
        }
    }
}

/// Check for calls that pass `&uninit_var` to cross-file functions that read
/// through the pointer without writing first (variant 63/64 pattern).
fn check_cross_file_uninit_calls(
    node: &Node,
    source: &str,
    analysis: &InitAnalysisResult,
    cfg: &FunctionCfg,
    body: &Node,
    read_only_fns: &HashMap<String, HashSet<usize>>,
    violations: &mut Vec<RuleViolation>,
    reported: &mut HashSet<String>,
) {
    if node.kind() == "call_expression" {
        if let Some(func) = node.child_by_field_name("function") {
            let func_name = get_node_text(&func, source).to_string();
            if let Some(read_only_params) = read_only_fns.get(&func_name) {
                if let Some(args) = node.child_by_field_name("arguments") {
                    let mut arg_idx: usize = 0;
                    for i in 0..args.child_count() {
                        if let Some(arg) = args.child(i) {
                            if arg.kind() == "," || arg.kind() == "(" || arg.kind() == ")" {
                                continue;
                            }
                            if read_only_params.contains(&arg_idx) {
                                // Check if arg is &var where var is uninitialized
                                let var_name = extract_addr_of_var(&arg, source);
                                if !var_name.is_empty()
                                    && analysis.tracked_vars.contains(&var_name)
                                    && !reported.contains(&var_name)
                                {
                                    if let Some(info) = init_state::get_var_info_at_with_config(
                                        analysis,
                                        cfg,
                                        body,
                                        source,
                                        &var_name,
                                        node.start_byte(),
                                        &init_state::InitAnalysisConfig::default(),
                                    ) {
                                        if info.state.is_unsafe() && !info.is_unsigned_char {
                                            reported.insert(var_name.clone());
                                            violations.push(RuleViolation {
                                                rule_id: "EXP33-C".to_string(),
                                                severity: Severity::High,
                                                message: format!(
                                                    "Passing pointer to uninitialized variable '{}' to '{}' which reads the value",
                                                    var_name, func_name
                                                ),
                                                file_path: String::new(),
                                                line: node.start_position().row + 1,
                                                column: node.start_position().column + 1,
                                                suggestion: Some(format!(
                                                    "Initialize '{}' before passing its address to '{}'",
                                                    var_name, func_name
                                                )),
                                                ..Default::default()
                                            });
                                        }
                                    }
                                }
                            }
                            arg_idx += 1;
                        }
                    }
                }
            }
        }
    }

    // Recurse into children
    for i in 0..node.child_count() {
        if let Some(child) = node.child(i) {
            check_cross_file_uninit_calls(
                &child,
                source,
                analysis,
                cfg,
                body,
                read_only_fns,
                violations,
                reported,
            );
        }
    }
}

/// Extract the variable name from an `&var` expression. Returns empty string if not `&var`.
fn extract_addr_of_var(node: &Node, source: &str) -> String {
    // Direct &var: pointer_expression with & operator
    if node.kind() == "pointer_expression" {
        let text = get_node_text(node, source);
        if text.starts_with('&') {
            if let Some(arg) = node.child_by_field_name("argument") {
                if arg.kind() == "identifier" {
                    return get_node_text(&arg, source).to_string();
                }
            }
        }
    }
    // Parenthesized: (&var)
    if node.kind() == "parenthesized_expression" {
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                let result = extract_addr_of_var(&child, source);
                if !result.is_empty() {
                    return result;
                }
            }
        }
    }
    String::new()
}

/// Check if an identifier read is of an uninitialized variable.
fn check_identifier_read(
    node: &Node,
    source: &str,
    analysis: &InitAnalysisResult,
    cfg: &FunctionCfg,
    body: &Node,
    violations: &mut Vec<RuleViolation>,
    reported: &mut HashSet<String>,
    config: &init_state::InitAnalysisConfig,
) {
    let var_name = get_node_text(node, source).to_string();

    // Skip if not tracked
    if !analysis.tracked_vars.contains(&var_name) {
        return;
    }

    // Skip if already reported
    if reported.contains(&var_name) {
        return;
    }

    // Skip if this is NOT a read context
    if !is_read_context(node, source) {
        return;
    }

    // Query init state at this point

    let info = match init_state::get_var_info_at_with_config(
        analysis,
        cfg,
        body,
        source,
        &var_name,
        node.start_byte(),
        config,
    ) {
        Some(i) => i,
        None => return,
    };

    // EXP33-C exception: reading uninitialized unsigned char is permitted
    if info.is_unsigned_char {
        return;
    }

    // Only flag truly uninitialized or maybe-uninitialized reads
    if !info.state.is_unsafe() {
        return;
    }

    // Arrays passed by name to unknown function calls decay to pointers.
    // The init-state transfer function treats such arrays as initialized
    // (assumes the function writes to them). Skip the read-check here
    // for consistency, but only for truly unknown functions — not for
    // known read-only or known initializing functions (handled separately).
    if info.is_array {
        if let Some(parent) = node.parent() {
            // Array-to-pointer decay: `ptr = arr` where arr is on the RHS.
            // Taking the address of a non-char array is not a content read —
            // suppress and detect later at subscript access (check_subscript_read).
            // Char arrays are kept (strcat/wcscat pattern: reads the null terminator).
            if parent.kind() == "assignment_expression" && !info.is_char_type {
                if let Some(right) = parent.child_by_field_name("right") {
                    if right.id() == node.id() {
                        return;
                    }
                }
            }
            if parent.kind() == "argument_list" {
                if let Some(call_expr) = parent.parent() {
                    if call_expr.kind() == "call_expression" {
                        if let Some(func) = call_expr.child_by_field_name("function") {
                            let fname = get_node_text(&func, source).to_string();
                            // Known functions are already handled by is_read_in_argument_list.
                            // Only suppress for truly unknown functions (not non-initializing).
                            if init_state::match_initializing_function(&fname).is_none()
                                && !init_state::is_non_initializing_function(&fname)
                            {
                                return;
                            }
                        }
                    }
                }
            }
        }
    }

    reported.insert(var_name.clone());

    let message = if info.is_static {
        format!(
            "Static variable '{}' used without explicit initialization",
            var_name
        )
    } else if matches!(info.state, InitState::MaybeUninitialized) {
        format!(
            "Variable '{}' may be used uninitialized (not assigned on all paths)",
            var_name
        )
    } else {
        format!("Variable '{}' is used uninitialized", var_name)
    };

    violations.push(RuleViolation {
        rule_id: "EXP33-C".to_string(),
        severity: Severity::High,
        message,
        file_path: String::new(),
        line: node.start_position().row + 1,
        column: node.start_position().column + 1,
        suggestion: Some(format!(
            "Initialize '{}' before use, e.g., at its declaration",
            var_name
        )),
        ..Default::default()
    });
}

/// Check if a dereference (*ptr) reads uninitialized content.
fn check_deref_read(
    node: &Node,
    source: &str,
    analysis: &InitAnalysisResult,
    cfg: &FunctionCfg,
    body: &Node,
    violations: &mut Vec<RuleViolation>,
    reported: &mut HashSet<String>,
    config: &init_state::InitAnalysisConfig,
) {
    // Extract the pointer variable being dereferenced
    let var_name = if let Some(arg) = node.child_by_field_name("argument") {
        if arg.kind() == "identifier" {
            get_node_text(&arg, source).to_string()
        } else {
            return;
        }
    } else {
        return;
    };

    if !analysis.tracked_vars.contains(&var_name) || reported.contains(&var_name) {
        return;
    }

    // Skip non-read contexts (e.g., *ptr = value is a write)
    if !is_deref_read_context(node) {
        return;
    }

    let info = match init_state::get_var_info_at_with_config(
        analysis,
        cfg,
        body,
        source,
        &var_name,
        node.start_byte(),
        config,
    ) {
        Some(i) => i,
        None => return,
    };

    // Check both pointer and content state
    if info.state.is_unsafe() {
        // Pointer itself is uninitialized
        reported.insert(var_name.clone());
        violations.push(RuleViolation {
            rule_id: "EXP33-C".to_string(),
            severity: Severity::High,
            message: format!("Dereference of uninitialized pointer '{}'", var_name),
            file_path: String::new(),
            line: node.start_position().row + 1,
            column: node.start_position().column + 1,
            suggestion: Some(format!(
                "Initialize pointer '{}' before dereferencing",
                var_name
            )),
            ..Default::default()
        });
    } else if info.state.is_content_unsafe() {
        // Pointer is set but content is uninitialized (malloc without memset)
        reported.insert(var_name.clone());
        violations.push(RuleViolation {
            rule_id: "EXP33-C".to_string(),
            severity: Severity::High,
            message: format!(
                "Reading from '{}' which points to uninitialized memory (allocated without initialization)",
                var_name
            ),
            file_path: String::new(),
            line: node.start_position().row + 1,
            column: node.start_position().column + 1,
            suggestion: Some(
                "Use calloc() instead of malloc(), or memset() after allocation".to_string(),
            ),
            ..Default::default()
        });
    }
}

/// Check if a subscript access (arr[i]) reads uninitialized content.
fn check_subscript_read(
    node: &Node,
    source: &str,
    analysis: &InitAnalysisResult,
    cfg: &FunctionCfg,
    body: &Node,
    violations: &mut Vec<RuleViolation>,
    reported: &mut HashSet<String>,
    config: &init_state::InitAnalysisConfig,
) {
    // Extract base variable (handles arr[i], arr->field[i], etc.)
    let var_name = {
        let mut name = String::new();
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                if child.kind() == "identifier" {
                    name = get_node_text(&child, source).to_string();
                    break;
                }
                // Handle arr->data[i] — subscript base is a field_expression
                if child.kind() == "field_expression" {
                    name = extract_root_identifier(&child, source);
                    break;
                }
            }
        }
        name
    };

    if var_name.is_empty()
        || !analysis.tracked_vars.contains(&var_name)
        || reported.contains(&var_name)
    {
        return;
    }

    // Skip non-read contexts
    if !is_subscript_read_context(node) {
        return;
    }

    let info = match init_state::get_var_info_at_with_config(
        analysis,
        cfg,
        body,
        source,
        &var_name,
        node.start_byte(),
        config,
    ) {
        Some(i) => i,
        None => return,
    };

    // EXP33-C exception: unsigned char content reads are permitted
    if info.is_unsigned_char {
        return;
    }

    // For subscript reads, only flag definitely-uninitialized content.
    // MaybeUninitialized often results from loop-based array initialization
    // where the loop join produces a conservative MaybeUninitialized.
    let content_unsafe = matches!(
        info.state,
        InitState::Uninitialized | InitState::MallocUninitialized
    );

    if content_unsafe {
        reported.insert(var_name.clone());
        violations.push(RuleViolation {
            rule_id: "EXP33-C".to_string(),
            severity: Severity::High,
            message: format!(
                "Reading from '{}' which may contain uninitialized data",
                var_name
            ),
            file_path: String::new(),
            line: node.start_position().row + 1,
            column: node.start_position().column + 1,
            suggestion: Some(format!(
                "Initialize the contents of '{}' before reading",
                var_name
            )),
            ..Default::default()
        });
    }
}

// ---------------------------------------------------------------------------
// Read-context detection
// ---------------------------------------------------------------------------

/// Check if an identifier node is in a read context (not a write target).
fn is_read_context(node: &Node, source: &str) -> bool {
    let parent = match node.parent() {
        Some(p) => p,
        None => return true,
    };

    // Walk up ancestors to check context
    // Some non-read contexts are nested: sizeof(x) → sizeof_expression > parenthesized_expression > identifier
    let mut ancestor = Some(parent);
    let mut depth = 0;
    while let Some(anc) = ancestor {
        depth += 1;
        if depth > 5 {
            break;
        }
        match anc.kind() {
            "sizeof_expression" | "_Alignof" => return false,
            "parenthesized_expression" => {
                ancestor = anc.parent();
                continue;
            }
            _ => break,
        }
    }

    match parent.kind() {
        // LHS of assignment
        "assignment_expression" => {
            if let Some(left) = parent.child_by_field_name("left") {
                if left.id() == node.id() {
                    // Check for compound assignment (+=, -=, *=, etc.)
                    // which both reads and writes the LHS
                    for i in 0..parent.child_count() {
                        if let Some(op) = parent.child(i) {
                            let op_text = get_node_text(&op, source);
                            if matches!(
                                op_text,
                                "+=" | "-="
                                    | "*="
                                    | "/="
                                    | "%="
                                    | "<<="
                                    | ">>="
                                    | "&="
                                    | "|="
                                    | "^="
                            ) {
                                return true; // Compound assignment reads the LHS
                            }
                        }
                    }
                    return false; // Simple assignment (=) — write only
                }
            }
            true // RHS is a read
        }
        // Compound assignment (+=, -=, etc.) — both read and write
        "augmented_assignment_expression" => true,
        // Declaration — not a read
        "declaration" | "init_declarator" => false,
        // sizeof(x) — not a read
        "sizeof_expression" => false,
        // &x — address-of. Generally not a read, BUT if &x is passed to a
        // non-initializing function (one that reads from the pointer), it IS a read.
        "pointer_expression" => {
            let text = get_node_text(&parent, source);
            if !text.starts_with('&') {
                return true; // *x — dereference read
            }
            // Check if &var is inside an argument_list of a non-initializing function
            if let Some(arg_list) = parent.parent() {
                if arg_list.kind() == "argument_list" {
                    if let Some(call) = arg_list.parent() {
                        if call.kind() == "call_expression" {
                            if let Some(func) = call.child_by_field_name("function") {
                                let func_name = get_node_text(&func, source);
                                if init_state::is_non_initializing_function(&func_name) {
                                    return true; // &var passed to function that reads from it
                                }
                            }
                        }
                    }
                }
            }
            false // Regular &var — not a read
        }
        // Update expression (i++, ++i) — both read and write, but we don't flag these
        "update_expression" => false,
        // Field expression LHS — writing to a field is NOT reading the base
        "field_expression" => {
            // Check if the field expression is on the LHS of an assignment
            if let Some(grandparent) = parent.parent() {
                if grandparent.kind() == "assignment_expression" {
                    if let Some(left) = grandparent.child_by_field_name("left") {
                        if left.id() == parent.id() {
                            return false; // obj.field = val — obj is not "read"
                        }
                    }
                }
            }
            true
        }
        // Subscript base (arr[i]) — the base identifier provides the address,
        // not a value read. Content reads are handled by check_subscript_read.
        "subscript_expression" => false,
        // Parameter declaration — not a read
        "parameter_declaration" => false,
        // Cast expression — reading the value
        "cast_expression" => true,
        // Condition expressions — reading
        "binary_expression" | "unary_expression" | "conditional_expression" => true,
        // Function call argument — usually a read, but check for output args
        // of known initializing functions (e.g., fgets(input, ...) is a write to input)
        "argument_list" => {
            // Special case: `__asm("..." : "=r"(var) ...)` is misparsed by
            // tree-sitter as call_expression("__asm", [ERROR, "=r"(var), ...]).
            // The output operand `"=r"(var)` becomes call_expression("=r", [var]).
            // Detect this: identifier inside argument_list of a call whose
            // function is a string_literal with "=" (output constraint).
            if let Some(call_gp) = parent.parent() {
                if call_gp.kind() == "call_expression" {
                    if let Some(func) = call_gp.child_by_field_name("function") {
                        if func.kind() == "string_literal" {
                            let constraint = get_node_text(&func, source);
                            if constraint.contains('=') {
                                return false; // output operand of misparsed __asm
                            }
                        }
                    }
                }
            }
            is_read_in_argument_list(node, &parent, source)
        }
        // Return statement — reading
        "return_statement" => true,
        // Comma expression
        "comma_expression" => true,
        // GNU asm output operands are writes ("=r"(var)) — not reads
        "gnu_asm_output_operand" => false,
        _ => true,
    }
}

/// Check if an identifier in an argument_list is being read (vs. being an output arg).
fn is_read_in_argument_list(node: &Node, arg_list: &Node, source: &str) -> bool {
    // Find the parent call_expression
    let call_expr = match arg_list.parent() {
        Some(c) if c.kind() == "call_expression" => c,
        _ => return true,
    };

    // Get function name
    let func_name = match call_expr.child_by_field_name("function") {
        Some(f) => get_node_text(&f, source).to_string(),
        None => return true,
    };

    // va_start/va_copy: first arg is output (initializes the va_list)
    if func_name == "va_start" || func_name == "va_copy" {
        // First non-punctuation arg is the output va_list
        if let Some(first_arg) = call_expr.child_by_field_name("arguments").and_then(|args| {
            for i in 0..args.child_count() {
                if let Some(c) = args.child(i) {
                    if c.kind() != "(" && c.kind() != ")" && c.kind() != "," {
                        return Some(c);
                    }
                }
            }
            None
        }) {
            if contains_node(&first_arg, node) {
                return false; // Output arg — not a read
            }
        }
        return true;
    }

    // Check if this is a known initializing function (exact or suffix match)
    let base_name = match init_state::match_initializing_function(&func_name) {
        Some(name) => name,
        None => {
            // For unknown functions, check if the identifier is passed by name
            // (arrays passed by name to unknown functions are assumed initialized)
            return true;
        }
    };

    // Determine which argument position this identifier is at
    let output_indices = init_state::get_output_arg_indices(base_name);
    if output_indices.is_empty() {
        return true; // No output args — this is a read
    }

    let mut arg_idx = 0;
    for i in 0..arg_list.child_count() {
        if let Some(child) = arg_list.child(i) {
            if child.kind() == "," || child.kind() == "(" || child.kind() == ")" {
                continue;
            }
            // Check if this argument contains our identifier node
            if contains_node(&child, node) {
                return !output_indices.contains(&arg_idx);
            }
            arg_idx += 1;
        }
    }
    true // Couldn't determine position — assume read
}

/// Check if a node contains a specific descendant (by ID).
fn contains_node(haystack: &Node, needle: &Node) -> bool {
    if haystack.id() == needle.id() {
        return true;
    }
    for i in 0..haystack.child_count() {
        if let Some(child) = haystack.child(i) {
            if contains_node(&child, needle) {
                return true;
            }
        }
    }
    false
}

/// Check if a dereference (*ptr) is in a read context.
fn is_deref_read_context(node: &Node) -> bool {
    let parent = match node.parent() {
        Some(p) => p,
        None => return true,
    };
    match parent.kind() {
        // *ptr = value is a write
        "assignment_expression" => {
            if let Some(left) = parent.child_by_field_name("left") {
                left.id() != node.id()
            } else {
                true
            }
        }
        _ => true,
    }
}

/// Check if a subscript access (arr[i]) is in a read context.
fn is_subscript_read_context(node: &Node) -> bool {
    // Walk up ancestors to find if this subscript is ultimately on the LHS of an assignment
    let mut current = *node;
    for _ in 0..5 {
        let parent = match current.parent() {
            Some(p) => p,
            None => return true,
        };
        match parent.kind() {
            "assignment_expression" => {
                if let Some(left) = parent.child_by_field_name("left") {
                    // If the subscript (or its field_expression ancestor) is on the LHS → write
                    return left.id() != current.id();
                }
                return true;
            }
            // arr[0].field — subscript is inside field_expression, keep walking up
            "field_expression" => {
                current = parent;
                continue;
            }
            _ => return true,
        }
    }
    true
}

// ---------------------------------------------------------------------------
// Interprocedural pre-scan
// ---------------------------------------------------------------------------

/// Scan translation unit for functions that wrap realloc.
fn scan_realloc_wrappers(node: &Node, source: &str, wrappers: &mut HashSet<String>) {
    if node.kind() == "function_definition" {
        if let Some(body) = node.child_by_field_name("body") {
            let body_text = get_node_text(&body, source);
            if body_text.contains("realloc(") && !body_text.contains("memset") {
                if let Some(declarator) = node.child_by_field_name("declarator") {
                    let name = get_func_name(&declarator, source);
                    if !name.is_empty() {
                        wrappers.insert(name);
                    }
                }
            }
        }
    }
    for i in 0..node.child_count() {
        if let Some(child) = node.child(i) {
            scan_realloc_wrappers(&child, source, wrappers);
        }
    }
}

/// Scan for functions that only conditionally initialize pointer params.
/// e.g., void set_flag(int n, int *flag) { if (n > 0) *flag = 1; }
/// — doesn't init *flag on all paths.
fn scan_conditionally_init_functions(
    node: &Node,
    source: &str,
    result: &mut HashMap<String, HashSet<usize>>,
) {
    if node.kind() == "function_definition" {
        let cond_indices = get_conditional_init_param_indices(node, source);
        if !cond_indices.is_empty() {
            if let Some(declarator) = node.child_by_field_name("declarator") {
                let name = get_func_name(&declarator, source);
                if !name.is_empty() {
                    result.insert(name, cond_indices);
                }
            }
        }
    }
    for i in 0..node.child_count() {
        if let Some(child) = node.child(i) {
            scan_conditionally_init_functions(&child, source, result);
        }
    }
}

/// Get the set of pointer parameter indices that are only conditionally initialized.
/// Returns indices into the full parameter list (including non-pointer params).
fn get_conditional_init_param_indices(func_node: &Node, source: &str) -> HashSet<usize> {
    let mut result = HashSet::new();
    let body = match func_node.child_by_field_name("body") {
        Some(b) => b,
        None => return result,
    };

    // Collect all parameter names with their indices in the parameter list
    let mut all_params: Vec<(usize, String, bool)> = Vec::new(); // (index, name, is_pointer)
    collect_param_list_with_indices(func_node, source, &mut all_params);

    let body_text = get_node_text(&body, source);

    for (idx, param_name, is_pointer) in &all_params {
        if !is_pointer {
            continue;
        }
        let deref_write = format!("*{}", param_name);

        if !body_text.contains(&deref_write) {
            continue; // Param not written through at all
        }

        // Check: does *param = appear at compound_statement top level?
        let mut has_unconditional_write = false;
        for i in 0..body.child_count() {
            if let Some(child) = body.child(i) {
                if child.kind() == "expression_statement" {
                    let stmt_text = get_node_text(&child, source);
                    if stmt_text.contains(&deref_write) && stmt_text.contains('=') {
                        has_unconditional_write = true;
                        break;
                    }
                }
            }
        }

        if !has_unconditional_write {
            result.insert(*idx);
        }
    }

    result
}

/// Collect all parameters with their indices, names, and whether they're pointers.
fn collect_param_list_with_indices(
    func_node: &Node,
    source: &str,
    params: &mut Vec<(usize, String, bool)>,
) {
    let declarator = match func_node.child_by_field_name("declarator") {
        Some(d) => d,
        None => return,
    };
    let func_decl = match find_function_declarator_node(&declarator) {
        Some(d) => d,
        None => return,
    };

    for i in 0..func_decl.child_count() {
        if let Some(child) = func_decl.child(i) {
            if child.kind() == "parameter_list" {
                let mut param_idx = 0;
                for j in 0..child.child_count() {
                    if let Some(param) = child.child(j) {
                        if param.kind() == "parameter_declaration" {
                            let param_text = get_node_text(&param, source);
                            let is_pointer = param_text.contains('*');
                            let name = get_declarator_name_from(&param, source);
                            if !name.is_empty() {
                                params.push((param_idx, name, is_pointer));
                            }
                            param_idx += 1;
                        }
                    }
                }
            }
        }
    }
}

fn find_function_declarator_node<'a>(node: &Node<'a>) -> Option<Node<'a>> {
    if node.kind() == "function_declarator" {
        return Some(*node);
    }
    for i in 0..node.child_count() {
        if let Some(child) = node.child(i) {
            if let Some(found) = find_function_declarator_node(&child) {
                return Some(found);
            }
        }
    }
    None
}

fn get_declarator_name_from(node: &Node, source: &str) -> String {
    for i in 0..node.child_count() {
        if let Some(child) = node.child(i) {
            if child.kind() == "identifier" {
                return get_node_text(&child, source).to_string();
            }
            if child.kind() == "pointer_declarator" {
                return get_declarator_name_from(&child, source);
            }
        }
    }
    String::new()
}

/// Walk down a field_expression / subscript_expression chain to find the root identifier.
/// e.g., arr->data → "arr", ptr->field[i] → "ptr"
fn extract_root_identifier(node: &Node, source: &str) -> String {
    for i in 0..node.child_count() {
        if let Some(child) = node.child(i) {
            if child.kind() == "identifier" {
                return get_node_text(&child, source).to_string();
            }
            if child.kind() == "field_expression" || child.kind() == "subscript_expression" {
                return extract_root_identifier(&child, source);
            }
        }
    }
    String::new()
}

fn get_func_name(declarator: &Node, source: &str) -> String {
    match declarator.kind() {
        "identifier" => get_node_text(declarator, source).to_string(),
        "function_declarator" | "pointer_declarator" => {
            if let Some(inner) = declarator.child_by_field_name("declarator") {
                get_func_name(&inner, source)
            } else {
                for i in 0..declarator.child_count() {
                    if let Some(child) = declarator.child(i) {
                        if child.kind() == "identifier" {
                            return get_node_text(&child, source).to_string();
                        }
                    }
                }
                String::new()
            }
        }
        _ => String::new(),
    }
}

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

    /// Helper: parse code, create rule, call check on root, return violations
    fn check_code(code: &str) -> Vec<RuleViolation> {
        let mut parser = CParser::new().expect("parser");
        let tree = parser.parse_source(code).expect("parse");
        let rule = Exp33C::new();
        rule.check(&tree.root_node(), code)
    }

    #[test]
    fn test_initialized_at_decl() {
        let violations = check_code("int f() { int result = 0; return result; }");
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C")
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "result=0 should be initialized, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    #[test]
    fn test_uninitialized_read() {
        let violations = check_code("int f() { int x; return x; }");
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C")
            .collect::<Vec<_>>();
        assert!(!exp33.is_empty(), "x should be flagged as uninitialized");
    }

    #[test]
    fn test_conditional_init_both_branches() {
        let violations = check_code(
            r#"
            int f(int c) {
                int x;
                if (c) { x = 1; } else { x = 2; }
                return x;
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C")
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "x init'd in both branches, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    #[test]
    fn test_conditional_init_one_branch() {
        let violations = check_code(
            r#"
            int f(int c) {
                int x;
                if (c) { x = 1; }
                return x;
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C")
            .collect::<Vec<_>>();
        assert!(!exp33.is_empty(), "x only init'd in one branch");
    }

    #[test]
    fn test_memset_initializes() {
        let violations = check_code(
            r#"
            typedef int mbstate_t;
            void f() {
                mbstate_t state;
                memset(&state, 0, sizeof(state));
                use(state);
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("state"))
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "memset should initialize state, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    #[test]
    fn test_va_start_initializes() {
        let violations = check_code(
            r#"
            typedef int va_list;
            void f(int count, ...) {
                va_list args;
                va_start(args, count);
                use(args);
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("args"))
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "va_start should initialize args, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    #[test]
    fn test_subscript_field_write_not_read() {
        let violations = check_code(
            r#"
            typedef struct { int a; int b; } Pair;
            void f() {
                Pair *arr = (Pair *)malloc(4 * sizeof(Pair));
                if (arr == 0) return;
                arr[0].a = 0;
                arr[0].b = 0;
                free(arr);
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("arr"))
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "arr[0].a=0 should not flag arr, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    #[test]
    fn test_array_loop_init() {
        let violations = check_code(
            r#"
            void f(int size) {
                int vla[10];
                for (int i = 0; i < 10; i++) {
                    vla[i] = i;
                }
                use(vla[0]);
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("vla"))
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "loop init should mark vla as initialized, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    #[test]
    fn test_malloc_loop_init() {
        let violations = check_code(
            r#"
            void f() {
                int *array = malloc(10 * sizeof(int));
                if (array == 0) return;
                for (int i = 0; i < 10; i++) {
                    array[i] = i + 1;
                }
                use(array[0]);
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("array"))
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "loop init after malloc should be safe, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    // --- Regression tests for the 5 remaining fail-test gaps ---

    #[test]
    fn test_thread_local_uninit() {
        let violations = check_code(
            r#"
            static int counter;
            void f(void) {
                counter += 10;
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("counter"))
            .collect::<Vec<_>>();
        assert!(
            !exp33.is_empty(),
            "static without init should be flagged, got nothing"
        );
    }

    #[test]
    fn test_mbstate_non_init_read() {
        // &state passed to mbrlen which READS from it (non-initializing)
        let violations = check_code(
            r#"
            typedef int mbstate_t;
            void f(const char *mbs) {
                mbstate_t state;
                mbrlen(mbs, 5, &state);
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("state"))
            .collect::<Vec<_>>();
        assert!(
            !exp33.is_empty(),
            "mbrlen reads &state without prior init — should flag"
        );
    }

    #[test]
    fn test_return_by_reference_partial() {
        // set_flag only inits *sign_flag on some paths
        let violations = check_code(
            r#"
            void set_flag(int number, int *sign_flag) {
                if (sign_flag == 0) return;
                if (number > 0) *sign_flag = 1;
                else if (number < 0) *sign_flag = -1;
            }
            int f(int number) {
                int sign;
                set_flag(number, &sign);
                return sign < 0;
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("sign"))
            .collect::<Vec<_>>();
        assert!(
            !exp33.is_empty(),
            "set_flag doesn't init sign for number==0 — should flag"
        );
    }

    #[test]
    fn test_cross_file_read_only_deref() {
        // Simulates variant 63 pattern: &uninit_var passed to a function that
        // reads *param without writing. With cross-file summaries, this should
        // be flagged.
        let code = r#"
            void f() {
                int data;
                badSink(&data);
            }
        "#;
        let mut parser = CParser::new().expect("parser");
        let tree = parser.parse_source(code).expect("parse");
        let rule = Exp33C::new();

        // Inject a cross-file summary: badSink dereferences param 0 without modifying
        let mut summary = FunctionSummary::default();
        summary.dereferences_params.insert(0);
        // modifies_params is empty — read-only dereference
        let mut summaries = HashMap::new();
        summaries.insert("badSink".to_string(), summary);
        *rule.cross_file_summaries.borrow_mut() = summaries;

        let violations = rule.check(&tree.root_node(), code);
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("data"))
            .collect::<Vec<_>>();
        assert!(
            !exp33.is_empty(),
            "Passing &uninit_var to read-only-deref function should flag"
        );
    }

    #[test]
    fn test_cross_file_modifying_function_ok() {
        // Function that modifies param (writes *param) — should still treat as initializing
        let code = r#"
            void f() {
                int data;
                initSink(&data);
                use(data);
            }
        "#;
        let mut parser = CParser::new().expect("parser");
        let tree = parser.parse_source(code).expect("parse");
        let rule = Exp33C::new();

        // initSink both dereferences and modifies param 0
        let mut summary = FunctionSummary::default();
        summary.dereferences_params.insert(0);
        summary.modifies_params.insert(0);
        let mut summaries = HashMap::new();
        summaries.insert("initSink".to_string(), summary);
        *rule.cross_file_summaries.borrow_mut() = summaries;

        let violations = rule.check(&tree.root_node(), code);
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("data"))
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "initSink modifies param — data should be initialized, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    // test_realloc_uninit_portion and test_flexible_array_uninit are deferred
    // — they require inter-procedural realloc tracking and flexible array patterns
    // that are beyond the current CFG analysis scope.

    #[test]
    fn test_fgets_initializes_array() {
        let violations = check_code(
            r#"
            void f() {
                char input[100];
                fgets(input, 100, 0);
                use(input);
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("input"))
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "fgets should initialize input, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    #[test]
    fn test_struct_field_write() {
        let violations = check_code(
            r#"
            typedef struct { int a; int b; } Pair;
            void f() {
                Pair p;
                p.a = 1;
                p.b = 2;
                use(p.a);
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("'p'"))
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "p.a=1 should initialize p, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }

    #[test]
    fn test_switch_with_initialized_default() {
        let violations = check_code(
            r#"
            int f(int op) {
                int result = 0;
                switch (op) {
                    case 1: result = 10; break;
                    default: result = -1; break;
                }
                return result;
            }
        "#,
        );
        let exp33 = violations
            .iter()
            .filter(|v| v.rule_id == "EXP33-C" && v.message.contains("result"))
            .collect::<Vec<_>>();
        assert!(
            exp33.is_empty(),
            "result=0 should be initialized, got: {:?}",
            exp33.iter().map(|v| &v.message).collect::<Vec<_>>()
        );
    }
}