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, Mar 20, 3:19 PM
Unknown Object (File)
Fri, Mar 20, 3:02 AM
Unknown Object (File)
Thu, Mar 19, 9:05 PM
Unknown Object (File)
Wed, Mar 11, 11:28 AM
Unknown Object (File)
Mon, Mar 9, 2:53 PM
Unknown Object (File)
Sun, Mar 8, 9:25 PM
Unknown Object (File)
Sun, Mar 8, 9:25 PM
Unknown Object (File)
Sun, Mar 8, 5:02 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