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, Dec 13, 1:59 PM
Unknown Object (File)
Sun, Dec 8, 11:21 AM
Unknown Object (File)
Wed, Dec 4, 12:32 PM
Unknown Object (File)
Thu, Nov 28, 5:21 PM
Unknown Object (File)
Wed, Nov 27, 2:42 AM
Unknown Object (File)
Nov 22 2024, 5:49 PM
Unknown Object (File)
Nov 22 2024, 9:58 AM
Unknown Object (File)
Nov 18 2024, 10:50 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