extern struct section [src]
A segment is made up of zero or more sections. Non-MH_OBJECT files have
all of their segments with the proper sections in each, and padded to the
specified segment alignment when produced by the link editor. The first
segment of a MH_EXECUTE and MH_FVMLIB format file contains the mach_header
and load commands of the object file before its first section. The zero
fill sections are always last in their segment (in all formats). This
allows the zeroed segment padding to be mapped into memory where zero fill
sections might be. The gigabyte zero fill sections, those with the section
type S_GB_ZEROFILL, can only be in a segment with sections of this type.
These segments are then placed after all other segments.
The MH_OBJECT format has all of its sections in one segment for
compactness. There is no padding to a specified segment boundary and the
mach_header and load commands are not part of the segment.
Sections with the same section name, sectname, going into the same segment,
segname, are combined by the link editor. The resulting section is aligned
to the maximum alignment of the combined sections and is the new section's
alignment. The combined sections are aligned to their original alignment in
the combined section. Any padded bytes to get the specified alignment are
zeroed.
The format of the relocation entries referenced by the reloff and nreloc
fields of the section structure for mach object files is described in the
header file .
Fields
sectname: [16]u8name of this section
segname: [16]u8segment this section goes in
addr: u32memory address of this section
size: u32size in bytes of this section
offset: u32file offset of this section
@"align": u32section alignment (power of 2)
reloff: u32file offset of relocation entries
nreloc: u32number of relocation entries
flags: u32flags (section type and attributes
reserved1: u32reserved (for offset or index)
reserved2: u32reserved (for count or sizeof)
Source
pub const section = extern struct {
/// name of this section
sectname: [16]u8,
/// segment this section goes in
segname: [16]u8,
/// memory address of this section
addr: u32,
/// size in bytes of this section
size: u32,
/// file offset of this section
offset: u32,
/// section alignment (power of 2)
@"align": u32,
/// file offset of relocation entries
reloff: u32,
/// number of relocation entries
nreloc: u32,
/// flags (section type and attributes
flags: u32,
/// reserved (for offset or index)
reserved1: u32,
/// reserved (for count or sizeof)
reserved2: u32,
}