首页
社区
课程
招聘
[原创]angr学习(四)初步阅读源码Project类&angrctf9~10
发表于: 2021-10-27 12:28 11660

[原创]angr学习(四)初步阅读源码Project类&angrctf9~10

2021-10-27 12:28
11660

一般angr的利用脚本首先都是创建一个Project对象,如下所示。Project类是angr模块的主类,它包含了一组二进制文件及它们之间的关系,并对它们执行分析。

Project类的__init__函数调用图。
image.png

angr源码-Project-init

cle.loader代表着将整个程序映射到某个地址空间,而地址空间的每个对象(比如,下方的main_object是00_angr_find)都可以由一个加载器后端加载。通过loader可查看二进制文件加载的共享库,以及执行对加载地址空间相关的基本查询。

auto_load_libs没有意义。如果同时传入concrete_target和auto_load_libs,那就会警告用户选项auto_load_libs无效。
image.png

为了缓解路径爆炸以及使符号执行的实践性更强,angr 用 Python 写的函数摘要(summary)来替换库函数,高效地模拟库函数对状态的影响。而Simprocedures对象里包含了函数摘要。比如angr用<SimProcedure strcmp>对象替换库函数strcmp。当然,Simprocedures不仅可用于替换库函数,也可替换用户自定义函数。也就是说,Simprocedures用于hook。
Simprocedures 可以缓解路径爆炸,反过来也可能引入路径爆炸。比如,strlen 的参数是符号字符串。​

image.png
利用hook改写check_equals_xxx函数为自己的函数。
image.png

结果为:ZJOIPFTRNZOXIMLEWGLFMCQOKWLUFJIB

image.png
不同于第9题,本题中check_equals_xxx函数的第一个参数是局部变量,而不是全局变量,无法确定其地址。而且虽然上图中的伪代码只调用了一个check_equals_xxx函数,但其实汇编代码中有很多个分支,如下图所示,单看汇编代码是很难确定该函数的地址的,所以这题需要通过函数名(符号)hook所有对该函数的调用。
image.png

结果为:URRKXXAPWVQQFMOT

上面和hook相关的函数都是public的,而这个函数是private的。

还有很多细节没有搞懂,比如cle.Loader,很多地方用到了loader里面的东西,但目前只是通过在解释器里运行代码看一看这些结构长什么样。还有SimProcedures等,另外还有Pickling序列化那些函数也没看出个所以然,后面再分析吧。

 
>>> project = angr.Project("/home/lzx/tools/angr_ctf/solutions/00_angr_find/00_angr_find")
>>> project = angr.Project("/home/lzx/tools/angr_ctf/solutions/00_angr_find/00_angr_find")
class Project:
    """
    This is the main class of the angr module. It is meant to contain a set of binaries and the relationships between
    them, and perform analyses on them. 这是angr模块的主类。它旨在包含一系列二进制文件和它们之间的关系,并基于它们进行分析
 
    :param thing:                       The path to the main executable object to analyze, or a CLE Loader object. 要分析的主要的可执行对象的路径,或CLE Loader对象,这个是必须指定的参数
 
    The following parameters are optional. 以下参数是可选的
 
    :param default_analysis_mode:       The mode of analysis to use by default. Defaults to 'symbolic'. 默认使用的分析模式, 默认为 ‘symbolic’
 
    :param ignore_functions:            A list of function names that, when imported from shared libraries, should
                                        never be stepped into in analysis (calls will return an unconstrained value).
                                        是一个函数名称列表,当列表里的这些函数从共享库导入后,不会被进入分析(调用将返回一个非约束值),简单来说就是传入一个要忽略的函数列表
    :param use_sim_procedures:          Whether to replace resolved dependencies for which simprocedures are
                                        available with said simprocedures.
                                        是否使用符号摘要替换库函数,默认是开启的,但是因为sim是模拟库函数可能存在精确度和准确性问题
    :param exclude_sim_procedures_func: A function that, when passed a function name, returns whether or not to wrap
                                        it with a simprocedure.
                                        不需要被替换的库函数
    :param exclude_sim_procedures_list: A list of functions to *not* wrap with simprocedures.
                                        不用sim替换的函数列表
    :param arch:                        The target architecture (auto-detected otherwise). 目标架构
    :param simos:                       a SimOS class to use for this project.
                                        确定 guest OS。创建了一个 angr.SimOS 或者其子类实例有以下定义:SimLinux、SimWindows、SimCGC、SimJavaVM、SimUserland。
 
    :param engine:                      The SimEngine class to use for this project.
                                        指定要使用的SimEngine引擎类型:failure engine、syscall engine、hook engine、unicorn engine、VEX engine。
                                        angr使用一系列引擎(SimEngine的子类)来模拟被执行代码对输入状态产生的影响。源码位于 angr/engines 目录下。
    :param bool translation_cache:      If True, cache translated basic blocks rather than re-translating them.
                                        布尔变量,如果为True,则缓存已转化的基本块,而不是重新转化它们,简单来说就是否开启对于基本块的缓存
    :param support_selfmodifying_code:  Whether we aggressively support self-modifying code. When enabled, emulation
                                        will try to read code from the current state instead of the original memory,
                                        regardless of the current memory protections.
    :type support_selfmodifying_code:   bool
                                        布尔变量,设定是否支持自修改代码。启用后,无论当前的内存保护如何,仿真都会尝试从当前状态而不是原始内存中读取代码
    :param store_function:              A function that defines how the Project should be stored. Default to pickling.
                                        一个函数,定义如何存储Project,默认为pickling方式(Python中的pickle,序列化对象并保存到磁盘中)
    :param load_function:               A function that defines how the Project should be loaded. Default to unpickling.
                                        一个函数,定义如何加载Project,默认是unpicklink方式(也就是反序列化)
    :param analyses_preset:             The plugin preset for the analyses provider (i.e. Analyses instance).
    :type analyses_preset:              angr.misc.PluginPreset
                                        设置project的插件,定义在angr.misc.PluginPreset
 
    Any additional keyword arguments passed will be passed onto ``cle.Loader``. 任何额外的关键参数都会传递给cle.Loader,angr 中的 CLE 模块用于将二进制文件载入虚拟地址空间,而CLE 最主要的接口就是 loader 类
 
    :ivar analyses:     The available analyses. analyses模块
    :type analyses:     angr.analysis.Analyses
    :ivar entry:        The program entrypoint. 程序入口点
    :ivar factory:      Provides access to important analysis elements such as path groups and symbolic execution results. 提供对重要分析元素的访问
    :type factory:      AngrObjectFactory
    :ivar filename:     The filename of the executable. 可执行文件的文件名
    :ivar loader:       The program loader. 程序加载器
    :type loader:       cle.Loader
    :ivar storage:      Dictionary of things that should be loaded/stored with the Project.
    :type storage:      defaultdict(list)
    """
 
    def __init__(self, thing,
                 default_analysis_mode=None,
                 ignore_functions=None,
                 use_sim_procedures=True,
                 exclude_sim_procedures_func=None,
                 exclude_sim_procedures_list=(),
                 arch=None, simos=None,
                 engine=None,
                 load_options: Dict[str, Any]=None,
                 translation_cache=True,
                 support_selfmodifying_code=False,
                 store_function=None,
                 load_function=None,
                 analyses_preset=None,
                 concrete_target=None,
                 **kwargs):
