mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Simplify the data: protocol handler (#33500)
Signed-off-by: webbeef <me@webbeef.org>
This commit is contained in:
parent
a56c837122
commit
c1931ee2cb
7 changed files with 29 additions and 409 deletions
|
@ -5,16 +5,12 @@
|
||||||
use std::future::Future;
|
use std::future::Future;
|
||||||
use std::pin::Pin;
|
use std::pin::Pin;
|
||||||
|
|
||||||
use data_url::forgiving_base64;
|
use data_url::DataUrl;
|
||||||
use headers::{ContentType, HeaderMapExt};
|
use headers::HeaderValue;
|
||||||
use http::StatusCode;
|
use http::StatusCode;
|
||||||
use mime::Mime;
|
|
||||||
use net_traits::request::Request;
|
use net_traits::request::Request;
|
||||||
use net_traits::response::{Response, ResponseBody};
|
use net_traits::response::{Response, ResponseBody};
|
||||||
use net_traits::{NetworkError, ResourceFetchTiming};
|
use net_traits::{NetworkError, ResourceFetchTiming};
|
||||||
use percent_encoding::percent_decode;
|
|
||||||
use servo_url::ServoUrl;
|
|
||||||
use url::Position;
|
|
||||||
|
|
||||||
use crate::fetch::methods::{DoneChannel, FetchContext};
|
use crate::fetch::methods::{DoneChannel, FetchContext};
|
||||||
use crate::protocols::ProtocolHandler;
|
use crate::protocols::ProtocolHandler;
|
||||||
|
@ -22,54 +18,6 @@ use crate::protocols::ProtocolHandler;
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
pub struct DataProtocolHander {}
|
pub struct DataProtocolHander {}
|
||||||
|
|
||||||
enum DecodeError {
|
|
||||||
InvalidDataUri,
|
|
||||||
NonBase64DataUri,
|
|
||||||
}
|
|
||||||
|
|
||||||
type DecodeData = (Mime, Vec<u8>);
|
|
||||||
|
|
||||||
fn decode(url: &ServoUrl) -> Result<DecodeData, DecodeError> {
|
|
||||||
// data_url could do all of this work for us,
|
|
||||||
// except that it currently (Nov 2019) parses mime types into a
|
|
||||||
// different Mime class than other code expects
|
|
||||||
|
|
||||||
assert_eq!(url.scheme(), "data");
|
|
||||||
// Split out content type and data.
|
|
||||||
let parts: Vec<&str> = url[Position::BeforePath..Position::AfterQuery]
|
|
||||||
.splitn(2, ',')
|
|
||||||
.collect();
|
|
||||||
if parts.len() != 2 {
|
|
||||||
return Err(DecodeError::InvalidDataUri);
|
|
||||||
}
|
|
||||||
|
|
||||||
// ";base64" must come at the end of the content type, per RFC 2397.
|
|
||||||
// rust-http will fail to parse it because there's no =value part.
|
|
||||||
let mut ct_str = parts[0];
|
|
||||||
let is_base64 = ct_str.ends_with(";base64");
|
|
||||||
if is_base64 {
|
|
||||||
ct_str = &ct_str[..ct_str.len() - ";base64".len()];
|
|
||||||
}
|
|
||||||
let ct_str = if ct_str.starts_with(";charset=") {
|
|
||||||
format!("text/plain{}", ct_str)
|
|
||||||
} else {
|
|
||||||
ct_str.to_owned()
|
|
||||||
};
|
|
||||||
|
|
||||||
let content_type = ct_str
|
|
||||||
.parse()
|
|
||||||
.unwrap_or_else(|_| "text/plain; charset=US-ASCII".parse().unwrap());
|
|
||||||
|
|
||||||
let mut bytes = percent_decode(parts[1].as_bytes()).collect::<Vec<_>>();
|
|
||||||
if is_base64 {
|
|
||||||
match forgiving_base64::decode_to_vec(&bytes) {
|
|
||||||
Err(..) => return Err(DecodeError::NonBase64DataUri),
|
|
||||||
Ok(data) => bytes = data,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok((content_type, bytes))
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ProtocolHandler for DataProtocolHander {
|
impl ProtocolHandler for DataProtocolHander {
|
||||||
fn load(
|
fn load(
|
||||||
&self,
|
&self,
|
||||||
|
@ -78,20 +26,32 @@ impl ProtocolHandler for DataProtocolHander {
|
||||||
_context: &FetchContext,
|
_context: &FetchContext,
|
||||||
) -> Pin<Box<dyn Future<Output = Response> + Send>> {
|
) -> Pin<Box<dyn Future<Output = Response> + Send>> {
|
||||||
let url = request.current_url();
|
let url = request.current_url();
|
||||||
let response = match decode(&url) {
|
|
||||||
Ok((mime, bytes)) => {
|
assert_eq!(url.scheme(), "data");
|
||||||
|
|
||||||
|
let response = match DataUrl::process(url.clone().as_str()) {
|
||||||
|
Ok(data_url) => match data_url.decode_to_vec() {
|
||||||
|
Ok((bytes, _fragment_id)) => {
|
||||||
let mut response =
|
let mut response =
|
||||||
Response::new(url, ResourceFetchTiming::new(request.timing_type()));
|
Response::new(url, ResourceFetchTiming::new(request.timing_type()));
|
||||||
*response.body.lock().unwrap() = ResponseBody::Done(bytes);
|
*response.body.lock().unwrap() = ResponseBody::Done(bytes);
|
||||||
response.headers.typed_insert(ContentType::from(mime));
|
let mime = data_url.mime_type();
|
||||||
|
response.headers.insert(
|
||||||
|
http::header::CONTENT_TYPE,
|
||||||
|
HeaderValue::from_str(&mime.to_string()).unwrap(),
|
||||||
|
);
|
||||||
response.status = Some((StatusCode::OK, "OK".to_string()));
|
response.status = Some((StatusCode::OK, "OK".to_string()));
|
||||||
response.raw_status = Some((StatusCode::OK.as_u16(), b"OK".to_vec()));
|
response.raw_status = Some((StatusCode::OK.as_u16(), b"OK".to_vec()));
|
||||||
response
|
Some(response)
|
||||||
},
|
},
|
||||||
Err(_) => {
|
Err(_) => None,
|
||||||
|
},
|
||||||
|
Err(_) => None,
|
||||||
|
}
|
||||||
|
.unwrap_or_else(|| {
|
||||||
Response::network_error(NetworkError::Internal("Decoding data URL failed".into()))
|
Response::network_error(NetworkError::Internal("Decoding data URL failed".into()))
|
||||||
},
|
});
|
||||||
};
|
|
||||||
Box::pin(std::future::ready(response))
|
Box::pin(std::future::ready(response))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,37 +1,3 @@
|
||||||
[scheme-data.any.html]
|
|
||||||
[Fetching data:,response%27s%20body is OK (cors)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Fetching [HEAD\] data:,response%27s%20body is OK]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Fetching [POST\] data:,response%27s%20body is OK]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Fetching data:,response%27s%20body is OK (same-origin)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Fetching data:,response%27s%20body is OK]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
|
|
||||||
[scheme-data.any.worker.html]
|
|
||||||
[Fetching data:,response%27s%20body is OK (cors)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Fetching [HEAD\] data:,response%27s%20body is OK]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Fetching [POST\] data:,response%27s%20body is OK]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Fetching data:,response%27s%20body is OK (same-origin)]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[Fetching data:,response%27s%20body is OK]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
|
|
||||||
[scheme-data.any.sharedworker.html]
|
[scheme-data.any.sharedworker.html]
|
||||||
expected: ERROR
|
expected: ERROR
|
||||||
|
|
||||||
|
|
287
tests/wpt/meta/fetch/data-urls/processing.any.js.ini
vendored
287
tests/wpt/meta/fetch/data-urls/processing.any.js.ini
vendored
|
@ -5,292 +5,5 @@
|
||||||
expected: ERROR
|
expected: ERROR
|
||||||
|
|
||||||
[processing.any.html]
|
[processing.any.html]
|
||||||
["data:%00,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:,"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text / html,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:†,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data: ,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/plain;Charset=UTF-8,%C2%B1"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;x=x;charset=x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base 64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/html ,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/plain;a=\\",\\",X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset=,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;CHARSET=\\"X\\",X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;%62ase64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x/x;base64;charset=x;base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data://test/,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:X,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:%3Bbase64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:\\f,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x/x;base64;base64x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset= x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/plain ,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64,W%0CA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;x=x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64 ,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64,W%20A"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:\\0,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x;base64;x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;BASe64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:; charset=x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x;base64x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:; base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:,X#X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x/x;base64;charset=x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data: ;charset=x ; base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64;,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64;base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:; base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset =x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x/x;base64;base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:%20,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:%1F,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x;base64=x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64 ,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset=\\"x\\",X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/plain;charset=UTF-8,áñçə💩"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
|
|
||||||
[processing.any.worker.html]
|
[processing.any.worker.html]
|
||||||
["data:%00,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:,"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text / html,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:†,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data: ,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/plain;Charset=UTF-8,%C2%B1"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;x=x;charset=x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base 64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/html ,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/plain;a=\\",\\",X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset=,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;CHARSET=\\"X\\",X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;%62ase64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x/x;base64;charset=x;base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data://test/,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:X,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:%3Bbase64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:\\f,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x/x;base64;base64x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset= x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/plain ,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64,W%0CA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;x=x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64 ,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64,W%20A"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:\\0,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x;base64;x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;BASe64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:; charset=x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x;base64x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:; base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:,X#X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x/x;base64;charset=x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data: ;charset=x ; base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64;,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64;base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:; base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset =x,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x/x;base64;base64,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:%20,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:%1F,%FF"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:,X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:x;base64=x,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;base64 ,WA"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:;charset=\\"x\\",X"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
["data:text/plain;charset=UTF-8,áñçə💩"]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
14
tests/wpt/meta/fetch/range/data.any.js.ini
vendored
14
tests/wpt/meta/fetch/range/data.any.js.ini
vendored
|
@ -1,14 +0,0 @@
|
||||||
[data.any.html]
|
|
||||||
[data: URL and Range header]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[data: URL and Range header with multiple ranges]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
|
|
||||||
[data.any.worker.html]
|
|
||||||
[data: URL and Range header]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[data: URL and Range header with multiple ranges]
|
|
||||||
expected: FAIL
|
|
|
@ -1,2 +1,3 @@
|
||||||
[opaque-origin.html]
|
[opaque-origin.html]
|
||||||
expected: TIMEOUT
|
[An opaque origin should be authorized to see resource timings when theTAO header is the string 'null']
|
||||||
|
expected: FAIL
|
||||||
|
|
|
@ -26,9 +26,6 @@
|
||||||
[importScripts() requires scripty MIME types for data: URLs: zzz/zzz is blocked.]
|
[importScripts() requires scripty MIME types for data: URLs: zzz/zzz is blocked.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[importScripts() requires scripty MIME types for data: URLs: text/csv;bla;bla is blocked.]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[importScripts() requires scripty MIME types for data: URLs: Text/html is blocked.]
|
[importScripts() requires scripty MIME types for data: URLs: Text/html is blocked.]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
3
tests/wpt/meta/xhr/data-uri.htm.ini
vendored
3
tests/wpt/meta/xhr/data-uri.htm.ini
vendored
|
@ -1,3 +0,0 @@
|
||||||
[data-uri.htm]
|
|
||||||
[XHR method GET with MIME type text/html;charset=UTF-8]
|
|
||||||
expected: FAIL
|
|
Loading…
Add table
Add a link
Reference in a new issue