Closed
Bug 1152162
Opened 10 years ago
Closed 7 years ago
Accept-Ranges parsing
Categories
(Core :: Networking, defect, P3)
Core
Networking
Tracking
()
RESOLVED
FIXED
mozilla63
Tracking | Status | |
---|---|---|
firefox63 | --- | fixed |
People
(Reporter: mnot, Assigned: kershaw)
Details
(Whiteboard: [necko-triaged])
Attachments
(1 file, 1 obsolete file)
1.96 KB,
patch
|
kershaw
:
review+
|
Details | Diff | Splinter Review |
MediaResource.cpp do_QueryInterface() parses the HTTP Accept-Ranges header like this:
nsAutoCString ranges;
hc->GetResponseHeader(NS_LITERAL_CSTRING("Accept-Ranges"),
ranges);
bool acceptsRanges = ranges.EqualsLiteral("bytes");
This means that if the string "bytes" shows up in the header at all, it will match -- making it error-prone if a range using that sequence of characters is ever defined (e.g., "newbytes" as recently proposed on the HTTP WG mailing list).
The syntax isn't difficult to parse, it's a comma-separated list of tokens with optional whitespace (the same as several other headers):
http://httpwg.github.io/specs/rfc7233.html#header.accept-ranges
(found by Rodger Combs on the IETF HTTP WG mailing list)
Comment 1•10 years ago
|
||
Correction: the existing implementation would only match if the header value is exactly "bytes", so it'd be error-prone if the server listed multiple range units including "bytes".
Updated•8 years ago
|
Component: DOM: Device Interfaces → Audio/Video
Updated•8 years ago
|
Component: Audio/Video → Networking
Comment 2•8 years ago
|
||
Hi Kershaw,
Would you take a look at this bug?
Thanks!
Flags: needinfo?(kechang)
Priority: -- → P3
Whiteboard: [necko-triaged]
Assignee | ||
Comment 3•7 years ago
|
||
Summary:
Simply use nsHttp::FindToken to parse Accept-Ranges header.
Thanks.
Assignee: nobody → kershaw
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Flags: needinfo?(kershaw)
Attachment #8998157 -
Flags: review?(valentin.gosu)
Updated•7 years ago
|
Attachment #8998157 -
Flags: review?(valentin.gosu) → review+
Assignee | ||
Comment 4•7 years ago
|
||
Carry r+.
Attachment #8998157 -
Attachment is obsolete: true
Attachment #8998172 -
Flags: review+
Assignee | ||
Updated•7 years ago
|
Keywords: checkin-needed
Pushed by aiakab@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/5472b2d8b9a0
Correct parsing Accept-Range header, r=valentin
Keywords: checkin-needed
Comment 6•7 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
status-firefox63:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla63
You need to log in
before you can comment on or make changes to this bug.
Description
•