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
F157324550: D9347.id.diff
Wed, May 20, 8:33 AM
Unknown Object (File)
Sun, May 17, 6:54 AM
Unknown Object (File)
Thu, Apr 30, 3:00 PM
Unknown Object (File)
Mon, Apr 27, 1:34 AM
Unknown Object (File)
Sun, Apr 26, 2:59 PM
Unknown Object (File)
Fri, Apr 24, 12:16 PM
Unknown Object (File)
Tue, Apr 21, 12:34 PM
Unknown Object (File)
Apr 15 2026, 10:05 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.