Page MenuHomeFreeBSD

Fix aux_info corruption in rtld direct execution mode
ClosedPublic

Authored by bdragon on Sep 14 2019, 3:54 AM.
Tags
None
Referenced Files
F103224793: D21656.diff
Fri, Nov 22, 9:58 AM
Unknown Object (File)
Mon, Nov 18, 10:50 PM
Unknown Object (File)
Mon, Nov 18, 8:49 AM
Unknown Object (File)
Mon, Nov 18, 8:44 AM
Unknown Object (File)
Mon, Nov 18, 8:36 AM
Unknown Object (File)
Sat, Nov 16, 9:56 PM
Unknown Object (File)
Fri, Nov 1, 11:11 AM
Unknown Object (File)
Sep 30 2024, 8:37 PM
Subscribers

Details

Summary

This manifests on powerpc64 as not being able to create threads in programs when using direct execution due to an invalid value being used for stack_prot, causing the kernel to reject mmap of the new thread stack.

The problem is that after

for (;; auxp++, auxpf++) {
    *auxp = *auxpf;
    if (auxp->a_type == AT_NULL)
            break;
}

is run, aux_info contains stale pointers to memory that has shifted slightly out from under it.
So, re-digest it to ensure the pointers are sane again.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable