Add signed-length validation to d2i, PEM, and buffer-load APIs#10207
Draft
ColtonWilley wants to merge 1 commit intowolfSSL:masterfrom
Draft
Add signed-length validation to d2i, PEM, and buffer-load APIs#10207ColtonWilley wants to merge 1 commit intowolfSSL:masterfrom
ColtonWilley wants to merge 1 commit intowolfSSL:masterfrom
Conversation
…er loaders Reject negative signed lengths before they are cast to unsigned (word32/size_t), preventing heap buffer over-reads and oversized allocations. Covers d2i_* OpenSSL compat wrappers, ProcessBuffer, PemToDer, certgen helpers, and CRL buffer paths.
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.
Internal security review found that ~25 public API entry points accept signed
length parameters (long/int) and cast them to word32 or size_t without rejecting
negative values first. A negative length wraps to a huge unsigned value, giving
ASN.1 parsers and memcpy calls a bogus bound.
Three main areas fixed:
len <= 0 guards before the (word32) casts
entry points and all PEM conversion paths respectively
negative derSz before forwarding to wc_SetCert_LoadDer
Also fixes an integer overflow in wolfSSL_ASN1_STRING_set where sz == INT_MAX
caused sz + 1 to wrap, bypassing the buffer size check.
8 locations were audited and confirmed already safe (existing guards catch
negatives). Those are left unchanged.
Still needs additional testing, PR up early for duplicate detection on vulnerability reports.