2019-03-02 07:51:32 +01:00
|
|
|
use std::cell::Ref;
|
|
|
|
|
2019-03-09 23:06:24 +01:00
|
|
|
use crate::dev::{AppConfig, RequestHead};
|
|
|
|
use crate::http::header::{self, HeaderName};
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
const X_FORWARDED_FOR: &[u8] = b"x-forwarded-for";
|
|
|
|
const X_FORWARDED_HOST: &[u8] = b"x-forwarded-host";
|
|
|
|
const X_FORWARDED_PROTO: &[u8] = b"x-forwarded-proto";
|
2017-12-06 02:09:15 +01:00
|
|
|
|
|
|
|
/// `HttpRequest` connection information
|
2019-03-09 23:06:24 +01:00
|
|
|
#[derive(Debug, Clone, Default)]
|
2018-06-17 20:01:41 +02:00
|
|
|
pub struct ConnectionInfo {
|
|
|
|
scheme: String,
|
|
|
|
host: String,
|
|
|
|
remote: Option<String>,
|
2017-12-06 06:38:52 +01:00
|
|
|
peer: Option<String>,
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
|
2018-06-17 20:01:41 +02:00
|
|
|
impl ConnectionInfo {
|
2017-12-06 02:09:15 +01:00
|
|
|
/// Create *ConnectionInfo* instance for a request.
|
2019-03-09 23:06:24 +01:00
|
|
|
pub fn get<'a>(req: &'a RequestHead, cfg: &AppConfig) -> Ref<'a, Self> {
|
2019-03-02 07:51:32 +01:00
|
|
|
if !req.extensions().contains::<ConnectionInfo>() {
|
2019-03-09 23:06:24 +01:00
|
|
|
req.extensions_mut().insert(ConnectionInfo::new(req, cfg));
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
|
|
|
Ref::map(req.extensions(), |e| e.get().unwrap())
|
|
|
|
}
|
|
|
|
|
2019-07-17 09:55:44 +02:00
|
|
|
#[allow(
|
|
|
|
clippy::cyclomatic_complexity,
|
|
|
|
clippy::cognitive_complexity,
|
|
|
|
clippy::borrow_interior_mutable_const
|
|
|
|
)]
|
2019-03-09 23:06:24 +01:00
|
|
|
fn new(req: &RequestHead, cfg: &AppConfig) -> ConnectionInfo {
|
2017-12-06 02:09:15 +01:00
|
|
|
let mut host = None;
|
|
|
|
let mut scheme = None;
|
2017-12-06 06:38:52 +01:00
|
|
|
let mut remote = None;
|
2019-04-16 19:11:38 +02:00
|
|
|
let mut peer = None;
|
2017-12-06 02:09:15 +01:00
|
|
|
|
|
|
|
// load forwarded header
|
2019-04-07 00:02:02 +02:00
|
|
|
for hdr in req.headers.get_all(&header::FORWARDED) {
|
2017-12-06 02:09:15 +01:00
|
|
|
if let Ok(val) = hdr.to_str() {
|
|
|
|
for pair in val.split(';') {
|
|
|
|
for el in pair.split(',') {
|
2017-12-06 06:38:52 +01:00
|
|
|
let mut items = el.trim().splitn(2, '=');
|
2017-12-06 02:09:15 +01:00
|
|
|
if let Some(name) = items.next() {
|
|
|
|
if let Some(val) = items.next() {
|
|
|
|
match &name.to_lowercase() as &str {
|
2019-03-02 07:51:32 +01:00
|
|
|
"for" => {
|
|
|
|
if remote.is_none() {
|
|
|
|
remote = Some(val.trim());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"proto" => {
|
|
|
|
if scheme.is_none() {
|
|
|
|
scheme = Some(val.trim());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"host" => {
|
|
|
|
if host.is_none() {
|
|
|
|
host = Some(val.trim());
|
|
|
|
}
|
|
|
|
}
|
2017-12-06 02:09:15 +01:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// scheme
|
|
|
|
if scheme.is_none() {
|
2018-05-17 21:20:20 +02:00
|
|
|
if let Some(h) = req
|
2019-03-02 07:51:32 +01:00
|
|
|
.headers
|
2019-04-07 00:02:02 +02:00
|
|
|
.get(&HeaderName::from_lowercase(X_FORWARDED_PROTO).unwrap())
|
2018-04-14 01:02:01 +02:00
|
|
|
{
|
2017-12-06 02:09:15 +01:00
|
|
|
if let Ok(h) = h.to_str() {
|
|
|
|
scheme = h.split(',').next().map(|v| v.trim());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if scheme.is_none() {
|
2019-03-02 07:51:32 +01:00
|
|
|
scheme = req.uri.scheme_part().map(|a| a.as_str());
|
2019-03-09 23:06:24 +01:00
|
|
|
if scheme.is_none() && cfg.secure() {
|
2018-06-25 06:58:04 +02:00
|
|
|
scheme = Some("https")
|
2017-12-08 18:48:53 +01:00
|
|
|
}
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// host
|
|
|
|
if host.is_none() {
|
2018-05-17 21:20:20 +02:00
|
|
|
if let Some(h) = req
|
2019-03-02 07:51:32 +01:00
|
|
|
.headers
|
2019-04-07 00:02:02 +02:00
|
|
|
.get(&HeaderName::from_lowercase(X_FORWARDED_HOST).unwrap())
|
2018-04-14 01:02:01 +02:00
|
|
|
{
|
2017-12-06 02:09:15 +01:00
|
|
|
if let Ok(h) = h.to_str() {
|
|
|
|
host = h.split(',').next().map(|v| v.trim());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if host.is_none() {
|
2019-04-07 00:02:02 +02:00
|
|
|
if let Some(h) = req.headers.get(&header::HOST) {
|
2017-12-06 06:53:00 +01:00
|
|
|
host = h.to_str().ok();
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
if host.is_none() {
|
2019-03-02 07:51:32 +01:00
|
|
|
host = req.uri.authority_part().map(|a| a.as_str());
|
2017-12-08 18:48:53 +01:00
|
|
|
if host.is_none() {
|
2019-03-09 23:06:24 +01:00
|
|
|
host = Some(cfg.host());
|
2017-12-08 18:48:53 +01:00
|
|
|
}
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-06 06:38:52 +01:00
|
|
|
// remote addr
|
|
|
|
if remote.is_none() {
|
2018-05-17 21:20:20 +02:00
|
|
|
if let Some(h) = req
|
2019-03-02 07:51:32 +01:00
|
|
|
.headers
|
2019-04-07 00:02:02 +02:00
|
|
|
.get(&HeaderName::from_lowercase(X_FORWARDED_FOR).unwrap())
|
2018-04-14 01:02:01 +02:00
|
|
|
{
|
2017-12-06 06:38:52 +01:00
|
|
|
if let Ok(h) = h.to_str() {
|
|
|
|
remote = h.split(',').next().map(|v| v.trim());
|
|
|
|
}
|
|
|
|
}
|
2019-04-16 19:11:38 +02:00
|
|
|
if remote.is_none() {
|
|
|
|
// get peeraddr from socketaddr
|
|
|
|
peer = req.peer_addr.map(|addr| format!("{}", addr));
|
|
|
|
}
|
2017-12-06 06:38:52 +01:00
|
|
|
}
|
|
|
|
|
2019-03-02 07:51:32 +01:00
|
|
|
ConnectionInfo {
|
2019-03-17 05:35:02 +01:00
|
|
|
peer,
|
2019-03-02 07:51:32 +01:00
|
|
|
scheme: scheme.unwrap_or("http").to_owned(),
|
|
|
|
host: host.unwrap_or("localhost").to_owned(),
|
|
|
|
remote: remote.map(|s| s.to_owned()),
|
|
|
|
}
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Scheme of the request.
|
|
|
|
///
|
|
|
|
/// Scheme is resolved through the following headers, in this order:
|
|
|
|
///
|
|
|
|
/// - Forwarded
|
|
|
|
/// - X-Forwarded-Proto
|
|
|
|
/// - Uri
|
|
|
|
#[inline]
|
|
|
|
pub fn scheme(&self) -> &str {
|
2018-06-17 20:01:41 +02:00
|
|
|
&self.scheme
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Hostname of the request.
|
|
|
|
///
|
|
|
|
/// Hostname is resolved through the following headers, in this order:
|
|
|
|
///
|
|
|
|
/// - Forwarded
|
|
|
|
/// - X-Forwarded-Host
|
|
|
|
/// - Host
|
|
|
|
/// - Uri
|
2017-12-26 23:36:03 +01:00
|
|
|
/// - Server hostname
|
2017-12-06 02:09:15 +01:00
|
|
|
pub fn host(&self) -> &str {
|
2018-06-17 20:01:41 +02:00
|
|
|
&self.host
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Remote IP of client initiated HTTP request.
|
|
|
|
///
|
|
|
|
/// The IP is resolved through the following headers, in this order:
|
|
|
|
///
|
|
|
|
/// - Forwarded
|
|
|
|
/// - X-Forwarded-For
|
2018-03-24 07:35:52 +01:00
|
|
|
/// - peer name of opened socket
|
2017-12-06 02:09:15 +01:00
|
|
|
#[inline]
|
2017-12-06 06:38:52 +01:00
|
|
|
pub fn remote(&self) -> Option<&str> {
|
2018-06-17 20:01:41 +02:00
|
|
|
if let Some(ref r) = self.remote {
|
2017-12-06 06:38:52 +01:00
|
|
|
Some(r)
|
|
|
|
} else if let Some(ref peer) = self.peer {
|
|
|
|
Some(peer)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
2017-12-06 06:38:52 +01:00
|
|
|
}
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2017-12-06 06:38:52 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2019-03-02 07:51:32 +01:00
|
|
|
use crate::test::TestRequest;
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2017-12-06 06:38:52 +01:00
|
|
|
#[test]
|
|
|
|
fn test_forwarded() {
|
2019-03-09 23:06:24 +01:00
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
let info = req.connection_info();
|
2017-12-06 06:38:52 +01:00
|
|
|
assert_eq!(info.scheme(), "http");
|
2018-06-25 06:58:04 +02:00
|
|
|
assert_eq!(info.host(), "localhost:8080");
|
2017-12-06 06:38:52 +01:00
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default()
|
|
|
|
.header(
|
|
|
|
header::FORWARDED,
|
2018-04-14 01:02:01 +02:00
|
|
|
"for=192.0.2.60; proto=https; by=203.0.113.43; host=rust-lang.org",
|
2019-03-02 07:51:32 +01:00
|
|
|
)
|
2019-03-09 23:06:24 +01:00
|
|
|
.to_http_request();
|
2017-12-06 06:38:52 +01:00
|
|
|
|
2019-03-09 23:06:24 +01:00
|
|
|
let info = req.connection_info();
|
2017-12-06 06:38:52 +01:00
|
|
|
assert_eq!(info.scheme(), "https");
|
|
|
|
assert_eq!(info.host(), "rust-lang.org");
|
|
|
|
assert_eq!(info.remote(), Some("192.0.2.60"));
|
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default()
|
|
|
|
.header(header::HOST, "rust-lang.org")
|
2019-03-09 23:06:24 +01:00
|
|
|
.to_http_request();
|
2017-12-06 06:38:52 +01:00
|
|
|
|
2019-03-09 23:06:24 +01:00
|
|
|
let info = req.connection_info();
|
2017-12-06 06:38:52 +01:00
|
|
|
assert_eq!(info.scheme(), "http");
|
|
|
|
assert_eq!(info.host(), "rust-lang.org");
|
|
|
|
assert_eq!(info.remote(), None);
|
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default()
|
|
|
|
.header(X_FORWARDED_FOR, "192.0.2.60")
|
2019-03-09 23:06:24 +01:00
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
2017-12-06 06:38:52 +01:00
|
|
|
assert_eq!(info.remote(), Some("192.0.2.60"));
|
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default()
|
|
|
|
.header(X_FORWARDED_HOST, "192.0.2.60")
|
2019-03-09 23:06:24 +01:00
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
2017-12-06 06:38:52 +01:00
|
|
|
assert_eq!(info.host(), "192.0.2.60");
|
|
|
|
assert_eq!(info.remote(), None);
|
|
|
|
|
2018-07-04 17:01:27 +02:00
|
|
|
let req = TestRequest::default()
|
2018-06-25 06:58:04 +02:00
|
|
|
.header(X_FORWARDED_PROTO, "https")
|
2019-03-09 23:06:24 +01:00
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
2017-12-06 06:38:52 +01:00
|
|
|
assert_eq!(info.scheme(), "https");
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
}
|