gpt4 book ai didi

找不到部分 .dtors

转载 作者:行者123 更新时间:2023-12-02 01:06:21 25 4
gpt4 key购买 nike

我正在学习一些关于格式化字符串错误利用的教程,在某些时候他们谈到覆盖 dtors 表。但这是我在使用 nm 时发现的:

080495a8 d _DYNAMIC
0804969c d _GLOBAL_OFFSET_TABLE_
080484cc R _IO_stdin_used
w _ITM_deregisterTMCloneTable
w _ITM_registerTMCloneTable
w _Jv_RegisterClasses
08048594 r __FRAME_END__
080495a4 d __JCR_END__
080495a4 d __JCR_LIST__
080496bc D __TMC_END__
080496bc A __bss_start
080496b4 D __data_start
080483c0 t __do_global_dtors_aux (*)
0804959c t __do_global_dtors_aux_fini_array_entry (*)
080496b8 D __dso_handle
08049598 t __frame_dummy_init_array_entry
w __gmon_start__
080484aa T __i686.get_pc_thunk.bx
0804959c t __init_array_end
08049598 t __init_array_start
08048440 T __libc_csu_fini
08048450 T __libc_csu_init
U __libc_start_main@@GLIBC_2.0
080496bc A _edata
080496c0 A _end
080484b0 T _fini
080484c8 R _fp_hw
080482b8 T _init
08048320 T _start
08048428 t clean
080496bc b completed.5730
080496b4 W data_start
08048350 t deregister_tm_clones
080483e0 t frame_dummy
0804840c T main
U puts@@GLIBC_2.0
08048380 t register_tm_clones

而不是像这样:

080494ac d __CTOR_END__
080494a8 d __CTOR_LIST__
080494b8 d __DTOR_END__
080494b0 d __DTOR_LIST__

我不知道这两行带有星号 (*)。这些行的含义是什么?为什么不再有 CTOR_END、DTOR_END 等……?最后,为什么当我 objdump 我的可执行文件时找不到 .dtors 部分?

可执行代码是:

#include <stdio.h>

static void clean(void) __attribute__ ((destructor));

int main() {

printf("Function main\n");

return 0;

}
void clean(void)
{

printf("call to destructor\n");

}

最佳答案

在支持它的系统上,使用另一种机制将析构函数放入 .fini_array 部分。表示开始和结束的符号分别是__fini_array_start__fini_array_end,但它们被标记为隐藏。您可以查看节标题以找到析构函数表:

$ objdump -h -j .fini_array a.out

a.out: file format elf32-i386

Sections:
Idx Name Size VMA LMA File off Algn
19 .fini_array 00000008 0804959c 0804959c 0000059c 2**2
CONTENTS, ALLOC, LOAD, DATA

__do_global_dtors_aux_fini_array_entry 是此 .fini_array 部分中的一个条目,它指向 __do_global_dtors_aux,它执行一些 libc 清理。此函数还在未使用 .fini_array 机制的系统上运行析构函数。

TL;DR:该表位于 .fini_array 部分,您可以随意使用它。

关于找不到部分 .dtors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22147996/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com