Chinaunix首页 | 论坛 | 博客
  • 博客访问: 192514
  • 博文数量: 73
  • 博客积分: 5000
  • 博客等级: 大校
  • 技术积分: 1160
  • 用 户 组: 普通用户
  • 注册时间: 2009-04-23 15:53
文章分类

全部博文(73)

文章存档

2011年(1)

2009年(72)

我的朋友

分类: LINUX

2009-04-23 17:01:24

simtiger

ELF格式文件中segmentsection到底有什么区别?

 


看见几篇介绍elf格式的文章,有点不懂:
1)
ELF
格式文件中segmentsection到底有什么区别?(我知道重定位文件不需要segment,那么到底sectoinsegment有什么区别,一般的文件好像只需要其中一种?)
2)
注意到ELF的代码段(.text),数据段(.data)都是放在各个section中的,如果一个executableelf文件没有section header table(也就是没有section),那么这个文件是否就没有代码段与数据段??

概念有点糊涂,请教各位朋友~!

 

2004-9-2 09:21yichun

ELF格式文件中segmentsection到底有什么区别?

ELF
中的section主要提供给Linker用的, segment提供给Loader. Linker需要关心.text, .rel.text, .data, .rodata等等, 一个重点是link时要做relocation. Loader 只需要知道 Read/Write/Execute. a.out格式没有这种区分, 我想ELF这么做提供了更多的灵活性

 

2004-9-2 10:52simtiger

ELF格式文件中segmentsection到底有什么区别?

[quote] [i]
原帖由 "yichun"]ELF中的section主要提供给Linker用的, segment提供给Loader. Linker需要关心.text, .rel.text, .data, .rodata等等, 一个重点是link时要做relocation. Loader 只需要知道 Read/Write/Execute. a.out格式没有?.........[/quote 发表:[/i]


非常感谢您的回答

那么我再问问,如果一个文件没有section(比如是executable文件),那么该文件就没有代码段与数据段的区分,对吗?

 

2004-9-2 11:09yichun

ELF格式文件中segmentsection到底有什么区别?

如果你指的是"文件中"代码段与数据段的区分, 那确实没有,Loader仍可以从segmentRead/Write/Execute的设置来区分指令和数据

 

2004-9-2 13:30simtiger

ELF格式文件中segmentsection到底有什么区别?

[quote][i]
原帖由 "yichun"]如果你指的是"文件中"代码段与数据段的区分, 那确实没有,Loader仍可以从segmentRead/Write/Execute的设置来区分指令和数据[/quote 发表:[/i]


再次感谢您的回答。

文档上说了executableelf文件必须有segment,而section可有可无,那么执行时,指令代码既可能放在.text section中,也可能放在Execute segment中,那么执行时到底是执行哪一部分代码?

再次请教!

 

2004-9-2 13:52yichun

ELF格式文件中segmentsection到底有什么区别?

可以是同一份代码, ELF文件中间部分是共用的, Shared objects就可以同时拥有Program header tableSection Header Table, 这样load完后还可以relocate.

 

2004-9-2 16:48simtiger

ELF格式文件中segmentsection到底有什么区别?

[quote] [i]
原帖由 "yichun"]可以是同一份代码, ELF文件中间部分是共用的, Shared objects就可以同时拥有Program header tableSection Header Table, 这样load完后还可以relocate.[/quote 发表:[/i]


"
可以是同一份代码"是指两部分(section&segment)包含重复的代码,还是section header tableprogram header table中将对应section/segment的位置(offset)置为相同(也就是共享同一段代码)?

谢谢!

 

2004-9-2 17:16yichun

ELF格式文件中segmentsection到底有什么区别?

offset
相同(也就是共享同一段代码)

 

2004-9-2 18:00simtiger

ELF格式文件中segmentsection到底有什么区别?

[quote][i]
原帖由 "yichun"]如果你指的是"文件中"代码段与数据段的区分, 那确实没有,Loader仍可以从segmentRead/Write/Execute的设置来区分指令和数据[/quote 发表:[/i]


不好意思,还有一点不懂
ELF
segment的什么属性标志Read/Write/Execute?

看了看program header tablesegment的各个属性,p_type的值不是(p_typept_load,pt_dynamic之类的值),其他属性好像也不是,那么怎么标志一个segmentRead/Write/Execute

再次感谢您的回答。

 

2004-9-2 20:12yichun

ELF格式文件中segmentsection到底有什么区别?

ELF program header
int type; // loadable code or data, dynamic linking info, etc.
int offset; // file offset of segment
int virtaddr; // virtual address to map segment
int physaddr; // physical address, not used
int filesize; // size of segment in file
int memsize; // size of segment in memory (bigger if contains BSS)
int flags; // Read, Write, Execute bits
int align; // required alignment, invariably hardware page size

 

2004-9-2 22:45simtiger

ELF格式文件中segmentsection到底有什么区别?

非常感谢yichun您的回答~再次感谢

 

2007-12-5 14:56asdfning

我正需要,也同时谢谢热心的回答。

 

阅读(1507) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~