Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix n-squared complexity in sample line with many adjacent tabs #1503

Merged
merged 1 commit into from
Aug 24, 2022

Conversation

daviesrob
Copy link
Member

This could be triggered by a #CHROM line ending in something like:

#CHROM\t...\tINFO\t\t\t\t\t\t ... many tabs ... \t\t\tfoo\n

Between each pair of tabs, bcf_hdr_add_sample_len() was called with len = 0, as if from bcf_hdr_add_sample(). This made it use strlen(s) instead of 0 as the sample name length, resulting in the addition of a bogus sample name with lots of leading tabs. The sample line parser then moved on to the next tab, and did the same thing again with one fewer leading tab.

Fix by making bcf_hdr_add_sample_len() always use the passed-in length, even if 0, allowing the empty sample name trap to do its work. bcf_hdr_add_sample() is updated to call strlen() itself, and to also deal with the backwards-compatibility check where it was permissible to call it with a NULL string.

This could be triggered by a #CHROM line ending in something
like:

...\tINFO\t\t\t\t\t\t ... many tabs ... \t\t\tfoo\n

Between each pair of tabs, bcf_hdr_add_sample_len() was called
with len = 0, as if from bcf_hdr_add_sample().  This made it use
strlen(s) instead of 0 as the sample name length, resulting in
the addition of a bogus sample name with lots of leading tabs.
The sample line parser then moved on to the next tab, and do
the same thing again with one fewer leading tab.

Fix by making bcf_hdr_add_sample_len() always use the passed-in
length, even if 0, allowing the empty sample name trap to do
its work.  bcf_hdr_add_sample() is updated to call strlen()
itself, and to also deal with the backwards-compatibility
check where it was permissible to call it with a NULL string.

Credit to OSS-Fuzz
Fixes oss-fuzz 47641
@whitwham whitwham merged commit 5036186 into samtools:develop Aug 24, 2022
@daviesrob daviesrob deleted the fix-tab-stall branch August 30, 2022 09:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants