Page MenuHomeFreeBSD

Log and report rtld error messages via utrace(2)/ktrace(1).
ClosedPublic

Authored by peterj on Jan 26 2017, 7:27 AM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Jan 13, 5:33 PM
Unknown Object (File)
Nov 25 2024, 4:30 PM
Unknown Object (File)
Nov 5 2024, 2:14 AM
Unknown Object (File)
Oct 4 2024, 4:52 AM
Unknown Object (File)
Oct 3 2024, 7:13 PM
Unknown Object (File)
Oct 3 2024, 5:52 PM
Unknown Object (File)
Oct 1 2024, 7:38 PM
Unknown Object (File)
Oct 1 2024, 5:29 PM
Subscribers

Details

Summary

Extend LD_UTRACE by also generating utrace(2) log events for runtime linker
errors.

MFC after: 1 week

Test Plan

Compile the following code and execute with

LD_UTRACE=yes ktrace ./a.out ; kdump -t u

Note the inclusion of error messages.


#include <dlfcn.h>
#include <err.h>
#include <stdio.h>

int main(int argc, char **argv)
{

if (dlsym(NULL, "symbol_missing") != NULL)
   errx(1, "Found unexpected symbol");
return (0);

}

Diff Detail

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

Event Timeline

peterj retitled this revision from to Log and report rtld error messages via utrace(2)/ktrace(1)..
peterj updated this object.
peterj edited the test plan for this revision. (Show Details)
peterj added reviewers: kib, jhb.
kib edited edge metadata.
This revision is now accepted and ready to land.Jan 26 2017, 11:20 AM
jhb edited edge metadata.