Linux ELF 文件段名称
Linux ELF FILE SECTIONS NAME
我有一个从 ELF 获取信息的 c 程序 file.My 问题是:所有部分名称都必须以点开头(例如 .sffa)?它是必须的还是仅适用于系统文件?
以点开头的部分名称是 reserved for system stuff,但可以使用其他部分名称:
Section names with a dot prefix are reserved for the system,
although applications may use these sections
if their existing meanings are satisfactory. Applications may use
names without the prefix to avoid conflicts with system sections. The
object file format lets one define sections not in the list above.
An object file may have more than one section with the same name.
我有一个从 ELF 获取信息的 c 程序 file.My 问题是:所有部分名称都必须以点开头(例如 .sffa)?它是必须的还是仅适用于系统文件?
以点开头的部分名称是 reserved for system stuff,但可以使用其他部分名称:
Section names with a dot prefix are reserved for the system, although applications may use these sections if their existing meanings are satisfactory. Applications may use names without the prefix to avoid conflicts with system sections. The object file format lets one define sections not in the list above. An object file may have more than one section with the same name.