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
acb38b72
Commit
acb38b72
authored
Jan 19, 2016
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Don't quote Forwarded params if it is not required
parent
f4412877
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
19 deletions
+42
-19
integration-tests/nghttpx_http2_test.go
integration-tests/nghttpx_http2_test.go
+11
-11
src/Makefile.am
src/Makefile.am
+1
-0
src/shrpx-unittest.cc
src/shrpx-unittest.cc
+3
-0
src/shrpx_http.cc
src/shrpx_http.cc
+27
-8
No files found.
integration-tests/nghttpx_http2_test.go
View file @
acb38b72
...
@@ -140,7 +140,7 @@ func TestH2H1StripAddXff(t *testing.T) {
...
@@ -140,7 +140,7 @@ func TestH2H1StripAddXff(t *testing.T) {
// Forwarded header field with obfuscated "by" and "for" parameters.
// Forwarded header field with obfuscated "by" and "for" parameters.
func
TestH2H1AddForwardedObfuscated
(
t
*
testing
.
T
)
{
func
TestH2H1AddForwardedObfuscated
(
t
*
testing
.
T
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=by,for,host,proto"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=by,for,host,proto"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
pattern
:=
fmt
.
Sprintf
(
`by=
"_[^"]+";for="_[^"]+";host="127.0.0.1:%v";proto="http"
`
,
serverPort
)
pattern
:=
fmt
.
Sprintf
(
`by=
_[^;]+;for=_[^;]+;host="127.0.0.1:%v";proto=http
`
,
serverPort
)
validFwd
:=
regexp
.
MustCompile
(
pattern
)
validFwd
:=
regexp
.
MustCompile
(
pattern
)
got
:=
r
.
Header
.
Get
(
"Forwarded"
)
got
:=
r
.
Header
.
Get
(
"Forwarded"
)
...
@@ -165,7 +165,7 @@ func TestH2H1AddForwardedObfuscated(t *testing.T) {
...
@@ -165,7 +165,7 @@ func TestH2H1AddForwardedObfuscated(t *testing.T) {
// field with IP address in "by" parameter.
// field with IP address in "by" parameter.
func
TestH2H1AddForwardedByIP
(
t
*
testing
.
T
)
{
func
TestH2H1AddForwardedByIP
(
t
*
testing
.
T
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=ip"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=ip"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
want
:=
fmt
.
Sprintf
(
`by="127.0.0.1:%v";for=
"_bravo";host="127.0.0.1:%v";proto="http"
`
,
serverPort
,
serverPort
)
want
:=
fmt
.
Sprintf
(
`by="127.0.0.1:%v";for=
_bravo;host="127.0.0.1:%v";proto=http
`
,
serverPort
,
serverPort
)
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
}
}
...
@@ -187,7 +187,7 @@ func TestH2H1AddForwardedByIP(t *testing.T) {
...
@@ -187,7 +187,7 @@ func TestH2H1AddForwardedByIP(t *testing.T) {
// field with IP address in "for" parameters.
// field with IP address in "for" parameters.
func
TestH2H1AddForwardedForIP
(
t
*
testing
.
T
)
{
func
TestH2H1AddForwardedForIP
(
t
*
testing
.
T
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=ip"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=ip"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
want
:=
fmt
.
Sprintf
(
`by=
"_alpha";for="127.0.0.1";host="127.0.0.1:%v";proto="http"
`
,
serverPort
)
want
:=
fmt
.
Sprintf
(
`by=
_alpha;for=127.0.0.1;host="127.0.0.1:%v";proto=http
`
,
serverPort
)
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
}
}
...
@@ -210,7 +210,7 @@ func TestH2H1AddForwardedForIP(t *testing.T) {
...
@@ -210,7 +210,7 @@ func TestH2H1AddForwardedForIP(t *testing.T) {
// generated values must be appended to the existing value.
// generated values must be appended to the existing value.
func
TestH2H1AddForwardedMerge
(
t
*
testing
.
T
)
{
func
TestH2H1AddForwardedMerge
(
t
*
testing
.
T
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=proto"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=proto"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
if
got
,
want
:=
r
.
Header
.
Get
(
"Forwarded"
),
`host=foo, proto=
"http"
`
;
got
!=
want
{
if
got
,
want
:=
r
.
Header
.
Get
(
"Forwarded"
),
`host=foo, proto=
http
`
;
got
!=
want
{
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
}
}
})
})
...
@@ -235,7 +235,7 @@ func TestH2H1AddForwardedMerge(t *testing.T) {
...
@@ -235,7 +235,7 @@ func TestH2H1AddForwardedMerge(t *testing.T) {
// generated values must not include the existing value.
// generated values must not include the existing value.
func
TestH2H1AddForwardedStrip
(
t
*
testing
.
T
)
{
func
TestH2H1AddForwardedStrip
(
t
*
testing
.
T
)
{
st
:=
newServerTester
([]
string
{
"--strip-incoming-forwarded"
,
"--add-forwarded=proto"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
st
:=
newServerTester
([]
string
{
"--strip-incoming-forwarded"
,
"--add-forwarded=proto"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
if
got
,
want
:=
r
.
Header
.
Get
(
"Forwarded"
),
`proto=
"http"
`
;
got
!=
want
{
if
got
,
want
:=
r
.
Header
.
Get
(
"Forwarded"
),
`proto=
http
`
;
got
!=
want
{
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
}
}
})
})
...
@@ -284,7 +284,7 @@ func TestH2H1StripForwarded(t *testing.T) {
...
@@ -284,7 +284,7 @@ func TestH2H1StripForwarded(t *testing.T) {
// "for" parameters.
// "for" parameters.
func
TestH2H1AddForwardedStatic
(
t
*
testing
.
T
)
{
func
TestH2H1AddForwardedStatic
(
t
*
testing
.
T
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=by,for"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
st
:=
newServerTester
([]
string
{
"--add-forwarded=by,for"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
if
got
,
want
:=
r
.
Header
.
Get
(
"Forwarded"
),
`by=
"_alpha";for="_bravo"
`
;
got
!=
want
{
if
got
,
want
:=
r
.
Header
.
Get
(
"Forwarded"
),
`by=
_alpha;for=_bravo
`
;
got
!=
want
{
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
}
}
})
})
...
@@ -615,7 +615,7 @@ func TestH2H1BadAuthority(t *testing.T) {
...
@@ -615,7 +615,7 @@ func TestH2H1BadAuthority(t *testing.T) {
defer
st
.
Close
()
defer
st
.
Close
()
res
,
err
:=
st
.
http2
(
requestParam
{
res
,
err
:=
st
.
http2
(
requestParam
{
name
:
"TestH2H1BadAuthority"
,
name
:
"TestH2H1BadAuthority"
,
authority
:
`foo\bar`
,
authority
:
`foo\bar`
,
})
})
if
err
!=
nil
{
if
err
!=
nil
{
...
@@ -635,7 +635,7 @@ func TestH2H1BadScheme(t *testing.T) {
...
@@ -635,7 +635,7 @@ func TestH2H1BadScheme(t *testing.T) {
defer
st
.
Close
()
defer
st
.
Close
()
res
,
err
:=
st
.
http2
(
requestParam
{
res
,
err
:=
st
.
http2
(
requestParam
{
name
:
"TestH2H1BadScheme"
,
name
:
"TestH2H1BadScheme"
,
scheme
:
"http*"
,
scheme
:
"http*"
,
})
})
if
err
!=
nil
{
if
err
!=
nil
{
...
@@ -1672,7 +1672,7 @@ func TestH2H2StripAddXff(t *testing.T) {
...
@@ -1672,7 +1672,7 @@ func TestH2H2StripAddXff(t *testing.T) {
// field using static obfuscated "by" and "for" parameter.
// field using static obfuscated "by" and "for" parameter.
func
TestH2H2AddForwarded
(
t
*
testing
.
T
)
{
func
TestH2H2AddForwarded
(
t
*
testing
.
T
)
{
st
:=
newServerTesterTLS
([]
string
{
"--http2-bridge"
,
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
st
:=
newServerTesterTLS
([]
string
{
"--http2-bridge"
,
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
want
:=
fmt
.
Sprintf
(
`by=
"_alpha";for="_bravo";host="127.0.0.1:%v";proto="https"
`
,
serverPort
)
want
:=
fmt
.
Sprintf
(
`by=
_alpha;for=_bravo;host="127.0.0.1:%v";proto=https
`
,
serverPort
)
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
}
}
...
@@ -1696,7 +1696,7 @@ func TestH2H2AddForwarded(t *testing.T) {
...
@@ -1696,7 +1696,7 @@ func TestH2H2AddForwarded(t *testing.T) {
// existing Forwarded header field.
// existing Forwarded header field.
func
TestH2H2AddForwardedMerge
(
t
*
testing
.
T
)
{
func
TestH2H2AddForwardedMerge
(
t
*
testing
.
T
)
{
st
:=
newServerTesterTLS
([]
string
{
"--http2-bridge"
,
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
st
:=
newServerTesterTLS
([]
string
{
"--http2-bridge"
,
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
want
:=
fmt
.
Sprintf
(
`host=foo, by=
"_alpha";for="_bravo";host="127.0.0.1:%v";proto="https"
`
,
serverPort
)
want
:=
fmt
.
Sprintf
(
`host=foo, by=
_alpha;for=_bravo;host="127.0.0.1:%v";proto=https
`
,
serverPort
)
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
}
}
...
@@ -1723,7 +1723,7 @@ func TestH2H2AddForwardedMerge(t *testing.T) {
...
@@ -1723,7 +1723,7 @@ func TestH2H2AddForwardedMerge(t *testing.T) {
// existing Forwarded header field stripped.
// existing Forwarded header field stripped.
func
TestH2H2AddForwardedStrip
(
t
*
testing
.
T
)
{
func
TestH2H2AddForwardedStrip
(
t
*
testing
.
T
)
{
st
:=
newServerTesterTLS
([]
string
{
"--http2-bridge"
,
"--strip-incoming-forwarded"
,
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
st
:=
newServerTesterTLS
([]
string
{
"--http2-bridge"
,
"--strip-incoming-forwarded"
,
"--add-forwarded=by,for,host,proto"
,
"--forwarded-by=_alpha"
,
"--forwarded-for=_bravo"
},
t
,
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
want
:=
fmt
.
Sprintf
(
`by=
"_alpha";for="_bravo";host="127.0.0.1:%v";proto="https"
`
,
serverPort
)
want
:=
fmt
.
Sprintf
(
`by=
_alpha;for=_bravo;host="127.0.0.1:%v";proto=https
`
,
serverPort
)
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
if
got
:=
r
.
Header
.
Get
(
"Forwarded"
);
got
!=
want
{
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
t
.
Errorf
(
"Forwarded = %v; want %v"
,
got
,
want
)
}
}
...
...
src/Makefile.am
View file @
acb38b72
...
@@ -169,6 +169,7 @@ nghttpx_unittest_SOURCES = shrpx-unittest.cc \
...
@@ -169,6 +169,7 @@ nghttpx_unittest_SOURCES = shrpx-unittest.cc \
shrpx_ssl_test.cc shrpx_ssl_test.h
\
shrpx_ssl_test.cc shrpx_ssl_test.h
\
shrpx_downstream_test.cc shrpx_downstream_test.h
\
shrpx_downstream_test.cc shrpx_downstream_test.h
\
shrpx_config_test.cc shrpx_config_test.h
\
shrpx_config_test.cc shrpx_config_test.h
\
shrpx_http_test.cc shrpx_http_test.h
\
http2_test.cc http2_test.h
\
http2_test.cc http2_test.h
\
util_test.cc util_test.h
\
util_test.cc util_test.h
\
nghttp2_gzip_test.c nghttp2_gzip_test.h
\
nghttp2_gzip_test.c nghttp2_gzip_test.h
\
...
...
src/shrpx-unittest.cc
View file @
acb38b72
...
@@ -39,6 +39,7 @@
...
@@ -39,6 +39,7 @@
#include "buffer_test.h"
#include "buffer_test.h"
#include "memchunk_test.h"
#include "memchunk_test.h"
#include "template_test.h"
#include "template_test.h"
#include "shrpx_http_test.h"
#include "shrpx_config.h"
#include "shrpx_config.h"
#include "ssl.h"
#include "ssl.h"
...
@@ -124,6 +125,8 @@ int main(int argc, char *argv[]) {
...
@@ -124,6 +125,8 @@ int main(int argc, char *argv[]) {
shrpx
::
test_shrpx_config_read_tls_ticket_key_file_aes_256
)
||
shrpx
::
test_shrpx_config_read_tls_ticket_key_file_aes_256
)
||
!
CU_add_test
(
pSuite
,
"config_match_downstream_addr_group"
,
!
CU_add_test
(
pSuite
,
"config_match_downstream_addr_group"
,
shrpx
::
test_shrpx_config_match_downstream_addr_group
)
||
shrpx
::
test_shrpx_config_match_downstream_addr_group
)
||
!
CU_add_test
(
pSuite
,
"http_create_forwarded"
,
shrpx
::
test_shrpx_http_create_forwarded
)
||
!
CU_add_test
(
pSuite
,
"util_streq"
,
shrpx
::
test_util_streq
)
||
!
CU_add_test
(
pSuite
,
"util_streq"
,
shrpx
::
test_util_streq
)
||
!
CU_add_test
(
pSuite
,
"util_strieq"
,
shrpx
::
test_util_strieq
)
||
!
CU_add_test
(
pSuite
,
"util_strieq"
,
shrpx
::
test_util_strieq
)
||
!
CU_add_test
(
pSuite
,
"util_inp_strlower"
,
!
CU_add_test
(
pSuite
,
"util_inp_strlower"
,
...
...
src/shrpx_http.cc
View file @
acb38b72
...
@@ -69,24 +69,43 @@ std::string create_forwarded(int params, const std::string &node_by,
...
@@ -69,24 +69,43 @@ std::string create_forwarded(int params, const std::string &node_by,
const
std
::
string
&
proto
)
{
const
std
::
string
&
proto
)
{
std
::
string
res
;
std
::
string
res
;
if
((
params
&
FORWARDED_BY
)
&&
!
node_by
.
empty
())
{
if
((
params
&
FORWARDED_BY
)
&&
!
node_by
.
empty
())
{
res
+=
"by=
\"
"
;
// This must be quoted-string unless it is obfuscated version
res
+=
node_by
;
// (which starts with "_"), since ':' is not allowed in token.
res
+=
"
\"
;"
;
// ':' is used to separate host and port.
if
(
node_by
[
0
]
==
'_'
)
{
res
+=
"by="
;
res
+=
node_by
;
res
+=
";"
;
}
else
{
res
+=
"by=
\"
"
;
res
+=
node_by
;
res
+=
"
\"
;"
;
}
}
}
if
((
params
&
FORWARDED_FOR
)
&&
!
node_for
.
empty
())
{
if
((
params
&
FORWARDED_FOR
)
&&
!
node_for
.
empty
())
{
res
+=
"for=
\"
"
;
// We only quote IPv6 literal address only, which starts with '['.
res
+=
node_for
;
if
(
node_for
[
0
]
==
'['
)
{
res
+=
"
\"
;"
;
res
+=
"for=
\"
"
;
res
+=
node_for
;
res
+=
"
\"
;"
;
}
else
{
res
+=
"for="
;
res
+=
node_for
;
res
+=
";"
;
}
}
}
if
((
params
&
FORWARDED_HOST
)
&&
!
host
.
empty
())
{
if
((
params
&
FORWARDED_HOST
)
&&
!
host
.
empty
())
{
// Just be quoted to skip checking characters.
res
+=
"host=
\"
"
;
res
+=
"host=
\"
"
;
res
+=
host
;
res
+=
host
;
res
+=
"
\"
;"
;
res
+=
"
\"
;"
;
}
}
if
((
params
&
FORWARDED_PROTO
)
&&
!
proto
.
empty
())
{
if
((
params
&
FORWARDED_PROTO
)
&&
!
proto
.
empty
())
{
res
+=
"proto=
\"
"
;
// Scheme production rule only allow characters which are all in
// token.
res
+=
"proto="
;
res
+=
proto
;
res
+=
proto
;
res
+=
"
\"
;"
;
res
+=
";"
;
}
}
if
(
res
.
empty
())
{
if
(
res
.
empty
())
{
...
...
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