HomeFreeBSD

Reimplement brk() and sbrk() to avoid the use of _end.

Description

Reimplement brk() and sbrk() to avoid the use of _end.

Previously, libc.so would initialize its notion of the break address
using _end, a special symbol emitted by the static linker following
the bss section. Compatibility issues between lld and ld.bfd could
cause the wrong definition of _end (libc.so's definition rather than
that of the executable) to be used, breaking the brk()/sbrk()
interface.

Avoid this problem and future interoperability issues by simply not
relying on _end. Instead, modify the break() system call to return
the kernel's view of the current break address, and have libc
initialize its state using an extra syscall upon the first use of the
interface. As a side effect, this appears to fix brk()/sbrk() usage
in executables run with rtld direct exec, since the kernel and libc.so
no longer maintain separate views of the process' break address.

PR: 228574
Reviewed by: kib (previous version)
MFC after: 2 months
Differential Revision: https://reviews.freebsd.org/D15663

Details

Provenance
markjAuthored on
Reviewer
kib
Differential Revision
D15663: Rewrite brk()/sbrk() to avoid using _end.
Parents
rS334625: Correctly handle the padding for IPv6-AH, as specified by RFC4302
Branches
Unknown
Tags
Unknown