about summary refs log tree commit diff
path: root/hurd/set-hooks.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove set-hooks.h from generic includesAdhemerval Zanella Netto2023-03-271-0/+96
The hooks mechanism uses symbol sets for running lists of functions, which requires either extra linker directives to provide any hardening (such as RELRO) or additional code (such as pointer obfuscation via mangling with random value). Currently only hurd uses set-hooks.h so we remove it from the generic includes. The generic implementation uses direct function calls which provide hardening and good code generation, observability and debugging without the need for extra linking options or special code handling. Reviewed-by: Carlos O'Donell <carlos@redhat.com>