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
ef7d6e8a
Commit
ef7d6e8a
authored
Dec 16, 2015
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Loose HTTP Upgrade condition
parent
71012fe8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
11 deletions
+33
-11
src/shrpx_client_handler.cc
src/shrpx_client_handler.cc
+33
-6
src/shrpx_https_upstream.cc
src/shrpx_https_upstream.cc
+0
-5
No files found.
src/shrpx_client_handler.cc
View file @
ef7d6e8a
...
...
@@ -718,6 +718,34 @@ void ClientHandler::direct_http2_upgrade() {
int
ClientHandler
::
perform_http2_upgrade
(
HttpsUpstream
*
http
)
{
auto
upstream
=
make_unique
<
Http2Upstream
>
(
this
);
auto
output
=
upstream
->
get_response_buf
();
// We might have written non-final header in response_buf, in this
// case, response_state is still INITIAL. If this non-final header
// and upgrade header fit in output buffer, do upgrade. Otherwise,
// to avoid to send this non-final header as response body in HTTP/2
// upstream, fail upgrade.
auto
downstream
=
http
->
get_downstream
();
auto
input
=
downstream
->
get_response_buf
();
static
constexpr
char
res
[]
=
"HTTP/1.1 101 Switching Protocols
\r\n
"
"Connection: Upgrade
\r\n
"
"Upgrade: "
NGHTTP2_CLEARTEXT_PROTO_VERSION_ID
"
\r\n
"
"
\r\n
"
;
auto
required_size
=
str_size
(
res
)
+
input
->
rleft
();
if
(
output
->
wleft
()
<
required_size
)
{
if
(
LOG_ENABLED
(
INFO
))
{
CLOG
(
INFO
,
this
)
<<
"HTTP Upgrade failed because of insufficient buffer space: need "
<<
required_size
<<
", available "
<<
output
->
wleft
();
}
return
-
1
;
}
if
(
upstream
->
upgrade_upstream
(
http
)
!=
0
)
{
return
-
1
;
}
...
...
@@ -729,12 +757,11 @@ int ClientHandler::perform_http2_upgrade(HttpsUpstream *http) {
on_read_
=
&
ClientHandler
::
upstream_http2_connhd_read
;
write_
=
&
ClientHandler
::
write_clear
;
static
constexpr
char
res
[]
=
"HTTP/1.1 101 Switching Protocols
\r\n
"
"Connection: Upgrade
\r\n
"
"Upgrade: "
NGHTTP2_CLEARTEXT_PROTO_VERSION_ID
"
\r\n
"
"
\r\n
"
;
upstream
->
get_response_buf
()
->
write
(
res
,
sizeof
(
res
)
-
1
);
auto
nread
=
downstream
->
get_response_buf
()
->
remove
(
output
->
last
,
output
->
wleft
());
output
->
write
(
nread
);
output
->
write
(
res
,
str_size
(
res
));
upstream_
=
std
::
move
(
upstream
);
signal_write
();
...
...
src/shrpx_https_upstream.cc
View file @
ef7d6e8a
...
...
@@ -409,11 +409,6 @@ int htp_msg_completecb(http_parser *htp) {
if
(
handler
->
get_http2_upgrade_allowed
()
&&
downstream
->
get_http2_upgrade_request
()
&&
// we may write non-final header in response_buf, in this case,
// response_state is still INITIAL. So don't upgrade in this
// case, otherwise we end up send this non-final header as
// response body in HTTP/2 upstream.
downstream
->
get_response_buf
()
->
rleft
()
==
0
&&
handler
->
perform_http2_upgrade
(
upstream
)
!=
0
)
{
if
(
LOG_ENABLED
(
INFO
))
{
ULOG
(
INFO
,
upstream
)
<<
"HTTP Upgrade to HTTP/2 failed"
;
...
...
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