Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
fb5b5aef
Unverified
Commit
fb5b5aef
authored
Nov 27, 2020
by
Tatsuhiro Tsujikawa
Committed by
GitHub
Nov 27, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1537 from nghttp2/nghttpx-allow-colon-in-pattern
nghttpx: Add workaround to include ':' in backend pattern
parents
ffcdf5df
6787423e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
61 additions
and
5 deletions
+61
-5
src/http2.cc
src/http2.cc
+47
-0
src/http2.h
src/http2.h
+6
-0
src/shrpx.cc
src/shrpx.cc
+5
-2
src/shrpx_config.cc
src/shrpx_config.cc
+3
-3
No files found.
src/http2.cc
View file @
fb5b5aef
...
...
@@ -1841,6 +1841,53 @@ StringRef normalize_path(BlockAllocator &balloc, const StringRef &path,
query
);
}
StringRef
normalize_path_colon
(
BlockAllocator
&
balloc
,
const
StringRef
&
path
,
const
StringRef
&
query
)
{
// First, decode %XX for unreserved characters and ':', then do
// http2::path_join
// We won't find %XX if length is less than 3.
if
(
path
.
size
()
<
3
||
std
::
find
(
std
::
begin
(
path
),
std
::
end
(
path
),
'%'
)
==
std
::
end
(
path
))
{
return
path_join
(
balloc
,
StringRef
{},
StringRef
{},
path
,
query
);
}
// includes last terminal NULL.
auto
result
=
make_byte_ref
(
balloc
,
path
.
size
()
+
1
);
auto
p
=
result
.
base
;
auto
it
=
std
::
begin
(
path
);
for
(;
it
+
2
<
std
::
end
(
path
);)
{
if
(
*
it
==
'%'
)
{
if
(
util
::
is_hex_digit
(
*
(
it
+
1
))
&&
util
::
is_hex_digit
(
*
(
it
+
2
)))
{
auto
c
=
(
util
::
hex_to_uint
(
*
(
it
+
1
))
<<
4
)
+
util
::
hex_to_uint
(
*
(
it
+
2
));
if
(
util
::
in_rfc3986_unreserved_chars
(
c
)
||
c
==
':'
)
{
*
p
++
=
c
;
it
+=
3
;
continue
;
}
*
p
++
=
'%'
;
*
p
++
=
util
::
upcase
(
*
(
it
+
1
));
*
p
++
=
util
::
upcase
(
*
(
it
+
2
));
it
+=
3
;
continue
;
}
}
*
p
++
=
*
it
++
;
}
p
=
std
::
copy
(
it
,
std
::
end
(
path
),
p
);
*
p
=
'\0'
;
return
path_join
(
balloc
,
StringRef
{},
StringRef
{},
StringRef
{
result
.
base
,
p
},
query
);
}
std
::
string
normalize_path
(
const
StringRef
&
path
,
const
StringRef
&
query
)
{
BlockAllocator
balloc
(
1024
,
1024
);
...
...
src/http2.h
View file @
fb5b5aef
...
...
@@ -410,6 +410,12 @@ StringRef to_method_string(int method_token);
StringRef
normalize_path
(
BlockAllocator
&
balloc
,
const
StringRef
&
path
,
const
StringRef
&
query
);
// normalize_path_colon is like normalize_path, but it additionally
// does percent-decoding %3A in order to workaround the issue that ':'
// cannot be included in backend pattern.
StringRef
normalize_path_colon
(
BlockAllocator
&
balloc
,
const
StringRef
&
path
,
const
StringRef
&
query
);
std
::
string
normalize_path
(
const
StringRef
&
path
,
const
StringRef
&
query
);
StringRef
rewrite_clean_path
(
BlockAllocator
&
balloc
,
const
StringRef
&
src
);
...
...
src/shrpx.cc
View file @
fb5b5aef
...
...
@@ -1877,8 +1877,11 @@ Connections:
affinity is enabled.
Since ";" and ":" are used as delimiter, <PATTERN> must
not contain these characters. Since ";" has special
meaning in shell, the option value must be quoted.
not contain these characters. In order to include ":"
in <PATTERN>, one has to specify "%3A" (which is
percent-encoded from of ":") instead. Since ";" has
special meaning in shell, the option value must be
quoted.
Default: )"
<<
DEFAULT_DOWNSTREAM_HOST
<<
","
<<
DEFAULT_DOWNSTREAM_PORT
<<
R"(
...
...
src/shrpx_config.cc
View file @
fb5b5aef
...
...
@@ -1109,9 +1109,9 @@ int parse_mapping(Config *config, DownstreamAddrConfig &addr,
*
p
=
'\0'
;
pattern
=
StringRef
{
iov
.
base
,
p
};
}
else
{
auto
path
=
http2
::
normalize_path
(
downstreamconf
.
balloc
,
StringRef
{
slash
,
std
::
end
(
raw_pattern
)},
StringRef
{});
auto
path
=
http2
::
normalize_path
_colon
(
downstreamconf
.
balloc
,
StringRef
{
slash
,
std
::
end
(
raw_pattern
)},
StringRef
{});
auto
iov
=
make_byte_ref
(
downstreamconf
.
balloc
,
std
::
distance
(
std
::
begin
(
raw_pattern
),
slash
)
+
path
.
size
()
+
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment