在linux程序里面,知道一个函数地址,改函数是属于某个动态库的,怎么样得到这个动态库的全【转】

简介: 转自:http://www.360doc.com/content/17/1012/11/48326749_694292472.shtml 另外dl_iterate_phdr可以查到当前进程所装在的所有符号,每查到一个就会调用你指定的回调函数。

转自:http://www.360doc.com/content/17/1012/11/48326749_694292472.shtml

另外dl_iterate_phdr可以查到当前进程所装在的所有符号,每查到一个就会调用你指定的回调函数。

下面的代码示例如何使用dl_iterate_phdr和dladdr

#define _GNU_SOURCE
#include <link.h>
#include <stdlib.h>
#include <stdio.h>

static int
callback (struct dl_phdr_info *info, size_t size, void *data)
{
  int j;

  printf ("name=%s (%d segments)\n", info->dlpi_name, info->dlpi_phnum);

  for (j = 0; j < info->dlpi_phnum; j++) {
    void* addr = (void *) (info->dlpi_addr + info->dlpi_phdr[j].p_vaddr);
    printf ("\t\t header %2d: address=%10p", j, addr);
    Dl_info dlinfo;
    dladdr(addr, &dlinfo);
    printf("\t %s : %s\n", dlinfo.dli_fname, dlinfo.dli_sname);
  }
  return 0;
}

int
main (int argc, char *argv[])
{
  dl_iterate_phdr (callback, NULL);

  exit (EXIT_SUCCESS);
}


编译方式:
gcc -o test test.c -ldl

你需要复制一个so文件到当前目录,名字为libtest.so,程序的输出大概是这个样子的:
......
......
name=/lib/libdl.so.2 (9 segments)
                 header  0: address=0x40039034   /lib/libdl.so.2 : _dl_rtld_di_serinfo
                 header  1: address=0x4003a9ae   /lib/libdl.so.2 : (null)
                 header  2: address=0x40039000   /lib/libdl.so.2 : __pthread_once
                 header  3: address=0x4003bed4   /lib/libdl.so.2 : (null)
                 header  4: address=0x4003beec   /lib/libdl.so.2 : (null)
                 header  5: address=0x40039154   /lib/libdl.so.2 : _dl_rtld_di_serinfo
                 header  6: address=0x40039174   /lib/libdl.so.2 : _rtld_global
                 header  7: address=0x40039000   /lib/libdl.so.2 : __pthread_once
                 header  8: address=0x4003bed4   /lib/libdl.so.2 : (null)
name=/lib/tls/libc.so.6 (11 segments)
                 header  0: address=0x4003d034   /lib/tls/libc.so.6 : _rtld_global
                 header  1: address=0x4014a540   /lib/tls/libc.so.6 : (null)
                 header  2: address=0x4003d000   /lib/tls/libc.so.6 : GCC_3.0
                 header  3: address=0x401505ec   /lib/tls/libc.so.6 : (null)
                 header  4: address=0x40151d3c   /lib/tls/libc.so.6 : (null)
                 header  5: address=0x4003d194   /lib/tls/libc.so.6 : _rtld_global
                 header  6: address=0x4003d1b4   /lib/tls/libc.so.6 : _rtld_global
                 header  7: address=0x401505ec   /lib/tls/libc.so.6 : (null)
                 header  8: address=0x4014a554   /lib/tls/libc.so.6 : (null)
                 header  9: address=0x4003d000   /lib/tls/libc.so.6 : GCC_3.0
                 header 10: address=0x401505f4   /lib/tls/libc.so.6 : (null)
name=/lib/ld-linux.so.2 (6 segments)
                 header  0: address=0x40000000   /lib/ld-linux.so.2 : GLIBC_2.1
                 header  1: address=0x40016cc0   /lib/ld-linux.so.2 : _rtld_global_ro
                 header  2: address=0x40016f34   /lib/ld-linux.so.2 : (null)
                 header  3: address=0x40015abc   /lib/ld-linux.so.2 : (null)
                 header  4: address=0x40000000   /lib/ld-linux.so.2 : GLIBC_2.1
                 header  5: address=0x40016cc0   /lib/ld-linux.so.2 : _rtld_global_ro

【作者】 张昺华
【新浪微博】 张昺华--sky
【twitter】 @sky2030_
【facebook】 张昺华 zhangbinghua
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
目录
相关文章
|
2月前
|
Linux Shell
Linux系统编程:掌握popen函数的使用
记得在使用完 `popen`打开的流后,总是使用 `pclose`来正确关闭它,并回收资源。这种做法符合良好的编程习惯,有助于保持程序的健壮性和稳定性。
89 6
|
2月前
|
Linux Shell
Linux系统编程:掌握popen函数的使用
记得在使用完 `popen`打开的流后,总是使用 `pclose`来正确关闭它,并回收资源。这种做法符合良好的编程习惯,有助于保持程序的健壮性和稳定性。
132 3
|
2月前
|
Linux
在Linux内核中根据函数指针输出函数名称
在Linux内核中根据函数指针输出函数名称
|
3月前
|
Linux PHP
Linux CentOS 宝塔 Suhosin禁用php5.6版本eval函数详细图文教程
【8月更文挑战第27天】本文介绍两种禁用PHP执行的方法:使用`PHP_diseval_extension`禁用和通过`suhosin`禁用。由于`suhosin`不支持PHP8,仅适用于PHP7及以下版本,若服务器安装了PHP5.6,则需对应安装`suhosin-0.9.38`版本。文章提供了详细的安装步骤,并强调了宝塔环境下与普通环境下的PHP路径差异。安装完成后,在`php.ini`中添加`suhosin.so`扩展并设置`executor.disable_eval = on`以禁用执行功能。最后通过测试代码验证是否成功禁用,并重启`php-fpm`服务生效。
43 2
|
3月前
|
Shell Linux C语言
Linux0.11 execve函数(六)
Linux0.11 execve函数(六)
61 1
|
3月前
|
Linux API
Linux源码阅读笔记07-进程管理4大常用API函数
Linux源码阅读笔记07-进程管理4大常用API函数
|
3月前
|
安全 Unix Linux
Linux Clone函数
Linux Clone函数
56 3
|
3月前
|
Linux
Linux0.11 文件打开open函数(五)
Linux0.11 文件打开open函数(五)
45 0
|
3月前
|
存储 Linux 调度
Linux 0.11 fork 函数(二)
Linux 0.11 fork 函数(二)
35 0
|
3月前
|
Shell Linux 程序员
在Linux中, 什么是shell函数?如何使用它们?
在Linux中, 什么是shell函数?如何使用它们?