class Project:
    """
    This is the main class of the angr module. It is meant to contain a set of binaries and the relationships between
    them, and perform analyses on them. 这是angr模块的主类。它旨在包含一系列二进制文件和它们之间的关系,并基于它们进行分析
 
    :param thing:                       The path to the main executable object to analyze, or a CLE Loader object. 要分析的主要的可执行对象的路径,或CLE Loader对象,这个是必须指定的参数
 
    The following parameters are optional. 以下参数是可选的
 
    :param default_analysis_mode:       The mode of analysis to use by default. Defaults to 'symbolic'. 默认使用的分析模式, 默认为 ‘symbolic’
 
    :param ignore_functions:            A list of function names that, when imported from shared libraries, should
                                        never be stepped into in analysis (calls will return an unconstrained value).
                                        是一个函数名称列表,当列表里的这些函数从共享库导入后,不会被进入分析(调用将返回一个非约束值),简单来说就是传入一个要忽略的函数列表
    :param use_sim_procedures:          Whether to replace resolved dependencies for which simprocedures are
                                        available with said simprocedures.
                                        是否使用符号摘要替换库函数,默认是开启的,但是因为sim是模拟库函数可能存在精确度和准确性问题
    :param exclude_sim_procedures_func: A function that, when passed a function name, returns whether or not to wrap
                                        it with a simprocedure.
                                        不需要被替换的库函数
    :param exclude_sim_procedures_list: A list of functions to *not* wrap with simprocedures.
                                        不用sim替换的函数列表
    :param arch:                        The target architecture (auto-detected otherwise). 目标架构
    :param simos:                       a SimOS class to use for this project.
                                        确定 guest OS。创建了一个 angr.SimOS 或者其子类实例有以下定义:SimLinux、SimWindows、SimCGC、SimJavaVM、SimUserland。
 
    :param engine:                      The SimEngine class to use for this project.
                                        指定要使用的SimEngine引擎类型:failure engine、syscall engine、hook engine、unicorn engine、VEX engine。
                                        angr使用一系列引擎(SimEngine的子类)来模拟被执行代码对输入状态产生的影响。源码位于 angr/engines 目录下。
    :param bool translation_cache:      If True, cache translated basic blocks rather than re-translating them.
                                        布尔变量,如果为True,则缓存已转化的基本块,而不是重新转化它们,简单来说就是否开启对于基本块的缓存
    :param support_selfmodifying_code:  Whether we aggressively support self-modifying code. When enabled, emulation
                                        will try to read code from the current state instead of the original memory,
                                        regardless of the current memory protections.
    :type support_selfmodifying_code:   bool
                                        布尔变量,设定是否支持自修改代码。启用后,无论当前的内存保护如何,仿真都会尝试从当前状态而不是原始内存中读取代码
    :param store_function:              A function that defines how the Project should be stored. Default to pickling.
                                        一个函数,定义如何存储Project,默认为pickling方式(Python中的pickle,序列化对象并保存到磁盘中)
    :param load_function:               A function that defines how the Project should be loaded. Default to unpickling.
                                        一个函数,定义如何加载Project,默认是unpicklink方式(也就是反序列化)
    :param analyses_preset:             The plugin preset for the analyses provider (i.e. Analyses instance).
    :type analyses_preset:              angr.misc.PluginPreset
                                        设置project的插件,定义在angr.misc.PluginPreset
 
    Any additional keyword arguments passed will be passed onto ``cle.Loader``. 任何额外的关键参数都会传递给cle.Loader,angr 中的 CLE 模块用于将二进制文件载入虚拟地址空间,而CLE 最主要的接口就是 loader 类
 
    :ivar analyses:     The available analyses. analyses模块
    :type analyses:     angr.analysis.Analyses
    :ivar entry:        The program entrypoint. 程序入口点
    :ivar factory:      Provides access to important analysis elements such as path groups and symbolic execution results. 提供对重要分析元素的访问
    :type factory:      AngrObjectFactory
    :ivar filename:     The filename of the executable. 可执行文件的文件名
    :ivar loader:       The program loader. 程序加载器
    :type loader:       cle.Loader
    :ivar storage:      Dictionary of things that should be loaded/stored with the Project.
    :type storage:      defaultdict(list)
    """
 
    def __init__(self, thing,
                 default_analysis_mode=None,
                 ignore_functions=None,
                 use_sim_procedures=True,
                 exclude_sim_procedures_func=None,
                 exclude_sim_procedures_list=(),
                 arch=None, simos=None,
                 engine=None,
                 load_options: Dict[str, Any]=None,
                 translation_cache=True,
                 support_selfmodifying_code=False,
                 store_function=None,
                 load_function=None,
                 analyses_preset=None,
                 concrete_target=None,
                 **kwargs):
# Step 1: Load the binary 加载二进制文件,对输入的二进制文件进行初始化处理,最终目的是获得一个 cle.Loader 实例
 
# 二进制的装载组建是CLE(CLE Load Everything),它负责装载二进制对象以及它所依赖的库,将自身无法执行的操作转移给angr的其它组件,最后生成地址空间,表示该程序已加载并可以准备运行。
# cle.loader代表着将整个程序映射到某个地址空间,而地址空间的每个对象都可以由一个加载器后端加载
 
if load_options is None: load_options = {}
 
load_options.update(kwargs) # 更新load_options
if arch is not None: # 如果设置了架构,则将架构加入到load_options
    load_options.update({'arch': arch})
if isinstance(thing, cle.Loader): # 对加载的 thing 做判断,如果是一个 cle.Loader 类实例,则将其设置为 self.loader 成员变量的值
    if load_options:
        l.warning("You provided CLE options to angr but you also provided a completed cle.Loader object!")
    self.loader = thing
    self.filename = self.loader.main_object.binary
elif isinstance(thing, cle.Backend): #
    self.filename = thing.binary
    self.loader = cle.Loader(thing, **load_options)
elif hasattr(thing, 'read') and hasattr(thing, 'seek'): # 否则如果thing是一个流,则创建一个新的 cle.Loader
    l.info("Loading binary from stream")
    self.filename = None
    self.loader = cle.Loader(thing, **load_options)
elif not isinstance(thing, (str, Path)) or not os.path.exists(thing) or not os.path.isfile(thing): # 否则如果thing是一个无效二进制文件,则打印错误信息
    raise Exception("Not a valid binary file: %s" % repr(thing))
else: # 否则如果thing是一个有效的二进制文件,则创建一个新的 cle.Loader
    # use angr's loader, provided by cle
    l.info("Loading binary %s", thing)
    self.filename = str(thing)
    self.loader = cle.Loader(self.filename, concrete_target=concrete_target, **load_options)
# Step 1: Load the binary 加载二进制文件,对输入的二进制文件进行初始化处理,最终目的是获得一个 cle.Loader 实例
 
# 二进制的装载组建是CLE(CLE Load Everything),它负责装载二进制对象以及它所依赖的库,将自身无法执行的操作转移给angr的其它组件,最后生成地址空间,表示该程序已加载并可以准备运行。
# cle.loader代表着将整个程序映射到某个地址空间,而地址空间的每个对象都可以由一个加载器后端加载
 
