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)
Fri, Nov 29, 10:54 PM
Unknown Object (File)
Thu, Nov 28, 10:51 AM
Unknown Object (File)
Nov 10 2024, 4:39 PM
Unknown Object (File)
Oct 24 2024, 1:44 PM
Unknown Object (File)
Oct 21 2024, 1:29 PM
Unknown Object (File)
Oct 15 2024, 4:57 PM
Unknown Object (File)
Oct 9 2024, 3:00 PM
Unknown Object (File)
Oct 9 2024, 3:00 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 Skipped
Unit
Tests Skipped

Event Timeline

pfg added inline comments.
sys/fs/ext2fs/ext2_vfsops.c
474

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.