Rewrite multipart boundary detection#7728
Merged
earlephilhower merged 3 commits intoesp8266:masterfrom Nov 29, 2020
Merged
Conversation
Use a simpler, cleaner implementation of multipart form detection as defined in https://tools.ietf.org/html/rfc7578 . Implements a simple state machine that detects the \r\n--<boundary> stream in input a character at a time, instead of buffering and comparing in chunks which can miss things due to alignment issues and which also had a problem with replacing characters in a binary stream. Fixes esp8266#7723
Collaborator
Author
|
@luc-github can you please test this with your failing forms and report back? Using FSBrowser and your binaries, it works correctly, but I don't have any other handy multipart form apps to test against. |
Contributor
|
ok I will test when back home and report results thank you |
Contributor
|
I can confirm the PR fix the issue - I have tested with my application ESP3D and now index.html.gz is properly expanded after upload - which confirm no more corruption during upload Thank you for the fix |
d-a-v
reviewed
Nov 28, 2020
Adjust the private _uploadReadByte function to return -1 on error (like a read()), and the main file upload handler to use that return value instead of duplicating logic.
d-a-v
approved these changes
Nov 28, 2020
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.
Use a simpler, cleaner implementation of multipart form detection as
defined in https://tools.ietf.org/html/rfc7578 .
Implements a simple state machine that detects the
\r\n--<boundary>stream in input a character at a time, instead of buffering and
comparing in chunks which can miss things due to alignment issues and
which also had a problem with replacing characters in a binary stream.
Fixes #7723