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 anarchist URL where path starts with // #817

Merged
merged 8 commits into from
Mar 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion url/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,14 @@ impl Url {
assert_eq!(self.host_end, self.scheme_end + 1);
assert_eq!(self.host, HostInternal::None);
assert_eq!(self.port, None);
assert_eq!(self.path_start, self.scheme_end + 1);
if self.path().starts_with("//") {
// special case when first path segment is empty
assert_eq!(self.byte_at(self.scheme_end + 1), b'/');
assert_eq!(self.byte_at(self.scheme_end + 2), b'.');
assert_eq!(self.path_start, self.scheme_end + 3);
} else {
assert_eq!(self.path_start, self.scheme_end + 1);
}
}
if let Some(start) = self.query_start {
assert!(start >= self.path_start);
Expand Down
46 changes: 43 additions & 3 deletions url/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -474,9 +474,8 @@ impl<'a> Parser<'a> {
let host = HostInternal::None;
let port = None;
let remaining = if let Some(input) = input.split_prefix('/') {
let path_start = self.serialization.len();
self.serialization.push('/');
self.parse_path(scheme_type, &mut false, path_start, input)
self.parse_path(scheme_type, &mut false, path_start as usize, input)
} else {
self.parse_cannot_be_a_base_path(input)
};
Expand Down Expand Up @@ -1354,9 +1353,50 @@ impl<'a> Parser<'a> {
host_end: u32,
host: HostInternal,
port: Option<u16>,
path_start: u32,
mut path_start: u32,
remaining: Input<'_>,
) -> ParseResult<Url> {
// Special case for anarchist URL's with a leading empty path segment
// This prevents web+demo:/.//not-a-host/ or web+demo:/path/..//not-a-host/,
// when parsed and then serialized, from ending up as web+demo://not-a-host/
// (they end up as web+demo:/.//not-a-host/).
//
// If url’s host is null, url does not have an opaque path,
// url’s path’s size is greater than 1, and url’s path[0] is the empty string,
// then append U+002F (/) followed by U+002E (.) to output.
let scheme_end_as_usize = scheme_end as usize;
let path_start_as_usize = path_start as usize;
if path_start_as_usize == scheme_end_as_usize + 1 {
// Anarchist URL
if self.serialization[path_start_as_usize..].starts_with("//") {
// Case 1: The base URL did not have an empty path segment, but the resulting one does
// Insert the "/." prefix
self.serialization.insert_str(path_start_as_usize, "/.");
path_start += 2;
}
assert!(!self.serialization[scheme_end_as_usize..].starts_with("://"));
} else if path_start_as_usize == scheme_end_as_usize + 3
&& &self.serialization[scheme_end_as_usize..path_start_as_usize] == ":/."
{
// Anarchist URL with leading empty path segment
// The base URL has a "/." between the host and the path
assert_eq!(self.serialization.as_bytes()[path_start_as_usize], b'/');
if self
.serialization
.as_bytes()
.get(path_start_as_usize + 1)
.copied()
!= Some(b'/')
{
// Case 2: The base URL had an empty path segment, but the resulting one does not
// Remove the "/." prefix
self.serialization
.replace_range(scheme_end_as_usize..path_start_as_usize, ":");
path_start -= 2;
}
assert!(!self.serialization[scheme_end_as_usize..].starts_with("://"));
}

let (query_start, fragment_start) =
self.parse_query_and_fragment(scheme_type, scheme_end, remaining)?;
Ok(Url {
Expand Down
9 changes: 8 additions & 1 deletion url/src/slicing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,14 @@ impl Url {
}
}

Position::AfterPort => self.path_start as usize,
Position::AfterPort => {
if let Some(port) = self.port {
debug_assert!(self.byte_at(self.host_end) == b':');
self.host_end as usize + ":".len() + port.to_string().len()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oww, this can be done without allocating string.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

} else {
self.host_end as usize
}
}

Position::BeforePath => self.path_start as usize,

Expand Down
10 changes: 10 additions & 0 deletions url/tests/unit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -954,6 +954,16 @@ fn no_panic() {
url::quirks::set_hostname(&mut url, "//eom/datcom/\\\\t\\://eom/data.cs").unwrap();
}

#[test]
fn test_null_host_with_leading_empty_path_segment() {
// since Note in item 3 of URL serializing in the URL Standard
// https://url.spec.whatwg.org/#url-serializing
let url = Url::parse("m:/.//\\").unwrap();
let encoded = url.as_str();
let reparsed = Url::parse(encoded).unwrap();
assert_eq!(reparsed, url);
}

#[test]
fn pop_if_empty_in_bounds() {
let mut url = Url::parse("m://").unwrap();
Expand Down
11 changes: 0 additions & 11 deletions url/tests/urltestdata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7487,7 +7487,6 @@
"hash": ""
},
"Serialize /. in path",
"skip next",
{
"input": "non-spec:/.//",
"base": "about:blank",
Expand All @@ -7502,7 +7501,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "non-spec:/..//",
"base": "about:blank",
Expand All @@ -7517,7 +7515,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "non-spec:/a/..//",
"base": "about:blank",
Expand All @@ -7532,7 +7529,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "non-spec:/.//path",
"base": "about:blank",
Expand All @@ -7547,7 +7543,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "non-spec:/..//path",
"base": "about:blank",
Expand All @@ -7562,7 +7557,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "non-spec:/a/..//path",
"base": "about:blank",
Expand Down Expand Up @@ -7592,7 +7586,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "/..//path",
"base": "non-spec:/p",
Expand All @@ -7607,7 +7600,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "..//path",
"base": "non-spec:/p",
Expand All @@ -7622,7 +7614,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "a/..//path",
"base": "non-spec:/p",
Expand All @@ -7637,7 +7628,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "",
"base": "non-spec:/..//p",
Expand All @@ -7652,7 +7642,6 @@
"search": "",
"hash": ""
},
"skip next",
{
"input": "path",
"base": "non-spec:/..//p",
Expand Down