`
yaojingguo
  • 浏览: 208020 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Sections in ELF

 
阅读更多

The following little code shows the effects of .rodata, .data and .bss sections.

 

#include <stdio.h>

// y_readonly is in data seciton. "123" is in rodata section.
// y_readonly is a poniter variable. And compiler sets the value of y_readonly 
// to the address "123".
char *y_readonly = "123"; 

// "abc" is in data section. j_data is the address of "abc" not a pointer 
// variable.
char j_data[] = "abc"; 

// bss section
char bss_data[3000]; 

int main(int argc, const char *argv[]) {
	// Trigger segement fault
	// y_readonly[0] = 'X'; 

	return 0;
}
 
分享到:
评论

相关推荐

    C#的elf文件解析库

    nupkg格式的C#库文件,专门用来解析elf类文件的,使用的时候先加载安装这个库,怎么安装自行百度C# nupkg, 然后using包含ELFSharp.ELF.XXX的...foreach(var header in elf.Sections) { Console.WriteLine(header); }

    ELF解析Java版.zip

    4. **数据节区(Sections)**:实际的二进制数据存储在这些节区中,包括函数体、全局变量、字符串常量、符号信息等。 “jelf-master”项目通过Java实现了对以上各部分的解析。以下是该项目可能包含的关键知识点: ...

    ELF for the ARM architecture

    6. **符号预取**:符号预取(Symbol Pre-emption in DLLs)是指在动态链接库中处理符号覆盖的方法,这对于解决多个库中相同符号的冲突问题非常重要。 #### 三、ELF文件格式的关键组件 1. **文件头(File Header)*...

    elf可执行文件格式说明

    2. **节区(Sections)** 节区是ELF文件的逻辑结构,用于组织代码、数据、符号表等信息。常见的节区有.text(代码)、.data(已初始化的数据)、.bss(未初始化的数据)和.symtab(符号表)。每个节区都有自己的...

    elf.rar_The Image

    ELF 文件包含了程序运行所需的指令、数据和元数据,如段(segments)和节(sections)等。 描述中提到的 "These constants are for the segment types stored in the image headers" 提醒我们,这里关注的是ELF文件...

    EXECUTABLE AND LINKABLE FORMAT

    Object files in ELF format serve as the fundamental building blocks for executable programs and libraries. They can be linked together to form executable files and shared libraries, allowing for ...

    ft_nm:该项目是关于重新编码二进制OS X和Linux ELF的命令nm

    例如,《Understanding ELF》、《Modern C: The C11 and C17 Standards Explained in Detail》和《The Art of Computer Programming》等。 总之,`ft_nm`项目是一个挑战性的任务,涉及到对二进制文件格式的理解,...

    Linker+Script+in+Linux

    - **创建自定义段**:链接脚本可以创建不属于标准ELF文件格式的新段。 - **优化布局**:通过调整段的顺序和位置来提高性能或减小程序大小。 链接脚本有自己的语法,其中常见的指令包括: - `SECTIONS`:定义各个段...

    UPX3.5附带源码

    UPX3.5附带源码. his documentation is written for those ...compiling the assembly into an ELF object file which a little C++ module (src/linker.cpp) can interpret and work with. 温馨提示:该资源已过时.

    一个win32下的ARM开源编译器

    the ARM ADS, so you will need to re-write those sections of existing code Original ARM Syntax | fasmarm Syntax ----------------------+---------------------- cpsie a | cpsie iflags_a | ...

    ARM® Compiler v5.06 for µVision® armasm User Guide

    3.3 ELF sections and the AREA directive 3.4 An example ARM assembly language module 4 Writing ARM Assembly Language 4.1 About the Unified Assembler Language 4.2 Register usage in subroutine calls 4.3 ...

    EurekaLog_7.5.0.0_Enterprise

    1)....Fixed: Added workaround for codegen bug in Delphi 7 (possibly - other), bug manifests itself as wrong date-time in reports or integer overflows 2)....Fixed: Some MAPI DLLs may not be loaded ...

    LSB-Core-AMD64

    - 可执行文件和链接格式(Executable and Linking Format, ELF),介绍了ELF的标准格式,包括文件头(ELF Header)、节(Sections)、符号表(Symbol Table)、重定位(Relocation)等。 - 程序加载和动态链接...

    EmbedProgUseGNU

    SECTIONS { .text: { *(.text); etext=.; } &gt;FLASH .data: { sdata=.; *(.data); edata=.; } &gt;SRAM AT&gt;FLASH } ``` 该链接脚本定义了两个内存区域:`FLASH`和`SRAM`。`FLASH`用于存放代码,而`SRAM`则用于存放初始化...

    armlink.pdf

    调试数据段(Debug Data)包含了用于支持程序调试的信息,例如调试输入节(debug input sections)以及符号和字符串表。在程序开发过程中,开发者利用这些信息可以更有效地跟踪和修复程序中的错误。调试数据段的具体...

    Realview MDK快速入门

    *(InRoot$$Sections) .ANY(+RO) } RW_RAM1 0x30800000 0x0800000 { .ANY(+RW +ZI) } RW_IRAM1 0x40000000 0x00001000 { .ANY(+RW +ZI) } } ``` - **解读**: - `LR_ROM1`: 定义加载区域为ROM1,地址0x...

    LINUX标准基础核心规范4.1

    这部分介绍了Linux系统中的对象文件格式、各种段(sections)、特别段、符号映射、DWARF扩展、异常帧等,确保开发者对Linux系统中的可执行文件和库有深入理解。 通过遵循LSB核心规范,软件开发者可以创建在LSB兼容...

    uboott移植实验手册及技术文档

    实验三 移植U-Boot-1.3.1 实验 【实验目的】 了解 U-Boot-1.3.1 的代码结构,掌握其移植方法。 【实验环境】 1、Ubuntu 7.0.4发行版 2、u-boot-1.3.1 3、FS2410平台 4、交叉编译器 arm-softfloat-linux-gnu-...

Global site tag (gtag.js) - Google Analytics