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)
Tue, May 28, 12:24 AM
Unknown Object (File)
May 25 2024, 1:29 PM
Unknown Object (File)
May 22 2024, 12:03 PM
Unknown Object (File)
May 19 2024, 8:24 PM
Unknown Object (File)
May 10 2024, 10:41 AM
Unknown Object (File)
May 8 2024, 12:49 AM
Unknown Object (File)
May 2 2024, 10:16 PM
Unknown Object (File)
May 2 2024, 7:09 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.