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
Unknown Object (File)
Fri, Sep 18, 8:45 PM
Unknown Object (File)
Sun, Sep 13, 3:45 PM
Unknown Object (File)
Mon, Sep 7, 8:51 PM
Unknown Object (File)
Sun, Sep 6, 3:04 PM
Unknown Object (File)
Sat, Sep 5, 10:48 AM
Unknown Object (File)
Fri, Sep 4, 9:53 AM
Unknown Object (File)
Fri, Sep 4, 9:49 AM
Unknown Object (File)
Fri, Sep 4, 2:30 AM
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