if load_options is None: load_options = {}
 
load_options.update(kwargs) # 更新load_options
if arch is not None: # 如果设置了架构,则将架构加入到load_options
    load_options.update({'arch': arch})
if isinstance(thing, cle.Loader): # 对加载的 thing 做判断,如果是一个 cle.Loader 类实例,则将其设置为 self.loader 成员变量的值
    if load_options:
        l.warning("You provided CLE options to angr but you also provided a completed cle.Loader object!")
    self.loader = thing
    self.filename = self.loader.main_object.binary
elif isinstance(thing, cle.Backend): #
    self.filename = thing.binary
    self.loader = cle.Loader(thing, **load_options)
elif hasattr(thing, 'read') and hasattr(thing, 'seek'): # 否则如果thing是一个流,则创建一个新的 cle.Loader
    l.info("Loading binary from stream")
    self.filename = None
    self.loader = cle.Loader(thing, **load_options)
elif not isinstance(thing, (str, Path)) or not os.path.exists(thing) or not os.path.isfile(thing): # 否则如果thing是一个无效二进制文件,则打印错误信息
    raise Exception("Not a valid binary file: %s" % repr(thing))
else: # 否则如果thing是一个有效的二进制文件,则创建一个新的 cle.Loader
    # use angr's loader, provided by cle
    l.info("Loading binary %s", thing)
    self.filename = str(thing)
    self.loader = cle.Loader(self.filename, concrete_target=concrete_target, **load_options)
>>> project = angr.Project("/home/lzx/tools/angr_ctf/solutions/00_angr_find/00_angr_find")
 
>>> project.loader
<Loaded 00_angr_find, maps [0x8048000:0x8607fff]>
 
>>> hex(project.loader.max_addr)
'0x8607fff'
 
>>> hex(project.loader.min_addr)
'0x8048000'
 
>>> project.loader.shared_objects
OrderedDict([('00_angr_find', <ELF Object 00_angr_find, maps [0x8048000:0x804a03f]>), ('libc.so.6', <ELF Object libc-2.27.so, maps [0x8100000:0x82dba1f]>), ('ld-linux.so.2', <ELF Object ld-2.27.so, maps [0x8300000:0x8327937]>), ('extern-address space', <ExternObject Object cle##externs, maps [0x8400000:0x8407fff]>), ('cle##tls', <ELFTLSObjectV2 Object cle##tls, maps [0x8500000:0x8514807]>)])
 
>>> project.loader.all_objects
[<ELF Object 00_angr_find, maps [0x8048000:0x804a03f]>, <ELF Object libc-2.27.so, maps [0x8100000:0x82dba1f]>, <ELF Object ld-2.27.so, maps [0x8300000:0x8327937]>, <ExternObject Object cle##externs, maps [0x8400000:0x8407fff]>, <ELFTLSObjectV2 Object cle##tls, maps [0x8500000:0x8514807]>, <KernelObject Object cle##kernel, maps [0x8600000:0x8607fff]>]
 
 
>>> project.loader.main_object
<ELF Object 00_angr_find, maps [0x8048000:0x804a03f]>
 
>>> project.loader.main_object.execstack
False
 
>>> project.loader.main_object.pic
False
>>> project = angr.Project("/home/lzx/tools/angr_ctf/solutions/00_angr_find/00_angr_find")
 
>>> project.loader
<Loaded 00_angr_find, maps [0x8048000:0x8607fff]>
 
>>> hex(project.loader.max_addr)
'0x8607fff'
 
>>> hex(project.loader.min_addr)
'0x8048000'
 
>>> project.loader.shared_objects
OrderedDict([('00_angr_find', <ELF Object 00_angr_find, maps [0x8048000:0x804a03f]>), ('libc.so.6', <ELF Object libc-2.27.so, maps [0x8100000:0x82dba1f]>), ('ld-linux.so.2', <ELF Object ld-2.27.so, maps [0x8300000:0x8327937]>), ('extern-address space', <ExternObject Object cle##externs, maps [0x8400000:0x8407fff]>), ('cle##tls', <ELFTLSObjectV2 Object cle##tls, maps [0x8500000:0x8514807]>)])
 
>>> project.loader.all_objects
[<ELF Object 00_angr_find, maps [0x8048000:0x804a03f]>, <ELF Object libc-2.27.so, maps [0x8100000:0x82dba1f]>, <ELF Object ld-2.27.so, maps [0x8300000:0x8327937]>, <ExternObject Object cle##externs, maps [0x8400000:0x8407fff]>, <ELFTLSObjectV2 Object cle##tls, maps [0x8500000:0x8514807]>, <KernelObject Object cle##kernel, maps [0x8600000:0x8607fff]>]
 
 
>>> project.loader.main_object
<ELF Object 00_angr_find, maps [0x8048000:0x804a03f]>
 
>>> project.loader.main_object.execstack
False
 
>>> project.loader.main_object.pic
False
# Step 2: determine its CPU architecture, ideally falling back to CLE's guess 判断二进制文件的 CPU 架构 。
 
# archinfo是一个Python的第三方库用来判断二进制文件的目标架构
 
if isinstance(arch, str): # 如果输入的arch是字符串类型,则从 archinfo 里匹配后,再赋值给成员变量self.arch
    self.arch = archinfo.arch_from_id(arch)  # may raise ArchError, let the user see this
elif isinstance(arch, archinfo.Arch): # 如果输入的 arch 是 archinfo.Arch 类型,则直接赋值给成员变量self.arch
    self.arch = arch # type: archinfo.Arch
elif arch is None: # 如果没有输入arch,则从 self.loader 获取后赋值给成员变量self.arch
    self.arch = self.loader.main_object.arch
else: # 否则,异常
    raise ValueError("Invalid arch specification.")
# Step 2: determine its CPU architecture, ideally falling back to CLE's guess 判断二进制文件的 CPU 架构 。
 
# archinfo是一个Python的第三方库用来判断二进制文件的目标架构
 
if isinstance(arch, str): # 如果输入的arch是字符串类型,则从 archinfo 里匹配后,再赋值给成员变量self.arch
    self.arch = archinfo.arch_from_id(arch)  # may raise ArchError, let the user see this
elif isinstance(arch, archinfo.Arch): # 如果输入的 arch 是 archinfo.Arch 类型,则直接赋值给成员变量self.arch
    self.arch = arch # type: archinfo.Arch
elif arch is None: # 如果没有输入arch,则从 self.loader 获取后赋值给成员变量self.arch
    self.arch = self.loader.main_object.arch
else: # 否则,异常
    raise ValueError("Invalid arch specification.")
>>> project.loader.main_object.arch
<Arch X86 (LE)>
 
>>> project.arch
<Arch X86 (LE)>
>>> project.loader.main_object.arch
<Arch X86 (LE)>
 
>>> project.arch
<Arch X86 (LE)>
# Step 3: Set some defaults and set the public and private properties 对相关的默认、公共和私有属性进行设置
if not default_analysis_mode: # 首先就是对默认使用的分析模式
    default_analysis_mode = 'symbolic'
if not ignore_functions: # 需要忽略替换的函数列表
    ignore_functions = []
 
if isinstance(exclude_sim_procedures_func, types.LambdaType): # exclude_sim_procedures_func-不需替换的库函数
    l.warning("Passing a lambda type as the exclude_sim_procedures_func argument to "
              "Project causes the resulting object to be un-serializable."# 如果传递lambda类型的exclude_sim_procedures_func参数给Project,则会导致生成的对象不可序列化
 
self._sim_procedures = {}
 
self.concrete_target = concrete_target
 
# It doesn't make any sense to have auto_load_libs 参数auto_load_libs没有意义
# if you have the concrete target, let's warn the user about this. 如果有具体的目标,则就这点警告用户
if self.concrete_target and load_options.get('auto_load_libs', None):
 
    l.critical("Incompatible options selected for this project, please disable auto_load_libs if "
               "you want to use a concrete target."# critical 当发生严重错误,导致应用程序不能继续运行时记录的信息
    raise Exception("Incompatible options for the project")
 
if self.concrete_target and self.arch.name not in ['X86', 'AMD64', 'ARMHF']: # 如果有具体的目标,但是cpu架构不是【x86、amd64、armhf】
    l.critical("Concrete execution does not support yet the selected architecture. Aborting.")
    raise Exception("Incompatible options for the project")
 
self._default_analysis_mode = default_analysis_mode  # 默认分析模式
self._exclude_sim_procedures_func = exclude_sim_procedures_func # 不需被SimProcedure中符号摘要替换的库函数
self._exclude_sim_procedures_list = exclude_sim_procedures_list # 不需被SimProcedure中符号摘要替换的库函数列表
self.use_sim_procedures = use_sim_procedures # 是否使用符号摘要替换库函数
self._ignore_functions = ignore_functions # 要忽略的函数列表
self._support_selfmodifying_code = support_selfmodifying_code # 是否支持自修改代码
self._translation_cache = translation_cache # 是否开启对于基本块的缓存
self._executing = False # this is a flag for the convenience API, exec() and terminate_execution() below
 
if self._support_selfmodifying_code: # 如果支持自修改代码,那么确保关闭对基本块的缓存
    if self._translation_cache is True:
        self._translation_cache = False
        l.warning("Disabling IRSB translation cache because support for self-modifying code is enabled.")
 
self.entry = self.loader.main_object.entry # 程序入口点
self.storage = defaultdict(list)
self.store_function = store_function or self._store
self.load_function = load_function or self._load
# Step 3: Set some defaults and set the public and private properties 对相关的默认、公共和私有属性进行设置
if not default_analysis_mode: # 首先就是对默认使用的分析模式
    default_analysis_mode = 'symbolic'
if not ignore_functions: # 需要忽略替换的函数列表
    ignore_functions = []
 
if isinstance(exclude_sim_procedures_func, types.LambdaType): # exclude_sim_procedures_func-不需替换的库函数
    l.warning("Passing a lambda type as the exclude_sim_procedures_func argument to "
              "Project causes the resulting object to be un-serializable."# 如果传递lambda类型的exclude_sim_procedures_func参数给Project,则会导致生成的对象不可序列化
 
self._sim_procedures = {}
 
self.concrete_target = concrete_target
 
# It doesn't make any sense to have auto_load_libs 参数auto_load_libs没有意义
# if you have the concrete target, let's warn the user about this. 如果有具体的目标,则就这点警告用户
if self.concrete_target and load_options.get('auto_load_libs', None):
 
    l.critical("Incompatible options selected for this project, please disable auto_load_libs if "
               "you want to use a concrete target."# critical 当发生严重错误,导致应用程序不能继续运行时记录的信息
    raise Exception("Incompatible options for the project")
 
if self.concrete_target and self.arch.name not in ['X86', 'AMD64', 'ARMHF']: # 如果有具体的目标,但是cpu架构不是【x86、amd64、armhf】
    l.critical("Concrete execution does not support yet the selected architecture. Aborting.")
    raise Exception("Incompatible options for the project")
 
self._default_analysis_mode = default_analysis_mode  # 默认分析模式
self._exclude_sim_procedures_func = exclude_sim_procedures_func # 不需被SimProcedure中符号摘要替换的库函数
self._exclude_sim_procedures_list = exclude_sim_procedures_list # 不需被SimProcedure中符号摘要替换的库函数列表
self.use_sim_procedures = use_sim_procedures # 是否使用符号摘要替换库函数
self._ignore_functions = ignore_functions # 要忽略的函数列表
self._support_selfmodifying_code = support_selfmodifying_code # 是否支持自修改代码
self._translation_cache = translation_cache # 是否开启对于基本块的缓存
self._executing = False # this is a flag for the convenience API, exec() and terminate_execution() below
 
if self._support_selfmodifying_code: # 如果支持自修改代码,那么确保关闭对基本块的缓存
    if self._translation_cache is True:
        self._translation_cache = False
        l.warning("Disabling IRSB translation cache because support for self-modifying code is enabled.")
 
self.entry = self.loader.main_object.entry # 程序入口点
self.storage = defaultdict(list)
self.store_function = store_function or self._store
self.load_function = load_function or self._load
# Step 4: Set up the project's hubs 设置Project的各种插件,CLE模块会将自身无法执行的操作转移给angr的其它组件,这里就是对于CLE分析的一些组件的初始化
# Step 4.1 Factory
# 第一步设置的就是angr中最重要的Factory组件,factory有几个方便的构造函数,用于经常使用的常见对象。这一步从参数、loader、arch 或者默认值中获取预设的引擎,创建了一个 angr.EngineHub 类实例
self.factory = AngrObjectFactory(self, default_engine=engine)
 
# Step 4.2: Analyses
# 第二步主要是从参数或者默认值中获取预设的分析。创建了一个 angr.AnalysesHub 类实例,angr 内置了一些分析方法,用于提取程序信息,接口位于 proj.analyses. 中
self._analyses_preset = analyses_preset
self.analyses = None
self._initialize_analyses_hub()
 
# Step 4.3: ...etc
self.kb = KnowledgeBase(self, name="global")
# Step 4: Set up the project's hubs 设置Project的各种插件,CLE模块会将自身无法执行的操作转移给angr的其它组件,这里就是对于CLE分析的一些组件的初始化
# Step 4.1 Factory
# 第一步设置的就是angr中最重要的Factory组件,factory有几个方便的构造函数,用于经常使用的常见对象。这一步从参数、loader、arch 或者默认值中获取预设的引擎,创建了一个 angr.EngineHub 类实例
self.factory = AngrObjectFactory(self, default_engine=engine)
 
# Step 4.2: Analyses
# 第二步主要是从参数或者默认值中获取预设的分析。创建了一个 angr.AnalysesHub 类实例,angr 内置了一些分析方法,用于提取程序信息,接口位于 proj.analyses. 中
self._analyses_preset = analyses_preset
self.analyses = None
self._initialize_analyses_hub()
 
# Step 4.3: ...etc
self.kb = KnowledgeBase(self, name="global")
class AngrObjectFactory:
    """
    This factory provides access to important analysis elements.
    该工厂提供对重要分析元素的访问
    """
    def __init__(self, project, default_engine=None):
        if default_engine is None:
            default_engine = UberEngine
 
        self.project = project
        self._default_cc = DEFAULT_CC.get(project.arch.name, SimCCUnknown)
        self.default_engine = default_engine(project)
        self.procedure_engine = ProcedureEngine(project)
 
        if project.concrete_target:
            self.concrete_engine = SimEngineConcrete(project)
        else:
            self.concrete_engine = None
class AngrObjectFactory:
    """
    This factory provides access to important analysis elements.
    该工厂提供对重要分析元素的访问
    """
    def __init__(self, project, default_engine=None):
        if default_engine is None:
            default_engine = UberEngine
 
        self.project = project
        self._default_cc = DEFAULT_CC.get(project.arch.name, SimCCUnknown)
        self.default_engine = default_engine(project)
        self.procedure_engine = ProcedureEngine(project)
 
        if project.concrete_target:
            self.concrete_engine = SimEngineConcrete(project)
        else:
            self.concrete_engine = None
>>> project.factory
<angr.factory.AngrObjectFactory object at 0x7fe0657f5588>
>>> project.factory.project
<Project /home/lzx/tools/angr_ctf/solutions/00_angr_find/00_angr_find>
>>> project.factory._default_cc
<class 'angr.calling_conventions.SimCCCdecl'>
>>> project.factory.default_engine
<angr.engines.UberEngine object at 0x7fe05a50dc18>
>>> project.factory.procedure_engine
<angr.engines.procedure.ProcedureEngine object at 0x7fe059244978>
>>> project.factory
<angr.factory.AngrObjectFactory object at 0x7fe0657f5588>
>>> project.factory.project
<Project /home/lzx/tools/angr_ctf/solutions/00_angr_find/00_angr_find>
>>> project.factory._default_cc
<class 'angr.calling_conventions.SimCCCdecl'>
>>> project.factory.default_engine
<angr.engines.UberEngine object at 0x7fe05a50dc18>
>>> project.factory.procedure_engine
<angr.engines.procedure.ProcedureEngine object at 0x7fe059244978>
def _initialize_analyses_hub(self):
     """
     Initializes self.analyses using a given preset.
     """
     self.analyses = AnalysesHub(self)
     self.analyses.use_plugin_preset(self._analyses_preset if self._analyses_preset is not None else 'default')
def _initialize_analyses_hub(self):
     """
     Initializes self.analyses using a given preset.
     """
     self.analyses = AnalysesHub(self)
     self.analyses.use_plugin_preset(self._analyses_preset if self._analyses_preset is not None else 'default')
class AnalysesHub(PluginVendor):
    """
    This class contains functions for all the registered and runnable analyses,
    """
    def __init__(self, project):
        super(AnalysesHub, self).__init__()
        self.project = project
class AnalysesHub(PluginVendor):
    """
    This class contains functions for all the registered and runnable analyses,
    """
    def __init__(self, project):
        super(AnalysesHub, self).__init__()
        self.project = project
class KnowledgeBase:
    """Represents a "model" of knowledge about an artifact.
 
    Contains things like a CFG, data references, etc.
    """
    functions: 'FunctionManager'
    variables: 'VariableManager'
    structured_code: 'StructuredCodeManager'
    defs: 'KeyDefinitionManager'
    cfgs: 'CFGManager'
    _project: 'Project'
    types: 'TypesStore'
 
    def __init__(self, project, obj=None, name=None):
        if obj is not None:
            l.warning("The obj parameter in KnowledgeBase.__init__() has been deprecated.")
        object.__setattr__(self, '_project', project)
        object.__setattr__(self, '_plugins', {})
 
        self.name = name if name else ("kb_%d" % next(kb_ctr))
class KnowledgeBase:
    """Represents a "model" of knowledge about an artifact.
 
    Contains things like a CFG, data references, etc.
    """
    functions: 'FunctionManager'
    variables: 'VariableManager'
    structured_code: 'StructuredCodeManager'
    defs: 'KeyDefinitionManager'
    cfgs: 'CFGManager'
    _project: 'Project'
    types: 'TypesStore'
 
    def __init__(self, project, obj=None, name=None):
        if obj is not None:
            l.warning("The obj parameter in KnowledgeBase.__init__() has been deprecated.")
        object.__setattr__(self, '_project', project)
        object.__setattr__(self, '_plugins', {})
 
        self.name = name if name else ("kb_%d" % next(kb_ctr))
# Step 5: determine the guest OS  确定 guest OS。创建了一个 angr.SimOS 或者其子类实例
if isinstance(simos, type) and issubclass(simos, SimOS):
    self.simos = simos(self) #pylint:disable=invalid-name
elif isinstance(simos, str):
    self.simos = os_mapping[simos](self)
elif simos is None:
    self.simos = os_mapping[self.loader.main_object.os](self)
else:
    raise ValueError("Invalid OS specification or non-matching architecture.")
 
self.is_java_project = isinstance(self.arch, ArchSoot)
self.is_java_jni_project = isinstance(self.arch, ArchSoot) and self.simos.is_javavm_with_jni_support
# Step 5: determine the guest OS  确定 guest OS。创建了一个 angr.SimOS 或者其子类实例
if isinstance(simos, type) and issubclass(simos, SimOS):
    self.simos = simos(self) #pylint:disable=invalid-name
elif isinstance(simos, str):
    self.simos = os_mapping[simos](self)
elif simos is None:
    self.simos = os_mapping[self.loader.main_object.os](self)
else:
    raise ValueError("Invalid OS specification or non-matching architecture.")
 
self.is_java_project = isinstance(self.arch, ArchSoot)
self.is_java_jni_project = isinstance(self.arch, ArchSoot) and self.simos.is_javavm_with_jni_support
>>> project.simos
<angr.simos.linux.SimLinux object at 0x7fe059251eb8>
>>> project.simos
<angr.simos.linux.SimLinux object at 0x7fe059251eb8>
# Step 6: Register simprocedures as appropriate for library functions 根据库函数适当地注册 simprocedures
if isinstance(self.arch, ArchSoot) and self.simos.is_javavm_with_jni_support:
    # If we execute a Java archive that includes native JNI libraries,
    # we need to use the arch of the native simos for all (native) sim
    # procedures.
    sim_proc_arch = self.simos.native_arch
else:
    sim_proc_arch = self.arch
for obj in self.loader.initial_load_objects:
    self._register_object(obj, sim_proc_arch) # 调用了内部函数 _register_object,这个函数将尽可能地用angr库中的实现的符号摘要将程序中的库函数与替换掉
# Step 6: Register simprocedures as appropriate for library functions 根据库函数适当地注册 simprocedures
if isinstance(self.arch, ArchSoot) and self.simos.is_javavm_with_jni_support:
    # If we execute a Java archive that includes native JNI libraries,
    # we need to use the arch of the native simos for all (native) sim
    # procedures.
    sim_proc_arch = self.simos.native_arch
else:
    sim_proc_arch = self.arch
for obj in self.loader.initial_load_objects:
    self._register_object(obj, sim_proc_arch) # 调用了内部函数 _register_object,这个函数将尽可能地用angr库中的实现的符号摘要将程序中的库函数与替换掉
>>> project.loader.initial_load_objects
[<ELF Object 00_angr_find, maps [0x8048000:0x804a03f]>, <ELF Object libc-2.27.so, maps [0x8100000:0x82dba1f]>, <ELF Object ld-2.27.so, maps [0x8300000:0x8327937]>]
 
>>> project.loader.initial_load_objects[0].imports.values()
dict_values([<cle.backends.elf.relocation.i386.R_386_GLOB_DAT object at 0x7fe0593a2898>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2b70>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2ac8>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2b00>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2c88>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2cf8>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2a20>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2cc0>])
>>> project.loader.initial_load_objects
[<ELF Object 00_angr_find, maps [0x8048000:0x804a03f]>, <ELF Object libc-2.27.so, maps [0x8100000:0x82dba1f]>, <ELF Object ld-2.27.so, maps [0x8300000:0x8327937]>]
 
>>> project.loader.initial_load_objects[0].imports.values()
dict_values([<cle.backends.elf.relocation.i386.R_386_GLOB_DAT object at 0x7fe0593a2898>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2b70>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2ac8>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2b00>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2c88>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2cf8>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2a20>, <cle.backends.elf.relocation.i386.R_386_JMP_SLOT object at 0x7fe0593a2cc0>])
def _register_object(self, obj, sim_proc_arch):
    """
    This scans through an objects imports and hooks them with simprocedures from our library whenever possible
    扫描一个对象的导入并尽可能地使用 simprocedures hook他们
    """
 
    # Step 1: get the set of libraries we are allowed to use to resolve unresolved symbols 获取可以用来解析未解析符号的库集,即获取angr已经实现符号摘要的库函数
    missing_libs = []
    for lib_name in self.loader.missing_dependencies:
        try:
            missing_libs.append(SIM_LIBRARIES[lib_name])
        except KeyError:
            l.info("There are no simprocedures for missing library %s :(", lib_name)
    # additionally provide libraries we _have_ loaded as a fallback fallback
    # this helps in the case that e.g. CLE picked up a linux arm libc to satisfy an android arm binary
    for lib in self.loader.all_objects:
        if lib.provides in SIM_LIBRARIES:
            simlib = SIM_LIBRARIES[lib.provides]
            if simlib not in missing_libs:
                missing_libs.append(simlib)
 
    # Step 2: Categorize every "import" symbol in each object. 给每个object中的重要符号 分类,即分析程序中的导入函数
    # If it's IGNORED, mark it for stubbing 如果某个符号是忽略函数列表中的某个,标记为stubbing,不替换
    # If it's blacklisted, don't process it 如果某个符号处在黑名单,不处理
    # If it matches a simprocedure we have, replace it 如果某个符号匹配某个simprocedure,替换
    for reloc in obj.imports.values():
        # Step 2.1: Quick filter on symbols we really don't care about  快速过滤掉不关心的符号
        func = reloc.symbol
        if func is None: # None
            continue
        if not func.is_function and func.type != cle.backends.symbol.SymbolType.TYPE_NONE: # 符号不是函数且其类型不等于SymbolType.TYPE_NONE
            continue
        if func.resolvedby is None:
            # I don't understand the binary which made me add this case. If you are debugging and see this comment,
            # good luck.
            # ref: https://github.com/angr/angr/issues/1782
            # (I also don't know why the TYPE_NONE check in the previous clause is there but I can't find a ref for
            # that. they are probably related.)
            continue
        if not reloc.resolved: # 如果没有解析,就猜测simprocedure
            # This is a hack, effectively to support Binary Ninja, which doesn't provide access to dependency
            # library names. The backend creates the Relocation objects, but leaves them unresolved so that
            # we can try to guess them here. Once the Binary Ninja API starts supplying the dependencies,
            # The if/else, along with Project._guess_simprocedure() can be removed if it has no other utility,
            # just leave behind the 'unresolved' debug statement from the else clause.
 
            # Binary Ninja 提供了一个可供操作二进制文件的平台,甚至还可以在平台的基础上基于API来编写更方便的脚本和插件
            if reloc.owner.guess_simprocs:
                l.debug("Looking for matching SimProcedure for unresolved %s from %s with hint %s",
                        func.name, reloc.owner, reloc.owner.guess_simprocs_hint)
                self._guess_simprocedure(func, reloc.owner.guess_simprocs_hint)
            else:
                l.debug("Ignoring unresolved import '%s' from %s ...?", func.name, reloc.owner)
            continue
        export = reloc.resolvedby
        if self.is_hooked(export.rebased_addr): # 判断该函数是否已经被hook,如果已经被hook就不进行下面的操作,换下一个函数
            l.debug("Already hooked %s (%s)", export.name, export.owner)
            continue
 
        # Step 2.2: If this function has been resolved by a static dependency,
        # check if we actually can and want to replace it with a SimProcedure.
        # We opt out of this step if it is blacklisted by ignore_functions, which
        # will cause it to be replaced by ReturnUnconstrained later.
        # 如果此函数已经由静态依赖项解析,检查是否真的可以并想用SimProcedure替换它,如果
        if export.owner is not self.loader._extern_object and \
                export.name not in self._ignore_functions:
            if self._check_user_blacklists(export.name): # 如果该函数在黑名单中,结束操作
                continue
            owner_name = export.owner.provides
            if isinstance(self.loader.main_object, cle.backends.pe.PE): # 如果是PE文件,owner_name变小写
                owner_name = owner_name.lower()
            if owner_name not in SIM_LIBRARIES:
                continue
            sim_lib = SIM_LIBRARIES[owner_name]
            if not sim_lib.has_implementation(export.name):
                continue
            l.info("Using builtin SimProcedure for %s from %s", export.name, sim_lib.name)
            self.hook_symbol(export.rebased_addr, sim_lib.get(export.name, sim_proc_arch))
 
        # Step 2.3: If 2.2 didn't work, check if the symbol wants to be resolved
        # by a library we already know something about. Resolve it appropriately.
        # Note that _check_user_blacklists also includes _ignore_functions.
        # An important consideration is that even if we're stubbing a function out,
        # we still want to try as hard as we can to figure out where it comes from
        # so we can get the calling convention as close to right as possible.
        elif reloc.resolvewith is not None and reloc.resolvewith in SIM_LIBRARIES:
            sim_lib = SIM_LIBRARIES[reloc.resolvewith]
            if self._check_user_blacklists(export.name):
                if not func.is_weak:
                    l.info("Using stub SimProcedure for unresolved %s from %s", func.name, sim_lib.name)
                    self.hook_symbol(export.rebased_addr, sim_lib.get_stub(export.name, sim_proc_arch))
            else:
                l.info("Using builtin SimProcedure for unresolved %s from %s", export.name, sim_lib.name)
                self.hook_symbol(export.rebased_addr, sim_lib.get(export.name, sim_proc_arch))
 
        # Step 2.4: If 2.3 didn't work (the symbol didn't request a provider we know of), try
        # looking through each of the SimLibraries we're using to resolve unresolved
        # functions. If any of them know anything specifically about this function,
        # resolve it with that. As a final fallback, just ask any old SimLibrary
        # to resolve it.
        elif missing_libs:
            for sim_lib in missing_libs:
                if sim_lib.has_metadata(export.name):
                    if self._check_user_blacklists(export.name):
                        if not func.is_weak:
                            l.info("Using stub SimProcedure for unresolved %s from %s", export.name, sim_lib.name)
                            self.hook_symbol(export.rebased_addr, sim_lib.get_stub(export.name, sim_proc_arch))
                    else:
                        l.info("Using builtin SimProcedure for unresolved %s from %s", export.name, sim_lib.name)
                        self.hook_symbol(export.rebased_addr, sim_lib.get(export.name, sim_proc_arch))
                    break
            else:
                if not func.is_weak:
                    l.info("Using stub SimProcedure for unresolved %s", export.name)
                    the_lib = missing_libs[0]
                    if export.name and export.name.startswith("_Z"):
                        # GNU C++ name. Use a C++ library to create the stub
                        if 'libstdc++.so' in SIM_LIBRARIES:
                            the_lib = SIM_LIBRARIES['libstdc++.so']
                        else:
                            l.critical("Does not find any C++ library in SIM_LIBRARIES. We may not correctly "
                                       "create the stub or resolve the function prototype for name %s.", export.name)
 
                    self.hook_symbol(export.rebased_addr, the_lib.get(export.name, sim_proc_arch))
 
        # Step 2.5: If 2.4 didn't work (we have NO SimLibraries to work with), just
        # use the vanilla ReturnUnconstrained, assuming that this isn't a weak func
        elif not func.is_weak:
            l.info("Using stub SimProcedure for unresolved %s", export.name)
            self.hook_symbol(export.rebased_addr, SIM_PROCEDURES['stubs']['ReturnUnconstrained'](display_name=export.name, is_stub=True))
def _register_object(self, obj, sim_proc_arch):
    """
    This scans through an objects imports and hooks them with simprocedures from our library whenever possible
    扫描一个对象的导入并尽可能地使用 simprocedures hook他们
    """
 
    # Step 1: get the set of libraries we are allowed to use to resolve unresolved symbols 获取可以用来解析未解析符号的库集,即获取angr已经实现符号摘要的库函数
    missing_libs = []
    for lib_name in self.loader.missing_dependencies:
        try:
            missing_libs.append(SIM_LIBRARIES[lib_name])
        except KeyError:
            l.info("There are no simprocedures for missing library %s :(", lib_name)
    # additionally provide libraries we _have_ loaded as a fallback fallback
    # this helps in the case that e.g. CLE picked up a linux arm libc to satisfy an android arm binary
    for lib in self.loader.all_objects:
        if lib.provides in SIM_LIBRARIES:
            simlib = SIM_LIBRARIES[lib.provides]
            if simlib not in missing_libs:
                missing_libs.append(simlib)
 
    # Step 2: Categorize every "import" symbol in each object. 给每个object中的重要符号 分类,即分析程序中的导入函数
    # If it's IGNORED, mark it for stubbing 如果某个符号是忽略函数列表中的某个,标记为stubbing,不替换
    # If it's blacklisted, don't process it 如果某个符号处在黑名单,不处理
    # If it matches a simprocedure we have, replace it 如果某个符号匹配某个simprocedure,替换
    for reloc in obj.imports.values():
        # Step 2.1: Quick filter on symbols we really don't care about  快速过滤掉不关心的符号
        func = reloc.symbol
        if func is None: # None
            continue
        if not func.is_function and func.type != cle.backends.symbol.SymbolType.TYPE_NONE: # 符号不是函数且其类型不等于SymbolType.TYPE_NONE
            continue
        if func.resolvedby is None:
            # I don't understand the binary which made me add this case. If you are debugging and see this comment,
            # good luck.
            # ref: https://github.com/angr/angr/issues/1782
            # (I also don't know why the TYPE_NONE check in the previous clause is there but I can't find a ref for
            # that. they are probably related.)
            continue
        if not reloc.resolved: # 如果没有解析,就猜测simprocedure
            # This is a hack, effectively to support Binary Ninja, which doesn't provide access to dependency
            # library names. The backend creates the Relocation objects, but leaves them unresolved so that
            # we can try to guess them here. Once the Binary Ninja API starts supplying the dependencies,
            # The if/else, along with Project._guess_simprocedure() can be removed if it has no other utility,
            # just leave behind the 'unresolved' debug statement from the else clause.
 
            # Binary Ninja 提供了一个可供操作二进制文件的平台,甚至还可以在平台的基础上基于API来编写更方便的脚本和插件
            if reloc.owner.guess_simprocs:
                l.debug("Looking for matching SimProcedure for unresolved %s from %s with hint %s",
                        func.name, reloc.owner, reloc.owner.guess_simprocs_hint)
                self._guess_simprocedure(func, reloc.owner.guess_simprocs_hint)
            else:
                l.debug("Ignoring unresolved import '%s' from %s ...?", func.name, reloc.owner)
            continue
        export = reloc.resolvedby
        if self.is_hooked(export.rebased_addr): # 判断该函数是否已经被hook,如果已经被hook就不进行下面的操作,换下一个函数
            l.debug("Already hooked %s (%s)", export.name, export.owner)
            continue
 
        # Step 2.2: If this function has been resolved by a static dependency,
        # check if we actually can and want to replace it with a SimProcedure.
        # We opt out of this step if it is blacklisted by ignore_functions, which
        # will cause it to be replaced by ReturnUnconstrained later.
        # 如果此函数已经由静态依赖项解析,检查是否真的可以并想用SimProcedure替换它,如果
        if export.owner is not self.loader._extern_object and \
                export.name not in self._ignore_functions:
            if self._check_user_blacklists(export.name): # 如果该函数在黑名单中,结束操作
                continue
            owner_name = export.owner.provides
            if isinstance(self.loader.main_object, cle.backends.pe.PE): # 如果是PE文件,owner_name变小写
                owner_name = owner_name.lower()
            if owner_name not in SIM_LIBRARIES:
                continue
            sim_lib = SIM_LIBRARIES[owner_name]
            if not sim_lib.has_implementation(export.name):
                continue
            l.info("Using builtin SimProcedure for %s from %s", export.name, sim_lib.name)
            self.hook_symbol(export.rebased_addr, sim_lib.get(export.name, sim_proc_arch))
 
        # Step 2.3: If 2.2 didn't work, check if the symbol wants to be resolved
        # by a library we already know something about. Resolve it appropriately.
        # Note that _check_user_blacklists also includes _ignore_functions.
        # An important consideration is that even if we're stubbing a function out,
        # we still want to try as hard as we can to figure out where it comes from
        # so we can get the calling convention as close to right as possible.
        elif reloc.resolvewith is not None and reloc.resolvewith in SIM_LIBRARIES:
            sim_lib = SIM_LIBRARIES[reloc.resolvewith]
            if self._check_user_blacklists(export.name):
                if not func.is_weak:
                    l.info("Using stub SimProcedure for unresolved %s from %s", func.name, sim_lib.name)
                    self.hook_symbol(export.rebased_addr, sim_lib.get_stub(export.name, sim_proc_arch))
            else:
                l.info("Using builtin SimProcedure for unresolved %s from %s", export.name, sim_lib.name)
                self.hook_symbol(export.rebased_addr, sim_lib.get(export.name, sim_proc_arch))
 
        # Step 2.4: If 2.3 didn't work (the symbol didn't request a provider we know of), try
        # looking through each of the SimLibraries we're using to resolve unresolved
        # functions. If any of them know anything specifically about this function,
        # resolve it with that. As a final fallback, just ask any old SimLibrary
        # to resolve it.
        elif missing_libs:
            for sim_lib in missing_libs:
                if sim_lib.has_metadata(export.name):
                    if self._check_user_blacklists(export.name):
                        if not func.is_weak:
                            l.info("Using stub SimProcedure for unresolved %s from %s", export.name, sim_lib.name)
                            self.hook_symbol(export.rebased_addr, sim_lib.get_stub(export.name, sim_proc_arch))
                    else:
                        l.info("Using builtin SimProcedure for unresolved %s from %s", export.name, sim_lib.name)
                        self.hook_symbol(export.rebased_addr, sim_lib.get(export.name, sim_proc_arch))
                    break
            else:
                if not func.is_weak:
                    l.info("Using stub SimProcedure for unresolved %s", export.name)
                    the_lib = missing_libs[0]
                    if export.name and export.name.startswith("_Z"):
                        # GNU C++ name. Use a C++ library to create the stub
                        if 'libstdc++.so' in SIM_LIBRARIES:
                            the_lib = SIM_LIBRARIES['libstdc++.so']
                        else:
                            l.critical("Does not find any C++ library in SIM_LIBRARIES. We may not correctly "
                                       "create the stub or resolve the function prototype for name %s.", export.name)
 
                    self.hook_symbol(export.rebased_addr, the_lib.get(export.name, sim_proc_arch))
 
        # Step 2.5: If 2.4 didn't work (we have NO SimLibraries to work with), just
        # use the vanilla ReturnUnconstrained, assuming that this isn't a weak func
        elif not func.is_weak:
            l.info("Using stub SimProcedure for unresolved %s", export.name)
            self.hook_symbol(export.rebased_addr, SIM_PROCEDURES['stubs']['ReturnUnconstrained'](display_name=export.name, is_stub=True))
# Step 7: Run OS-specific configuration 执行 OS 特定的配置,函数原型在 ./simos/simos.py
self.simos.configure_project()
# Step 7: Run OS-specific configuration 执行 OS 特定的配置,函数原型在 ./simos/simos.py
self.simos.configure_project()
def hook(self, addr, hook=None, length=0, kwargs=None, replace=False):
    """
    Hook a section of code with a custom function. This is used internally to provide symbolic
    summaries of library functions, and can be used to instrument execution or to modify
    control flow.
    使用自定义函数挂钩一段代码。 这在内部用于提供库函数的符号摘要,并可用于检测执行或修改控制流。
 
    When hook is not specified, it returns a function decorator that allows easy hooking.
    如果没有指定hook参数,则假设函数作为装饰器使用
    Usage::
 
        # Assuming proj is an instance of angr.Project, we will add a custom hook at the entry
        # point of the project.
        @proj.hook(proj.entry)
        def my_hook(state):
            print("Welcome to execution!")
 
    :param addr:        The address to hook. 要hook的地址
    :param hook:        A :class:`angr.project.Hook` describing a procedure to run at the   
                        given address. You may also pass in a SimProcedure class or a function
                        directly and it will be wrapped in a Hook object for you.
                        Hook类描述了在给定地址上运行SimProcedure,也可以直接传递SimProcedure类或者函数,将包装在Hook对象中
 
    :param length:      If you provide a function for the hook, this is the number of bytes 
                        that will be skipped by executing the hook by default.
                        如果为hook提供替换函数,则默认情况下执行hook代码时将跳过的字节数。比如hook了0x08048485处的指令(xor eax, eax),该指令长度为2,那么length设置为2,执行完hook函数之后,将不会再执行该指令
 
    :param kwargs:      If you provide a SimProcedure for the hook, these are the keyword 
                        arguments that will be passed to the procedure's `run` method
                        eventually.
                        如果为hook提供SimProcedure,这些关键字参数最终将被传递给procedure的run方法
 
    :param replace:     Control the behavior on finding that the address is already hooked. If 
                        true, silently replace the hook. If false (default), warn and do not
                        replace the hook. If none, warn and replace the hook.
                        如果发现地址已经被hook,控制函数的行为。如果为真,则不提示信息直接替换hook。如果为false(默认),则发出警告且不替换hook。如果为None,警告并更换hook。
 
    """
    if hook is None:
        # if we haven't been passed a thing to hook with, assume we're being used as a decorator
        # 如果没有传递一个需要被hook的东西,则假设该函数将被用作装饰器
        return self._hook_decorator(addr, length=length, kwargs=kwargs)
 
    if kwargs is None: kwargs = {}
 
    l.debug('hooking %s with %s', self._addr_to_str(addr), str(hook))
 
    if self.is_hooked(addr): # 如果已经被hook
        if replace is True: # 且如果replace为True,pass
            pass
        elif replace is False: # 如果replace为False,发出警告,不重新hook
            l.warning("Address is already hooked, during hook(%s, %s). Not re-hooking.", self._addr_to_str(addr), hook)
            return
        else# 如果replace为None,发出警告,但重新hook
            l.warning("Address is already hooked, during hook(%s, %s). Re-hooking.", self._addr_to_str(addr), hook)
 
    if isinstance(hook, type): # 通过判断hook变量是否是type类型,来判断hook是否实例化为Simprocedure
        raise TypeError("Please instanciate your SimProcedure before hooking with it")
 
    if callable(hook): # 检查对象hook是否是可调用的,如果返回true,hook对象可能调用失败;但如果返回false,hook对象绝对不会被调用成功
        hook = SIM_PROCEDURES['stubs']['UserHook'](user_func=hook, length=length, **kwargs)
 
    self._sim_procedures[addr] = hook # 被 hook 的地址及实例 hook 被放入字典 self._sim_procedures
def hook(self, addr, hook=None, length=0, kwargs=None, replace=False):
    """
    Hook a section of code with a custom function. This is used internally to provide symbolic
    summaries of library functions, and can be used to instrument execution or to modify
    control flow.
    使用自定义函数挂钩一段代码。 这在内部用于提供库函数的符号摘要,并可用于检测执行或修改控制流。
 
    When hook is not specified, it returns a function decorator that allows easy hooking.
    如果没有指定hook参数,则假设函数作为装饰器使用
    Usage::
 
        # Assuming proj is an instance of angr.Project, we will add a custom hook at the entry
        # point of the project.
        @proj.hook(proj.entry)
        def my_hook(state):
            print("Welcome to execution!")
 
    :param addr:        The address to hook. 要hook的地址
    :param hook:        A :class:`angr.project.Hook` describing a procedure to run at the   
                        given address. You may also pass in a SimProcedure class or a function
                        directly and it will be wrapped in a Hook object for you.

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

最后于 2022-1-27 21:36 被ztree编辑 ,原因:
收藏
免费 4
支持
分享
最新回复 (1)
雪    币:
能力值: ( LV1,RANK:0 )
在线值:
发帖
回帖
粉丝
2
看完了吗hh
2021-11-29 21:00
0
游客
登录 | 注册 方可回帖
返回
//