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
17032010
Commit
17032010
authored
Feb 20, 2016
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Get rid of hdidx
parent
7921029e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
51 additions
and
49 deletions
+51
-49
src/shrpx_downstream.cc
src/shrpx_downstream.cc
+41
-40
src/shrpx_downstream.h
src/shrpx_downstream.h
+2
-4
src/shrpx_http_downstream_connection.cc
src/shrpx_http_downstream_connection.cc
+2
-2
src/shrpx_https_upstream.cc
src/shrpx_https_upstream.cc
+2
-2
src/shrpx_spdy_upstream.cc
src/shrpx_spdy_upstream.cc
+4
-1
No files found.
src/shrpx_downstream.cc
View file @
17032010
...
...
@@ -237,15 +237,15 @@ void Downstream::force_resume_read() {
}
namespace
{
const
Headers
::
value_type
*
search_header_linear
(
const
Headers
&
headers
,
const
StringRef
&
name
)
{
const
Headers
::
value_type
*
res
=
nullptr
;
for
(
auto
&
kv
:
headers
)
{
const
Headers
::
value_type
*
search_header_linear_backwards
(
const
Headers
&
headers
,
const
StringRef
&
name
)
{
for
(
auto
it
=
headers
.
rbegin
();
it
!=
headers
.
rend
();
++
it
)
{
auto
&
kv
=
*
it
;
if
(
kv
.
name
==
name
)
{
re
s
=
&
kv
;
re
turn
&
kv
;
}
}
return
res
;
return
nullptr
;
}
}
// namespace
...
...
@@ -330,10 +330,10 @@ void Downstream::crumble_request_cookie(std::vector<nghttp2_nv> &nva) {
namespace
{
void
add_header
(
bool
&
key_prev
,
size_t
&
sum
,
Headers
&
headers
,
std
::
string
name
,
std
::
string
value
)
{
std
::
string
value
,
int16_t
token
=
-
1
)
{
key_prev
=
true
;
sum
+=
name
.
size
()
+
value
.
size
();
headers
.
emplace_back
(
std
::
move
(
name
),
std
::
move
(
value
));
headers
.
emplace_back
(
std
::
move
(
name
),
std
::
move
(
value
)
,
false
,
token
);
}
}
// namespace
...
...
@@ -356,6 +356,8 @@ void append_last_header_key(bool &key_prev, size_t &sum, Headers &headers,
sum
+=
len
;
auto
&
item
=
headers
.
back
();
item
.
name
.
append
(
data
,
len
);
util
::
inp_strlower
(
item
.
name
);
item
.
token
=
http2
::
lookup_token
(
item
.
name
);
}
}
// namespace
...
...
@@ -370,56 +372,58 @@ void append_last_header_value(bool &key_prev, size_t &sum, Headers &headers,
}
// namespace
int
FieldStore
::
index_headers
()
{
http2
::
init_hdidx
(
hdidx_
);
content_length
=
-
1
;
for
(
size_t
i
=
0
;
i
<
headers_
.
size
();
++
i
)
{
auto
&
kv
=
headers_
[
i
];
util
::
inp_strlower
(
kv
.
name
);
auto
token
=
http2
::
lookup_token
(
reinterpret_cast
<
const
uint8_t
*>
(
kv
.
name
.
c_str
()),
kv
.
name
.
size
());
if
(
token
<
0
)
{
for
(
auto
&
kv
:
headers_
)
{
if
(
kv
.
token
!=
http2
::
HD_CONTENT_LENGTH
)
{
continue
;
}
kv
.
token
=
token
;
http2
::
index_header
(
hdidx_
,
token
,
i
);
if
(
token
==
http2
::
HD_CONTENT_LENGTH
)
{
auto
len
=
util
::
parse_uint
(
kv
.
value
);
if
(
len
==
-
1
)
{
return
-
1
;
}
if
(
content_length
!=
-
1
)
{
return
-
1
;
}
content_length
=
len
;
auto
len
=
util
::
parse_uint
(
kv
.
value
);
if
(
len
==
-
1
)
{
return
-
1
;
}
if
(
content_length
!=
-
1
)
{
return
-
1
;
}
content_length
=
len
;
}
return
0
;
}
const
Headers
::
value_type
*
FieldStore
::
header
(
int16_t
token
)
const
{
return
http2
::
get_header
(
hdidx_
,
token
,
headers_
);
for
(
auto
it
=
headers_
.
rbegin
();
it
!=
headers_
.
rend
();
++
it
)
{
auto
&
kv
=
*
it
;
if
(
kv
.
token
==
token
)
{
return
&
kv
;
}
}
return
nullptr
;
}
Headers
::
value_type
*
FieldStore
::
header
(
int16_t
token
)
{
return
http2
::
get_header
(
hdidx_
,
token
,
headers_
);
for
(
auto
it
=
headers_
.
rbegin
();
it
!=
headers_
.
rend
();
++
it
)
{
auto
&
kv
=
*
it
;
if
(
kv
.
token
==
token
)
{
return
&
kv
;
}
}
return
nullptr
;
}
const
Headers
::
value_type
*
FieldStore
::
header
(
const
StringRef
&
name
)
const
{
return
search_header_linear
(
headers_
,
name
);
return
search_header_linear
_backwards
(
headers_
,
name
);
}
void
FieldStore
::
add_header
(
std
::
string
name
,
std
::
string
value
)
{
void
FieldStore
::
add_header_lower
(
std
::
string
name
,
std
::
string
value
)
{
util
::
inp_strlower
(
name
);
auto
token
=
http2
::
lookup_token
(
name
);
shrpx
::
add_header
(
header_key_prev_
,
buffer_size_
,
headers_
,
std
::
move
(
name
),
std
::
move
(
value
));
std
::
move
(
value
)
,
token
);
}
void
FieldStore
::
add_header
(
std
::
string
name
,
std
::
string
value
,
int16_t
token
)
{
http2
::
index_header
(
hdidx_
,
token
,
headers_
.
size
());
buffer_size_
+=
name
.
size
()
+
value
.
size
();
headers_
.
emplace_back
(
std
::
move
(
name
),
std
::
move
(
value
),
false
,
token
);
}
...
...
@@ -427,7 +431,6 @@ void FieldStore::add_header(std::string name, std::string value,
void
FieldStore
::
add_header
(
const
uint8_t
*
name
,
size_t
namelen
,
const
uint8_t
*
value
,
size_t
valuelen
,
bool
no_index
,
int16_t
token
)
{
http2
::
index_header
(
hdidx_
,
token
,
headers_
.
size
());
shrpx
::
add_header
(
buffer_size_
,
headers_
,
name
,
namelen
,
value
,
valuelen
,
no_index
,
token
);
}
...
...
@@ -442,10 +445,7 @@ void FieldStore::append_last_header_value(const char *data, size_t len) {
data
,
len
);
}
void
FieldStore
::
clear_headers
()
{
headers_
.
clear
();
http2
::
init_hdidx
(
hdidx_
);
}
void
FieldStore
::
clear_headers
()
{
headers_
.
clear
();
}
void
FieldStore
::
add_trailer
(
const
uint8_t
*
name
,
size_t
namelen
,
const
uint8_t
*
value
,
size_t
valuelen
,
...
...
@@ -456,7 +456,8 @@ void FieldStore::add_trailer(const uint8_t *name, size_t namelen,
no_index
,
-
1
);
}
void
FieldStore
::
add_trailer
(
std
::
string
name
,
std
::
string
value
)
{
void
FieldStore
::
add_trailer_lower
(
std
::
string
name
,
std
::
string
value
)
{
util
::
inp_strlower
(
name
);
shrpx
::
add_header
(
trailer_key_prev_
,
buffer_size_
,
trailers_
,
std
::
move
(
name
),
std
::
move
(
value
));
}
...
...
src/shrpx_downstream.h
View file @
17032010
...
...
@@ -56,7 +56,6 @@ public:
buffer_size_
(
0
),
header_key_prev_
(
false
),
trailer_key_prev_
(
false
)
{
http2
::
init_hdidx
(
hdidx_
);
headers_
.
reserve
(
headers_initial_capacity
);
}
...
...
@@ -80,7 +79,7 @@ public:
// such header is found, returns nullptr.
const
Headers
::
value_type
*
header
(
const
StringRef
&
name
)
const
;
void
add_header
(
std
::
string
name
,
std
::
string
value
);
void
add_header
_lower
(
std
::
string
name
,
std
::
string
value
);
void
add_header
(
std
::
string
name
,
std
::
string
value
,
int16_t
token
);
void
add_header
(
const
uint8_t
*
name
,
size_t
namelen
,
const
uint8_t
*
value
,
size_t
valuelen
,
bool
no_index
,
int16_t
token
);
...
...
@@ -100,7 +99,7 @@ public:
void
add_trailer
(
const
uint8_t
*
name
,
size_t
namelen
,
const
uint8_t
*
value
,
size_t
valuelen
,
bool
no_index
,
int16_t
token
);
void
add_trailer
(
std
::
string
name
,
std
::
string
value
);
void
add_trailer
_lower
(
std
::
string
name
,
std
::
string
value
);
void
append_last_trailer_key
(
const
char
*
data
,
size_t
len
);
void
append_last_trailer_value
(
const
char
*
data
,
size_t
len
);
...
...
@@ -115,7 +114,6 @@ private:
// trailer fields. For HTTP/1.1, trailer fields are only included
// with chunked encoding. For HTTP/2, there is no such limit.
Headers
trailers_
;
http2
::
HeaderIndex
hdidx_
;
// Sum of the length of name and value in headers_ and trailers_.
// This could also be increased by add_extra_buffer_size() to take
// into account for request URI in case of HTTP/1.x request.
...
...
src/shrpx_http_downstream_connection.cc
View file @
17032010
...
...
@@ -691,7 +691,7 @@ int htp_hdr_keycb(http_parser *htp, const char *data, size_t len) {
if
(
ensure_max_header_fields
(
downstream
,
httpconf
)
!=
0
)
{
return
-
1
;
}
resp
.
fs
.
add_header
(
std
::
string
(
data
,
len
),
""
);
resp
.
fs
.
add_header
_lower
(
std
::
string
(
data
,
len
),
""
);
}
}
else
{
// trailer part
...
...
@@ -704,7 +704,7 @@ int htp_hdr_keycb(http_parser *htp, const char *data, size_t len) {
// wrong place or crash if trailer fields are currently empty.
return
-
1
;
}
resp
.
fs
.
add_trailer
(
std
::
string
(
data
,
len
),
""
);
resp
.
fs
.
add_trailer
_lower
(
std
::
string
(
data
,
len
),
""
);
}
}
return
0
;
...
...
src/shrpx_https_upstream.cc
View file @
17032010
...
...
@@ -142,7 +142,7 @@ int htp_hdr_keycb(http_parser *htp, const char *data, size_t len) {
Downstream
::
HTTP1_REQUEST_HEADER_TOO_LARGE
);
return
-
1
;
}
req
.
fs
.
add_header
(
std
::
string
(
data
,
len
),
""
);
req
.
fs
.
add_header
_lower
(
std
::
string
(
data
,
len
),
""
);
}
}
else
{
// trailer part
...
...
@@ -156,7 +156,7 @@ int htp_hdr_keycb(http_parser *htp, const char *data, size_t len) {
}
return
-
1
;
}
req
.
fs
.
add_trailer
(
std
::
string
(
data
,
len
),
""
);
req
.
fs
.
add_trailer
_lower
(
std
::
string
(
data
,
len
),
""
);
}
}
return
0
;
...
...
src/shrpx_spdy_upstream.cc
View file @
17032010
...
...
@@ -188,7 +188,10 @@ void on_ctrl_recv_callback(spdylay_session *session, spdylay_frame_type type,
}
for
(
size_t
i
=
0
;
nv
[
i
];
i
+=
2
)
{
req
.
fs
.
add_header
(
nv
[
i
],
nv
[
i
+
1
]);
auto
name
=
std
::
string
(
nv
[
i
]);
auto
value
=
std
::
string
(
nv
[
i
+
1
]);
auto
token
=
http2
::
lookup_token
(
name
);
req
.
fs
.
add_header
(
std
::
move
(
name
),
std
::
move
(
value
),
token
);
}
if
(
req
.
fs
.
index_headers
()
!=
0
)
{
...
...
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