Cedric De Cock

13 papers C 7Journal 6
YearRankTypeTitle / Venue / Authors
2026 J jnl
IEEE Commun. Surv. Tutorials
Morteza Alijani, Cedric De Cock, Wout Joseph, David Plets
2026 J jnl
IEEE Internet Things J.
Kefan Shao, Zengke Li, Meng Sun, Cedric De Cock, David Plets
2025 C conf
IPIN
Lander Gyssels, Cedric De Cock, Stijn Luchie, Eli De Poorter, Emmeric Tanghe, David Plets
2025 J jnl
IEEE Trans. Instrum. Meas.
Hongchao Yang, Yunjia Wang, Chee Kiat Seow, Zengke Li, Meng Sun, Cedric De Cock, Jingxue Bi, Wout Joseph, David Plets
2024 C conf
IPIN
Cedric De Cock, Emmeric Tanghe, Chris Marshall, Nikos Kouvelas, David Plets
2023 J jnl
Sensors
Cedric De Cock, Emmeric Tanghe, Wout Joseph, David Plets
2023 C conf
IPIN
Cedric De Cock, Emmeric Tanghe, Wout Joseph, David Plets
2022 J jnl
IEEE Internet Things J.
Sander Bastiaens, Jono Vanhie-Van Gerwen, Nicola Macoir, Kenneth Deprez, Cedric De Cock, Wout Joseph, Eli De Poorter, David Plets
2022 C conf
IPIN
Cedric De Cock, Sander Coene, Ben Van Herbruggen, Luc Martens, Wout Joseph, David Plets
2022 C conf
IPIN
Meng Sun, Yunjia Wang, Keqiang Liu, Cedric De Cock, Wout Joseph, David Plets
2021 C conf
IPIN
Cedric De Cock, Wout Joseph, Luc Martens, David Plets
2021 J jnl
Sensors
Cedric De Cock, Wout Joseph, Luc Martens, Jens Trogh, David Plets
2021 C conf
IPIN
Sander Coene, Cedric De Cock, Emmeric Tanghe, David Plets, Luc Martens, Wout Joseph
tests/scripts/test_linking.py
← Index tests/scripts/test_linking.py python
#!/usr/bin/env python3
"""
Test script to verify the linking between decompiled and disassembled functions.
"""

import sys
import os
from pathlib import Path

# Add the redb directory to the path
sys.path.insert(0, str(Path(__file__).parent / "redb"))

from redb.extractors.decompiler.DecompileBinja import DecompileBinja
import logging

def test_linking():
    """Test that decompiled and disassembled functions are properly linked."""
    
    # Setup logging
    logging.basicConfig(level=logging.INFO)
    logger = logging.getLogger("test_linking")
    
    # Use a simple test binary (you'll need to provide a path to a test binary)
    test_binary = "test_files/hello"  # Adjust this path as needed
    
    if not os.path.exists(test_binary):
        print(f"Test binary not found: {test_binary}")
        print("Please provide a valid binary path for testing")
        return False
    
    try:
        # Create and run the extractor
        with DecompileBinja(test_binary, logger) as extractor:
            success = extractor.extract()
            
            if not success:
                print("Extraction failed")
                return False
            
            # Get the analysis results
            results = extractor.analysis_results
            
            if not results:
                print("No analysis results")
                return False
            
            print(f"Analysis completed successfully")
            print(f"Decompiled functions: {len(results['decompiled'])}")
            print(f"Disassembled functions: {len(results['disassembled'])}")
            
            # Test linking
            linking_issues = []
            linked_pairs = 0
            decompiled_only = 0
            disassembled_only = 0
            
            # Check decompiled functions have proper linking
            for decomp_func in results['decompiled']:
                decomp_hash = decomp_func.get('decompiled_function_hash')
                disasm_hash = decomp_func.get('disassembled_function_hash')
                
                if disasm_hash is None:
                    decompiled_only += 1
                    print(f"⚠️  Decompiled function {decomp_func.get('decompiled_function_name')} has no disassembled link (decompiled-only)")
                else:
                    linked_pairs += 1
                    print(f"✓ Decompiled function {decomp_func.get('decompiled_function_name')} linked to disassembled hash: {disasm_hash[:16]}...")
            
            # Check disassembled functions have proper linking
            for disasm_func in results['disassembled']:
                disasm_hash = disasm_func.get('disassembled_function_hash')
                decomp_hash = disasm_func.get('decompiled_function_hash')
                
                if decomp_hash is None:
                    disassembled_only += 1
                    print(f"⚠️  Disassembled function {disasm_func.get('disassembled_function_name')} has no decompiled link (disassembled-only)")
                else:
                    print(f"✓ Disassembled function {disasm_func.get('disassembled_function_name')} linked to decompiled hash: {decomp_hash[:16]}...")
            
            # Verify cross-references are consistent
            decompiled_hashes = {f['decompiled_function_hash']: f for f in results['decompiled']}
            disassembled_hashes = {f['disassembled_function_hash']: f for f in results['disassembled']}
            
            for decomp_func in results['decompiled']:
                decomp_hash = decomp_func.get('decompiled_function_hash')
                disasm_hash = decomp_func.get('disassembled_function_hash')
                
                if disasm_hash and disasm_hash in disassembled_hashes:
                    corresponding_disasm = disassembled_hashes[disasm_hash]
                    if corresponding_disasm.get('decompiled_function_hash') != decomp_hash:
                        linking_issues.append(f"Inconsistent linking: decompiled {decomp_hash[:16]}... -> disassembled {disasm_hash[:16]}... but reverse link doesn't match")
            
            # Summary
            print(f"\n📊 Linking Summary:")
            print(f"  - Linked function pairs: {linked_pairs}")
            print(f"  - Decompiled-only functions: {decompiled_only}")
            print(f"  - Disassembled-only functions: {disassembled_only}")
            print(f"  - Total functions processed: {len(results['decompiled']) + len(results['disassembled'])}")
            
            if linking_issues:
                print(f"\n❌ Linking issues found:")
                for issue in linking_issues:
                    print(f"  - {issue}")
                return False
            else:
                print(f"\n✅ All linking tests passed!")
                print(f"✅ Cross-references are consistent!")
                return True
                
    except Exception as e:
        print(f"Test failed with exception: {e}")
        return False

if __name__ == "__main__":
    success = test_linking()
    sys.exit(0 if success else 1)