<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<meta name="description" content="readelf:用于显示elf格式文件的信息 - 最专业的Linux命令大全,内容包含Linux命令手册、详解、学习,值得收藏的Linux命令速查手册。">
<meta name="keywords" content="Linux,Command,命令大全,Linux命令手册,readelf,用于显示elf格式文件的信息">
<title>readelf 命令,Linux readelf 命令详解:用于显示elf格式文件的信息 - Linux 命令搜索引擎</title>
<link rel="shortcut icon" href="../img/favicon.ico">
<link rel="stylesheet" type="text/css" href="../css/index.css?v=1628823324995">
</head>
<body>
<div class="header header_list">
<div class="search">
<ul class="search-list" id="result">
<!-- <li><a href="#"><strong>find</strong> - 指定目录下查找文件。</a></li> -->
</ul>
<input type="text" class="query" id="query" autocomplete="off" autofocus="autofocus" placeholder="Linux 命令搜索"/>
<div class="enter-input">
<input type="hidden" id="current_path" value="/c/readelf.html">
<button id="search_btn">搜索</button>
</div>
</div>
</div>
<div class="markdown-body">
<span class="edit_btn">
<span class="split"></span>
</span>
<h1 id="readelf"><a href="#readelf" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>readelf</h1>
<p>用于显示elf格式文件的信息</p>
<h2 id="补充说明"><a href="#%E8%A1%A5%E5%85%85%E8%AF%B4%E6%98%8E" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>补充说明</h2>
<p><strong>readelf命令</strong> 用来显示一个或者多个elf格式的目标文件的信息,可以通过它的选项来控制显示哪些信息。这里的elf-file(s)就表示那些被检查的文件。可以支持32位,64位的elf格式文件,也支持包含elf文件的文档(这里一般指的是使用ar命令将一些elf文件打包之后生成的例如lib*.a之类的“静态库”文件)。 </p>
<p>这个程序和objdump提供的功能类似,但是它显示的信息更为具体,并且它不依赖BFD库(BFD库是一个GNU项目,它的目标就是希望通过一种统一的接口来处理不同的目标文件),所以即使BFD库有什么bug存在的话也不会影响到readelf程序。 </p>
<p>运行readelf的时候,除了-v和-H之外,其它的选项必须有一个被指定。 </p>
<h3 id="elf文件类型"><a href="#elf%E6%96%87%E4%BB%B6%E7%B1%BB%E5%9E%8B" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>ELF文件类型</h3>
<p><strong>种类型的ELF文件:</strong></p>
<ol>
<li>可重定位文件:用户和其他目标文件一起创建可执行文件或者共享目标文件,例如lib*.a文件。 </li>
<li>可执行文件:用于生成进程映像,载入内存执行,例如编译好的可执行文件a.out。 </li>
<li>共享目标文件:用于和其他共享目标文件或者可重定位文件一起生成elf目标文件或者和执行文件一起创建进程映像,例如lib*.so文件。 </li>
</ol>
<p><strong>ELF文件作用:</strong></p>
<p>ELF文件参与程序的连接(建立一个程序)和程序的执行(运行一个程序),所以可以从不同的角度来看待elf格式的文件: </p>
<ol>
<li>如果用于编译和链接(可重定位文件),则编译器和链接器将把elf文件看作是节头表描述的节的集合,程序头表可选。 </li>
<li>如果用于加载执行(可执行文件),则加载器则将把elf文件看作是程序头表描述的段的集合,一个段可能包含多个节,节头表可选。 </li>
<li>如果是共享文件,则两者都含有。 </li>
</ol>
<p><strong>ELF文件总体组成:</strong> </p>
<p>elf文件头描述elf文件的总体信息。包括:系统相关,类型相关,加载相关,链接相关。 </p>
<ul>
<li>系统相关表示:elf文件标识的魔术数,以及硬件和平台等相关信息,增加了elf文件的移植性,使交叉编译成为可能。 </li>
<li>类型相关就是前面说的那个类型。 </li>
<li>加载相关:包括程序头表相关信息。 </li>
<li>链接相关:节头表相关信息。 </li>
</ul>
<h3 id="选项"><a href="#%E9%80%89%E9%A1%B9" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>选项</h3>
<pre class="language-shell"><code class="language-shell">-a
--all 显示全部信息,等价于 -h -l -S -s -r -d -V -A -I.
-h
--file-header 显示elf文件开始的文件头信息.
-l
--program-headers
--segments 显示程序头(段头)信息<span class="token punctuation">(</span>如果有的话<span class="token punctuation">)</span>。
-S
--section-headers
--sections 显示节头信息<span class="token punctuation">(</span>如果有的话<span class="token punctuation">)</span>。
-g
--section-groups 显示节组信息<span class="token punctuation">(</span>如果有的话<span class="token punctuation">)</span>。
-t
--section-details 显示节的详细信息<span class="token punctuation">(</span>-S的<span class="token punctuation">)</span>。
-s
--syms
--symbols 显示符号表段中的项(如果有的话)。
-e
--headers 显示全部头信息,等价于: -h -l -S
-n
--notes 显示note段(内核注释)的信息。
-r
--relocs 显示可重定位段的信息。
-u
--unwind 显示unwind段信息。当前只支持IA64 ELF的unwind段信息。
-d
--dynamic 显示动态段的信息。
-V
--version-info 显示版本段的信息。
-A
--arch-specific 显示CPU构架信息。
-D
--use-dynamic 使用动态段中的符号表显示符号,而不是使用符号段。
-x <span class="token operator"><</span>number or name<span class="token operator">></span>
--hex-dump<span class="token operator">=</span><span class="token operator"><</span>number or name<span class="token operator">></span> 以16进制方式显示指定段内内容。number指定段表中段的索引,或字符串指定文件中的段名。
-w<span class="token punctuation">[</span>liaprmfFsoR<span class="token punctuation">]</span> or
--debug-dump<span class="token punctuation">[</span><span class="token operator">=</span>line,<span class="token operator">=</span>info,<span class="token operator">=</span>abbrev,<span class="token operator">=</span>pubnames,<span class="token operator">=</span>aranges,<span class="token operator">=</span>macro,<span class="token operator">=</span>frames,<span class="token operator">=</span>frames-interp,<span class="token operator">=</span>str,<span class="token operator">=</span>loc,<span class="token operator">=</span>Ranges<span class="token punctuation">]</span> 显示调试段中指定的内容。
-I
--histogram 显示符号的时候,显示bucket list长度的柱状图。
-v
--version 显示readelf的版本信息。
-H
--help 显示readelf所支持的命令行选项。
-W
--wide 宽行输出。
@file 可以将选项集中到一个文件中,然后使用这个@file选项载入。
</code></pre>
<h3 id="实例"><a href="#%E5%AE%9E%E4%BE%8B" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>实例</h3>
<p>先给出如下例子:</p>
<p><strong>1.对于可执行文件形式的elf格式文件:</strong></p>
<p>1)查看可执行程序的源代码如下: </p>
<pre class="language-shell"><code class="language-shell">root@localhost <span class="token punctuation">[</span>test<span class="token punctuation">]</span>$ <span class="token function">cat</span> main.cpp
<span class="token comment">#include <iostream> </span>
using std::cout<span class="token punctuation">;</span