aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux
diff options
context:
space:
mode:
authorStefan Liebler <stli@linux.ibm.com>2023-11-21 13:33:03 +0100
committerStefan Liebler <stli@linux.ibm.com>2023-11-30 13:31:23 +0100
commit807849965bbdeaa9b0a8f675d098efc520eeaaa8 (patch)
tree3438d290535be05ecdee893072c1fe790a9105f2 /sysdeps/unix/sysv/linux
parent7b12776584c51dbecb1033e107f6b9f45de47a1b (diff)
downloadglibc-807849965bbdeaa9b0a8f675d098efc520eeaaa8.tar
glibc-807849965bbdeaa9b0a8f675d098efc520eeaaa8.tar.gz
glibc-807849965bbdeaa9b0a8f675d098efc520eeaaa8.tar.bz2
glibc-807849965bbdeaa9b0a8f675d098efc520eeaaa8.zip
Avoid padding in _init and _fini. [BZ #31042]
The linker just concatenates the .init and .fini sections which results in the complete _init and _fini functions. If needed the linker adds padding bytes due to an alignment. GNU ld is adding NOPs, which is fine. But e.g. mold is adding traps which results in broken _init and _fini functions. Thus this patch removes the alignment in .init and .fini sections in crtn.S files. We keep the 4 byte function alignment in crti.S files. As the assembler now also outputs the start of _init and _fini functions as multiples of 4 byte, it perhaps has to fill it. Although GNU as is using NOPs here, to be sure, we just keep the alignment with 0x07 (=NOPs) at the end of crti.S. In order to avoid an obvious NOP slide in _fini, this patch also uses an lg instead of lgr instruction. Then the emitted instructions needs a multiple of 4 bytes.
Diffstat (limited to 'sysdeps/unix/sysv/linux')
0 files changed, 0 insertions, 0 deletions