Wei Liu

12 papers B 2C 1Misc 2Journal 5Unranked 2
YearRankTypeTitle / Venue / Authors
2016 J jnl
IEEE Trans. Inf. Theory
Ge Xu, Wei Liu, Biao Chen
2013 J jnl
CoRR
Ge Xu, Wei Liu, Biao Chen
2011 J jnl
IEEE Trans. Inf. Theory
Wei Liu, Biao Chen
2011 Misc conf
CISS
Ge Xu, Wei Liu, Biao Chen
2010 B conf
ISIT
Wei Liu, Biao Chen
2010 C conf
FUSION
Minna Chen, Wei Liu, Biao Chen, John D. Matyjas
2010 J jnl
CoRR
Wei Liu, Ge Xu, Biao Chen
2010 conf
Allerton
Wei Liu, Ge Xu, Biao Chen
2009 B conf
GLOBECOM
Wei Liu, Biao Chen
2009 J jnl
CoRR
Wei Liu, Biao Chen
2009 conf
Allerton
Wei Liu, Biao Chen
2009 Misc conf
CISS
Wei Liu, Biao Chen
redb/extractors/decompiler/bninja/function_type.py
← Index redb/extractors/decompiler/bninja/function_type.py python
from enum import Enum

import binaryninja


class FunctionType(Enum):
    USER = "USER"
    LIBRARY = "LIBRARY"
    EXTERNAL = "EXTERNAL"
    THUNK = "THUNK"
    UNKNOWN = "UNKNOWN"


class FunctionTypeAnalysis:
    """Get the function kind based on the symbol type associated to this function"""

    def __init__(self, function):
        """Sets the function type dependent on the symbol type associated to this function. If
        any errors occur, then returns UNKNOWN
        """
        self.func_type = FunctionType.USER

        try:
            symbol_type = function.symbol.type
            # Check if it's an external function (there should not be, already skipping these)
            if symbol_type == binaryninja.enums.SymbolType.ImportedFunctionSymbol:
                self.func_type = FunctionType.EXTERNAL

            # Library functions detected by Binary Ninja
            if symbol_type == binaryninja.enums.SymbolType.LibraryFunctionSymbol:
                self.func_type = FunctionType.LIBRARY

            # Check if it's a thunk function
            if function.is_thunk:
                self.func_type = FunctionType.THUNK

        except Exception as _:
            self.func_type = FunctionType.UNKNOWN

    def get_function_type(self):
        return self.func_type