Page MenuHomeFreeBSD

Fix double free in case of mount error.
ClosedPublic

Authored by fsu on Feb 27 2019, 11:37 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Aug 26, 2:53 PM
Unknown Object (File)
Tue, Aug 25, 10:40 PM
Unknown Object (File)
Sun, Aug 23, 6:01 PM
Unknown Object (File)
Wed, Aug 12, 3:27 AM
Unknown Object (File)
Tue, Aug 11, 7:46 PM
Unknown Object (File)
Mon, Aug 10, 1:38 AM
Unknown Object (File)
Fri, Aug 7, 10:44 PM
Unknown Object (File)
Jul 25 2026, 9:10 PM
Subscribers

Details

Summary

It was found, that if cg descriptors bread() will return error, the fs->e2fs_gd and fs->e2fs_contigdirs sb fields will be freed twice.
Immediately after bread() call and at the bottom of the ext2_mountfs() function.
It is not possible to free these in-memory superblocks fields immediately after bread(), because the compute_sb_data() function is used in case of ro/rw remounting.
So, choose the second place and remove free() calls immediately after bread().

Test Plan

Tested manually with problem fs image.
And some ro/rw remount manual tests had place.

Diff Detail

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

Event Timeline

pfg added inline comments.
sys/fs/ext2fs/ext2_vfsops.c
474 ↗(On Diff #54470)

Remove "The" from here: we are talking about two things so we cannot use a singular.

This revision is now accepted and ready to land.Feb 27 2019, 2:34 PM
This revision was automatically updated to reflect the committed changes.