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
9aed11e3
Commit
9aed11e3
authored
Oct 27, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'LPardue-master'
parents
c6cfcc3c
9ea4905f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
4 deletions
+26
-4
src/shrpx.cc
src/shrpx.cc
+9
-0
src/shrpx_config.cc
src/shrpx_config.cc
+7
-0
src/shrpx_config.h
src/shrpx_config.h
+2
-0
src/shrpx_http2_downstream_connection.cc
src/shrpx_http2_downstream_connection.cc
+4
-2
src/shrpx_http_downstream_connection.cc
src/shrpx_http_downstream_connection.cc
+4
-2
No files found.
src/shrpx.cc
View file @
9aed11e3
...
...
@@ -750,6 +750,7 @@ void fill_default_config()
mod_config
()
->
num_worker
=
1
;
mod_config
()
->
http2_max_concurrent_streams
=
100
;
mod_config
()
->
add_x_forwarded_for
=
false
;
mod_config
()
->
strip_incoming_x_forwarded_for
=
false
;
mod_config
()
->
no_via
=
false
;
mod_config
()
->
accesslog_file
=
nullptr
;
mod_config
()
->
accesslog_syslog
=
false
;
...
...
@@ -1156,6 +1157,9 @@ Misc:
--add-x-forwarded-for
Append X-Forwarded-For header field to the
downstream request.
--strip-incoming-x-forwarded-for
Strip X-Forwarded-For header field from inbound
client requests.
--no-via Don't append to Via header field. If Via header
field is received, it is left unaltered.
--no-location-rewrite
...
...
@@ -1308,6 +1312,7 @@ int main(int argc, char **argv)
{
"no-location-rewrite"
,
no_argument
,
&
flag
,
62
},
{
"backend-connections-per-frontend"
,
required_argument
,
&
flag
,
63
},
{
"listener-disable-timeout"
,
required_argument
,
&
flag
,
64
},
{
"strip-incoming-x-forwarded-for"
,
no_argument
,
&
flag
,
65
},
{
nullptr
,
0
,
nullptr
,
0
}
};
...
...
@@ -1605,6 +1610,10 @@ int main(int argc, char **argv)
// --listener-disable-timeout
cmdcfgs
.
emplace_back
(
SHRPX_OPT_LISTENER_DISABLE_TIMEOUT
,
optarg
);
break
;
case
65
:
// --strip-incoming-x-forwarded-for
cmdcfgs
.
emplace_back
(
SHRPX_OPT_STRIP_INCOMING_X_FORWARDED_FOR
,
"yes"
);
break
;
default:
break
;
}
...
...
src/shrpx_config.cc
View file @
9aed11e3
...
...
@@ -67,6 +67,7 @@ const char SHRPX_OPT_HTTP2_PROXY[] = "http2-proxy";
const
char
SHRPX_OPT_HTTP2_BRIDGE
[]
=
"http2-bridge"
;
const
char
SHRPX_OPT_CLIENT_PROXY
[]
=
"client-proxy"
;
const
char
SHRPX_OPT_ADD_X_FORWARDED_FOR
[]
=
"add-x-forwarded-for"
;
const
char
SHRPX_OPT_STRIP_INCOMING_X_FORWARDED_FOR
[]
=
"strip-incoming-x-forwarded-for"
;
const
char
SHRPX_OPT_NO_VIA
[]
=
"no-via"
;
const
char
SHRPX_OPT_FRONTEND_HTTP2_READ_TIMEOUT
[]
=
"frontend-http2-read-timeout"
;
...
...
@@ -425,6 +426,12 @@ int parse_config(const char *opt, const char *optarg)
return
0
;
}
if
(
util
::
strieq
(
opt
,
SHRPX_OPT_STRIP_INCOMING_X_FORWARDED_FOR
))
{
mod_config
()
->
strip_incoming_x_forwarded_for
=
util
::
strieq
(
optarg
,
"yes"
);
return
0
;
}
if
(
util
::
strieq
(
opt
,
SHRPX_OPT_NO_VIA
))
{
mod_config
()
->
no_via
=
util
::
strieq
(
optarg
,
"yes"
);
...
...
src/shrpx_config.h
View file @
9aed11e3
...
...
@@ -65,6 +65,7 @@ extern const char SHRPX_OPT_HTTP2_PROXY[];
extern
const
char
SHRPX_OPT_HTTP2_BRIDGE
[];
extern
const
char
SHRPX_OPT_CLIENT_PROXY
[];
extern
const
char
SHRPX_OPT_ADD_X_FORWARDED_FOR
[];
extern
const
char
SHRPX_OPT_STRIP_INCOMING_X_FORWARDED_FOR
[];
extern
const
char
SHRPX_OPT_NO_VIA
[];
extern
const
char
SHRPX_OPT_FRONTEND_HTTP2_READ_TIMEOUT
[];
extern
const
char
SHRPX_OPT_FRONTEND_READ_TIMEOUT
[];
...
...
@@ -260,6 +261,7 @@ struct Config {
bool
http2_bridge
;
bool
client_proxy
;
bool
add_x_forwarded_for
;
bool
strip_incoming_x_forwarded_for
;
bool
no_via
;
bool
upstream_no_tls
;
bool
downstream_no_tls
;
...
...
src/shrpx_http2_downstream_connection.cc
View file @
9aed11e3
...
...
@@ -394,14 +394,16 @@ int Http2DownstreamConnection::push_request_headers()
auto
xff
=
downstream_
->
get_norm_request_header
(
"x-forwarded-for"
);
if
(
get_config
()
->
add_x_forwarded_for
)
{
if
(
xff
!=
end_headers
)
{
if
(
xff
!=
end_headers
&&
!
get_config
()
->
strip_incoming_x_forwarded_for
)
{
xff_value
=
(
*
xff
).
value
;
xff_value
+=
", "
;
}
xff_value
+=
downstream_
->
get_upstream
()
->
get_client_handler
()
->
get_ipaddr
();
nva
.
push_back
(
http2
::
make_nv_ls
(
"x-forwarded-for"
,
xff_value
));
}
else
if
(
xff
!=
end_headers
)
{
}
else
if
(
xff
!=
end_headers
&&
!
get_config
()
->
strip_incoming_x_forwarded_for
)
{
nva
.
push_back
(
http2
::
make_nv_ls
(
"x-forwarded-for"
,
(
*
xff
).
value
));
}
...
...
src/shrpx_http_downstream_connection.cc
View file @
9aed11e3
...
...
@@ -209,14 +209,16 @@ int HttpDownstreamConnection::push_request_headers()
auto
xff
=
downstream_
->
get_norm_request_header
(
"x-forwarded-for"
);
if
(
get_config
()
->
add_x_forwarded_for
)
{
hdrs
+=
"X-Forwarded-For: "
;
if
(
xff
!=
end_headers
)
{
if
(
xff
!=
end_headers
&&
!
get_config
()
->
strip_incoming_x_forwarded_for
)
{
hdrs
+=
(
*
xff
).
value
;
http2
::
sanitize_header_value
(
hdrs
,
hdrs
.
size
()
-
(
*
xff
).
value
.
size
());
hdrs
+=
", "
;
}
hdrs
+=
client_handler_
->
get_ipaddr
();
hdrs
+=
"
\r\n
"
;
}
else
if
(
xff
!=
end_headers
)
{
}
else
if
(
xff
!=
end_headers
&&
!
get_config
()
->
strip_incoming_x_forwarded_for
)
{
hdrs
+=
"X-Forwarded-For: "
;
hdrs
+=
(
*
xff
).
value
;
http2
::
sanitize_header_value
(
hdrs
,
hdrs
.
size
()
-
(
*
xff
).
value
.
size
());
...
...
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