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
6bd95d88
Commit
6bd95d88
authored
Nov 03, 2016
by
Tatsuhiro Tsujikawa
Committed by
GitHub
Nov 03, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #723 from nghttp2/strict-http-framing
Strict http framing
parents
6bcdb178
c171097d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
65 additions
and
7 deletions
+65
-7
doc/programmers-guide.rst
doc/programmers-guide.rst
+5
-0
lib/nghttp2_http.c
lib/nghttp2_http.c
+5
-0
src/shrpx_http_downstream_connection.cc
src/shrpx_http_downstream_connection.cc
+12
-0
src/shrpx_mruby_module_response.cc
src/shrpx_mruby_module_response.cc
+20
-7
tests/nghttp2_session_test.c
tests/nghttp2_session_test.c
+23
-0
No files found.
doc/programmers-guide.rst
View file @
6bd95d88
...
...
@@ -173,6 +173,11 @@ parsed as 64 bit signed integer. The sum of data length in the
following DATA frames must match with the number in "Content-Length"
header field if it is present (this does not include padding bytes).
RFC 7230 says that server must not send "Content-Length" in any
response with 1xx, and 204 status code. It also says that
"Content-Length" is not allowed in any response with 200 status code
to a CONNECT request. nghttp2 enforces them as well.
Any deviation results in stream error of type PROTOCOL_ERROR. If
error is found in PUSH_PROMISE frame, stream error is raised against
promised stream.
...
...
lib/nghttp2_http.c
View file @
6bd95d88
...
...
@@ -250,6 +250,11 @@ static int http_response_on_header(nghttp2_stream *stream, nghttp2_hd_nv *nv,
break
;
}
case
NGHTTP2_TOKEN_CONTENT_LENGTH
:
{
if
(
stream
->
status_code
==
204
||
stream
->
status_code
/
100
==
1
||
(
stream
->
status_code
==
200
&&
(
stream
->
http_flags
&
NGHTTP2_HTTP_FLAG_METH_CONNECT
)))
{
return
NGHTTP2_ERR_HTTP_HEADER
;
}
if
(
stream
->
content_length
!=
-
1
)
{
return
NGHTTP2_ERR_HTTP_HEADER
;
}
...
...
src/shrpx_http_downstream_connection.cc
View file @
6bd95d88
...
...
@@ -701,6 +701,18 @@ int htp_hdrs_completecb(http_parser *htp) {
downstream
->
set_downstream_addr_group
(
dconn
->
get_downstream_addr_group
());
downstream
->
set_addr
(
dconn
->
get_addr
());
// Server MUST NOT send Transfer-Encoding with a status code 1xx or
// 204. Also server MUST NOT send Transfer-Encoding with a status
// code 200 to a CONNECT request. Same holds true with
// Content-Length.
if
(
resp
.
http_status
==
204
||
resp
.
http_status
/
100
==
1
||
(
resp
.
http_status
==
200
&&
req
.
method
==
HTTP_CONNECT
))
{
if
(
resp
.
fs
.
header
(
http2
::
HD_CONTENT_LENGTH
)
||
resp
.
fs
.
header
(
http2
::
HD_TRANSFER_ENCODING
))
{
return
-
1
;
}
}
if
(
resp
.
fs
.
parse_content_length
()
!=
0
)
{
downstream
->
set_response_state
(
Downstream
::
MSG_BAD_HEADER
);
return
-
1
;
...
...
src/shrpx_mruby_module_response.cc
View file @
6bd95d88
...
...
@@ -201,6 +201,7 @@ namespace {
mrb_value
response_return
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
auto
&
req
=
downstream
->
request
();
auto
&
resp
=
downstream
->
response
();
int
rv
;
...
...
@@ -226,16 +227,28 @@ mrb_value response_return(mrb_state *mrb, mrb_value self) {
bodylen
=
vallen
;
}
auto
content_length
=
util
::
make_string_ref_uint
(
balloc
,
bodylen
);
auto
cl
=
resp
.
fs
.
header
(
http2
::
HD_CONTENT_LENGTH
);
if
(
resp
.
http_status
==
204
||
(
resp
.
http_status
==
200
&&
req
.
method
==
HTTP_CONNECT
))
{
if
(
cl
)
{
// Delete content-length here
cl
->
name
=
StringRef
{};
}
resp
.
fs
.
content_length
=
-
1
;
}
else
{
auto
content_length
=
util
::
make_string_ref_uint
(
balloc
,
vallen
);
if
(
cl
)
{
cl
->
value
=
content_length
;
}
else
{
resp
.
fs
.
add_header_token
(
StringRef
::
from_lit
(
"content-length"
),
content_length
,
false
,
http2
::
HD_CONTENT_LENGTH
);
}
resp
.
fs
.
content_length
=
bodylen
;
resp
.
fs
.
content_length
=
vallen
;
}
auto
date
=
resp
.
fs
.
header
(
http2
::
HD_DATE
);
if
(
!
date
)
{
...
...
tests/nghttp2_session_test.c
View file @
6bd95d88
...
...
@@ -10200,6 +10200,10 @@ void test_nghttp2_http_mandatory_headers(void) {
MAKE_NV
(
"content-length"
,
"0"
)};
const
nghttp2_nv
badhd_resnv
[]
=
{
MAKE_NV
(
":status"
,
"200"
),
MAKE_NV
(
"connection"
,
"close"
)};
const
nghttp2_nv
cl1xx_resnv
[]
=
{
MAKE_NV
(
":status"
,
"100"
),
MAKE_NV
(
"content-length"
,
"0"
)};
const
nghttp2_nv
cl204_resnv
[]
=
{
MAKE_NV
(
":status"
,
"204"
),
MAKE_NV
(
"content-length"
,
"0"
)};
/* test case for request */
const
nghttp2_nv
nopath_reqnv
[]
=
{
MAKE_NV
(
":scheme"
,
"https"
),
...
...
@@ -10298,6 +10302,16 @@ void test_nghttp2_http_mandatory_headers(void) {
NGHTTP2_STREAM_OPENING
,
badhd_resnv
,
ARRLEN
(
badhd_resnv
));
/* response header has content-length with 100 status code */
check_nghttp2_http_recv_headers_fail
(
session
,
&
deflater
,
17
,
NGHTTP2_STREAM_OPENING
,
cl1xx_resnv
,
ARRLEN
(
cl1xx_resnv
));
/* response header has content-length with 204 status code */
check_nghttp2_http_recv_headers_fail
(
session
,
&
deflater
,
19
,
NGHTTP2_STREAM_OPENING
,
cl204_resnv
,
ARRLEN
(
cl204_resnv
));
nghttp2_hd_deflate_free
(
&
deflater
);
nghttp2_session_del
(
session
);
...
...
@@ -11001,6 +11015,7 @@ void test_nghttp2_http_record_request_method(void) {
nghttp2_bufs
bufs
;
nghttp2_hd_deflater
deflater
;
nghttp2_mem
*
mem
;
nghttp2_outbound_item
*
item
;
mem
=
nghttp2_mem_default
();
frame_pack_bufs_init
(
&
bufs
);
...
...
@@ -11033,6 +11048,14 @@ void test_nghttp2_http_record_request_method(void) {
CU_ASSERT
((
NGHTTP2_HTTP_FLAG_METH_CONNECT
&
stream
->
http_flags
)
>
0
);
CU_ASSERT
(
-
1
==
stream
->
content_length
);
/* content-length is now allowed in 200 response to a CONNECT
request */
item
=
nghttp2_session_get_next_ob_item
(
session
);
CU_ASSERT
(
NULL
!=
item
);
CU_ASSERT
(
NGHTTP2_RST_STREAM
==
item
->
frame
.
hd
.
type
);
CU_ASSERT
(
NGHTTP2_PROTOCOL_ERROR
==
item
->
frame
.
rst_stream
.
error_code
);
nghttp2_hd_deflate_free
(
&
deflater
);
nghttp2_session_del
(
session
);
nghttp2_bufs_free
(
&
bufs
);
...
...
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