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
F131623487: D9347.id24470.diff
Thu, Oct 9, 8:22 PM
Unknown Object (File)
Tue, Oct 7, 3:00 PM
Unknown Object (File)
Tue, Oct 7, 2:02 AM
Unknown Object (File)
Mon, Sep 29, 11:20 AM
Unknown Object (File)
Sun, Sep 28, 4:24 PM
Unknown Object (File)
Sun, Sep 28, 1:23 AM
Unknown Object (File)
Sat, Sep 27, 6:23 AM
Unknown Object (File)
Sat, Sep 27, 6:20 AM
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.