Page MenuHomeFreeBSD

Fix memory leaks in libdtrace
ClosedPublic

Authored by trix_juniper.net on Feb 21 2017, 7:18 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Jul 2, 2:34 AM
Unknown Object (File)
Fri, Jun 27, 11:51 PM
Unknown Object (File)
Fri, Jun 27, 5:26 AM
Unknown Object (File)
Mon, Jun 23, 4:31 AM
Unknown Object (File)
Sat, Jun 21, 10:46 PM
Unknown Object (File)
Fri, Jun 20, 10:18 AM
Unknown Object (File)
May 22 2025, 2:50 PM
Unknown Object (File)
May 18 2025, 10:41 PM

Details

Summary

dt_open.c dt_provmod_open
When realloc fails, the original pointer is still valid, so it must be freed.

dt_open.c dt_vopen
When the malloc of dtp fails, the memory/structure previously assigned to provmod must be freed. dt_provmod_destroy handles the case when provmod == NULL so there is no need for special handling of jumping over the setup of provmod.

dt_strtab.c dt_strtab_insert
When the call to dt_strtab_copyin fails, it is necessary to free the locally allocated memory assigned to 'hp' before returning early.

Test Plan

Run clang's static analyzer scan-build before to reproduce the problem, run scan-build after to verify resolution of the problem.

Diff Detail

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

Event Timeline

trix_juniper.net retitled this revision from to Fix memory leaks in libdtrace.
trix_juniper.net updated this object.
trix_juniper.net edited the test plan for this revision. (Show Details)
trix_juniper.net set the repository for this revision to rS FreeBSD src repository - subversion.
markj edited edge metadata.
This revision is now accepted and ready to land.Feb 21 2017, 10:27 PM
This revision was automatically updated to reflect the committed changes.