Merged
Conversation
pointer lifetime in WriteNewVolumeLabelToDev() Previously, in WriteNewVolumeLabelToDev() a copy of the pointer dcr->block was saved and then used as a parameter to EmptyBlock(). This pointer's lifetime ends in dev->SetLabelBlockSize() when the previously written device's block size was larger than the label block size. This patch removes the copy and uses dcr->block directly, so the updated pointer is used.
When running in valgrind the ioctl() call that consumes struct mtop is flagged as accessing uninitialized memory. This patch initializes every struct mtop.
franku
approved these changes
Oct 1, 2020
Contributor
franku
left a comment
There was a problem hiding this comment.
Very good you found that!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When a device in the SD is configured with custom Maximum Block Size, autolabeling may cause a memory corruption. When writing to a volume with a larger blocksize than the label blocksize and then autolabels a new volume,
WriteNewVolumeLabel()would callEmptyBlock()with an invalid pointer leading to heap corruption.While pinpointing this problem, valgrind also flagged the use of uninitialized
struct mtopin generic_tape_device. While this was probably not a real issue, the struct mtop is now always initialized, so valgrind does not complain anymore.