2021-06-22 18:32:03 +02:00
|
|
|
use std::{cell::Ref, convert::Infallible, net::SocketAddr};
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2021-06-22 18:32:03 +02:00
|
|
|
use actix_utils::future::{err, ok, Ready};
|
|
|
|
use derive_more::{Display, Error};
|
2021-06-26 01:39:06 +02:00
|
|
|
use once_cell::sync::Lazy;
|
2021-06-22 18:32:03 +02:00
|
|
|
|
|
|
|
use crate::{
|
|
|
|
dev::{AppConfig, Payload, RequestHead},
|
2021-06-26 01:39:06 +02:00
|
|
|
http::{
|
|
|
|
header::{self, HeaderName},
|
|
|
|
uri::{Authority, Scheme},
|
|
|
|
},
|
2021-06-22 18:32:03 +02:00
|
|
|
FromRequest, HttpRequest, ResponseError,
|
|
|
|
};
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
static X_FORWARDED_FOR: Lazy<HeaderName> =
|
|
|
|
Lazy::new(|| HeaderName::from_static("x-forwarded-for"));
|
|
|
|
static X_FORWARDED_HOST: Lazy<HeaderName> =
|
|
|
|
Lazy::new(|| HeaderName::from_static("x-forwarded-host"));
|
|
|
|
static X_FORWARDED_PROTO: Lazy<HeaderName> =
|
|
|
|
Lazy::new(|| HeaderName::from_static("x-forwarded-proto"));
|
|
|
|
|
|
|
|
/// Trim whitespace then any quote marks.
|
|
|
|
fn unquote(val: &str) -> &str {
|
|
|
|
val.trim().trim_start_matches('"').trim_end_matches('"')
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extracts and trims first value for given header name.
|
|
|
|
fn first_header_value<'a>(req: &'a RequestHead, name: &'_ HeaderName) -> Option<&'a str> {
|
|
|
|
let hdr = req.headers.get(name)?.to_str().ok()?;
|
|
|
|
let val = hdr.split(',').next()?.trim();
|
|
|
|
Some(val)
|
|
|
|
}
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2021-06-22 18:32:03 +02:00
|
|
|
/// HTTP connection information.
|
|
|
|
///
|
|
|
|
/// `ConnectionInfo` implements `FromRequest` and can be extracted in handlers.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```
|
|
|
|
/// # use actix_web::{HttpResponse, Responder};
|
|
|
|
/// use actix_web::dev::ConnectionInfo;
|
|
|
|
///
|
|
|
|
/// async fn handler(conn: ConnectionInfo) -> impl Responder {
|
|
|
|
/// match conn.host() {
|
|
|
|
/// "actix.rs" => HttpResponse::Ok().body("Welcome!"),
|
|
|
|
/// "admin.actix.rs" => HttpResponse::Ok().body("Admin portal."),
|
|
|
|
/// _ => HttpResponse::NotFound().finish()
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// # let _svc = actix_web::web::to(handler);
|
|
|
|
/// ```
|
2021-06-26 01:39:06 +02:00
|
|
|
///
|
|
|
|
/// # Implementation Notes
|
|
|
|
/// Parses `Forwarded` header information according to [RFC 7239][rfc7239] but does not try to
|
|
|
|
/// interpret the values for each property. As such, the getter methods on `ConnectionInfo` return
|
|
|
|
/// strings instead of IP addresses or other types to acknowledge that they may be
|
|
|
|
/// [obfuscated][rfc7239-63] or [unknown][rfc7239-62].
|
|
|
|
///
|
|
|
|
/// If the older, related headers are also present (eg. `X-Forwarded-For`), then `Forwarded`
|
|
|
|
/// is preferred.
|
|
|
|
///
|
|
|
|
/// [rfc7239]: https://datatracker.ietf.org/doc/html/rfc7239
|
|
|
|
/// [rfc7239-62]: https://datatracker.ietf.org/doc/html/rfc7239#section-6.2
|
|
|
|
/// [rfc7239-63]: https://datatracker.ietf.org/doc/html/rfc7239#section-6.3
|
2019-03-09 23:06:24 +01:00
|
|
|
#[derive(Debug, Clone, Default)]
|
2018-06-17 20:01:41 +02:00
|
|
|
pub struct ConnectionInfo {
|
|
|
|
host: String,
|
2021-07-12 17:55:24 +02:00
|
|
|
scheme: String,
|
2020-05-15 02:07:27 +02:00
|
|
|
remote_addr: Option<String>,
|
2021-07-12 17:55:24 +02:00
|
|
|
realip_remote_addr: 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-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;
|
2020-05-15 02:07:27 +02:00
|
|
|
let mut realip_remote_addr = None;
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
for (name, val) in req
|
|
|
|
.headers
|
|
|
|
.get_all(&header::FORWARDED)
|
|
|
|
.into_iter()
|
|
|
|
.filter_map(|hdr| hdr.to_str().ok())
|
|
|
|
// "for=1.2.3.4, for=5.6.7.8; scheme=https"
|
|
|
|
.flat_map(|val| val.split(';'))
|
|
|
|
// ["for=1.2.3.4, for=5.6.7.8", " scheme=https"]
|
|
|
|
.flat_map(|vals| vals.split(','))
|
|
|
|
// ["for=1.2.3.4", " for=5.6.7.8", " scheme=https"]
|
|
|
|
.flat_map(|pair| {
|
|
|
|
let mut items = pair.trim().splitn(2, '=');
|
|
|
|
Some((items.next()?, items.next()?))
|
|
|
|
})
|
|
|
|
{
|
|
|
|
// [(name , val ), ... ]
|
|
|
|
// [("for", "1.2.3.4"), ("for", "5.6.7.8"), ("scheme", "https")]
|
|
|
|
|
|
|
|
// taking the first value for each property is correct because spec states that first
|
|
|
|
// "for" value is client and rest are proxies; multiple values other properties have
|
|
|
|
// no defined semantics
|
|
|
|
//
|
|
|
|
// > In a chain of proxy servers where this is fully utilized, the first
|
|
|
|
// > "for" parameter will disclose the client where the request was first
|
|
|
|
// > made, followed by any subsequent proxy identifiers.
|
|
|
|
// --- https://datatracker.ietf.org/doc/html/rfc7239#section-5.2
|
|
|
|
|
|
|
|
match name.trim().to_lowercase().as_str() {
|
|
|
|
"for" => realip_remote_addr.get_or_insert_with(|| unquote(val)),
|
|
|
|
"proto" => scheme.get_or_insert_with(|| unquote(val)),
|
|
|
|
"host" => host.get_or_insert_with(|| unquote(val)),
|
|
|
|
"by" => {
|
|
|
|
// TODO: implement https://datatracker.ietf.org/doc/html/rfc7239#section-5.1
|
|
|
|
continue;
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
2021-06-26 01:39:06 +02:00
|
|
|
_ => continue,
|
|
|
|
};
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
let scheme = scheme
|
|
|
|
.or_else(|| first_header_value(req, &*X_FORWARDED_PROTO))
|
|
|
|
.or_else(|| req.uri.scheme().map(Scheme::as_str))
|
|
|
|
.or_else(|| Some("https").filter(|_| cfg.secure()))
|
|
|
|
.unwrap_or("http")
|
|
|
|
.to_owned();
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
let host = host
|
|
|
|
.or_else(|| first_header_value(req, &*X_FORWARDED_HOST))
|
|
|
|
.or_else(|| req.headers.get(&header::HOST)?.to_str().ok())
|
|
|
|
.or_else(|| req.uri.authority().map(Authority::as_str))
|
2021-07-12 17:55:24 +02:00
|
|
|
.unwrap_or_else(|| cfg.host())
|
2021-06-26 01:39:06 +02:00
|
|
|
.to_owned();
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
let realip_remote_addr = realip_remote_addr
|
|
|
|
.or_else(|| first_header_value(req, &*X_FORWARDED_FOR))
|
|
|
|
.map(str::to_owned);
|
2020-05-15 02:07:27 +02:00
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
let remote_addr = req.peer_addr.map(|addr| addr.to_string());
|
2017-12-06 06:38:52 +01:00
|
|
|
|
2019-03-02 07:51:32 +01:00
|
|
|
ConnectionInfo {
|
2021-06-26 01:39:06 +02:00
|
|
|
host,
|
2021-07-12 17:55:24 +02:00
|
|
|
scheme,
|
|
|
|
remote_addr,
|
2021-06-26 01:39:06 +02:00
|
|
|
realip_remote_addr,
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
/// Remote address of the connection.
|
2020-05-15 02:07:27 +02:00
|
|
|
///
|
2021-06-26 01:39:06 +02:00
|
|
|
/// Get remote_addr address from socket address.
|
2020-05-15 02:07:27 +02:00
|
|
|
pub fn remote_addr(&self) -> Option<&str> {
|
2021-06-26 01:39:06 +02:00
|
|
|
self.remote_addr.as_deref()
|
2020-05-15 02:07:27 +02:00
|
|
|
}
|
2021-06-26 01:39:06 +02:00
|
|
|
|
|
|
|
/// Real IP (remote address) of client that initiated request.
|
2017-12-06 02:09:15 +01:00
|
|
|
///
|
2021-06-26 01:39:06 +02:00
|
|
|
/// The address is resolved through the following headers, in this order:
|
2017-12-06 02:09:15 +01:00
|
|
|
///
|
|
|
|
/// - Forwarded
|
|
|
|
/// - X-Forwarded-For
|
2020-05-15 02:07:27 +02:00
|
|
|
/// - remote_addr name of opened socket
|
2019-11-14 03:32:47 +01:00
|
|
|
///
|
|
|
|
/// # Security
|
|
|
|
/// Do not use this function for security purposes, unless you can ensure the Forwarded and
|
|
|
|
/// X-Forwarded-For headers cannot be spoofed by the client. If you want the client's socket
|
2021-06-26 01:39:06 +02:00
|
|
|
/// address explicitly, use [`HttpRequest::peer_addr()`][peer_addr] instead.
|
|
|
|
///
|
|
|
|
/// [peer_addr]: crate::web::HttpRequest::peer_addr()
|
2017-12-06 02:09:15 +01:00
|
|
|
#[inline]
|
2020-05-15 02:07:27 +02:00
|
|
|
pub fn realip_remote_addr(&self) -> Option<&str> {
|
2021-06-26 01:39:06 +02:00
|
|
|
self.realip_remote_addr
|
|
|
|
.as_deref()
|
|
|
|
.or_else(|| self.remote_addr.as_deref())
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
2017-12-06 06:38:52 +01:00
|
|
|
}
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2021-06-22 18:32:03 +02:00
|
|
|
impl FromRequest for ConnectionInfo {
|
|
|
|
type Error = Infallible;
|
|
|
|
type Future = Ready<Result<Self, Self::Error>>;
|
|
|
|
|
|
|
|
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
|
|
|
|
ok(req.connection_info().clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extractor for peer's socket address.
|
|
|
|
///
|
|
|
|
/// Also see [`HttpRequest::peer_addr`].
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```
|
|
|
|
/// # use actix_web::Responder;
|
|
|
|
/// use actix_web::dev::PeerAddr;
|
|
|
|
///
|
|
|
|
/// async fn handler(peer_addr: PeerAddr) -> impl Responder {
|
|
|
|
/// let socket_addr = peer_addr.0;
|
|
|
|
/// socket_addr.to_string()
|
|
|
|
/// }
|
|
|
|
/// # let _svc = actix_web::web::to(handler);
|
|
|
|
/// ```
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, Display)]
|
|
|
|
#[display(fmt = "{}", _0)]
|
|
|
|
pub struct PeerAddr(pub SocketAddr);
|
|
|
|
|
|
|
|
impl PeerAddr {
|
|
|
|
/// Unwrap into inner `SocketAddr` value.
|
|
|
|
pub fn into_inner(self) -> SocketAddr {
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Display, Error)]
|
|
|
|
#[non_exhaustive]
|
|
|
|
#[display(fmt = "Missing peer address")]
|
|
|
|
pub struct MissingPeerAddr;
|
|
|
|
|
|
|
|
impl ResponseError for MissingPeerAddr {}
|
|
|
|
|
|
|
|
impl FromRequest for PeerAddr {
|
|
|
|
type Error = MissingPeerAddr;
|
|
|
|
type Future = Ready<Result<Self, Self::Error>>;
|
|
|
|
|
|
|
|
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
|
|
|
|
match req.peer_addr() {
|
|
|
|
Some(addr) => ok(PeerAddr(addr)),
|
|
|
|
None => {
|
|
|
|
log::error!("Missing peer address.");
|
|
|
|
err(MissingPeerAddr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
const X_FORWARDED_FOR: &str = "x-forwarded-for";
|
|
|
|
const X_FORWARDED_HOST: &str = "x-forwarded-host";
|
|
|
|
const X_FORWARDED_PROTO: &str = "x-forwarded-proto";
|
|
|
|
|
2017-12-06 06:38:52 +01:00
|
|
|
#[test]
|
2021-06-26 01:39:06 +02:00
|
|
|
fn info_default() {
|
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");
|
2021-06-26 01:39:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn host_header() {
|
|
|
|
let req = TestRequest::default()
|
|
|
|
.insert_header((header::HOST, "rust-lang.org"))
|
|
|
|
.to_http_request();
|
|
|
|
|
|
|
|
let info = req.connection_info();
|
|
|
|
assert_eq!(info.scheme(), "http");
|
|
|
|
assert_eq!(info.host(), "rust-lang.org");
|
|
|
|
assert_eq!(info.realip_remote_addr(), None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn x_forwarded_for_header() {
|
|
|
|
let req = TestRequest::default()
|
|
|
|
.insert_header((X_FORWARDED_FOR, "192.0.2.60"))
|
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
|
|
|
assert_eq!(info.realip_remote_addr(), Some("192.0.2.60"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn x_forwarded_host_header() {
|
|
|
|
let req = TestRequest::default()
|
|
|
|
.insert_header((X_FORWARDED_HOST, "192.0.2.60"))
|
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
|
|
|
assert_eq!(info.host(), "192.0.2.60");
|
|
|
|
assert_eq!(info.realip_remote_addr(), None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn x_forwarded_proto_header() {
|
|
|
|
let req = TestRequest::default()
|
|
|
|
.insert_header((X_FORWARDED_PROTO, "https"))
|
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
|
|
|
assert_eq!(info.scheme(), "https");
|
|
|
|
}
|
2017-12-06 06:38:52 +01:00
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
#[test]
|
|
|
|
fn forwarded_header() {
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default()
|
2021-01-15 03:11:10 +01:00
|
|
|
.insert_header((
|
2018-06-25 06:58:04 +02:00
|
|
|
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",
|
2021-01-15 03:11:10 +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");
|
2020-05-15 02:07:27 +02:00
|
|
|
assert_eq!(info.realip_remote_addr(), Some("192.0.2.60"));
|
2017-12-06 06:38:52 +01:00
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default()
|
2021-06-26 01:39:06 +02:00
|
|
|
.insert_header((
|
|
|
|
header::FORWARDED,
|
|
|
|
"for=192.0.2.60; proto=https; by=203.0.113.43; 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();
|
2021-06-26 01:39:06 +02:00
|
|
|
assert_eq!(info.scheme(), "https");
|
2017-12-06 06:38:52 +01:00
|
|
|
assert_eq!(info.host(), "rust-lang.org");
|
2021-06-26 01:39:06 +02:00
|
|
|
assert_eq!(info.realip_remote_addr(), Some("192.0.2.60"));
|
|
|
|
}
|
2017-12-06 06:38:52 +01:00
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
#[test]
|
|
|
|
fn forwarded_case_sensitivity() {
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default()
|
2021-06-26 01:39:06 +02:00
|
|
|
.insert_header((header::FORWARDED, "For=192.0.2.60"))
|
2019-03-09 23:06:24 +01:00
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
2020-05-15 02:07:27 +02:00
|
|
|
assert_eq!(info.realip_remote_addr(), Some("192.0.2.60"));
|
2021-06-26 01:39:06 +02:00
|
|
|
}
|
2017-12-06 06:38:52 +01:00
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
#[test]
|
|
|
|
fn forwarded_weird_whitespace() {
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default()
|
2021-06-26 01:39:06 +02:00
|
|
|
.insert_header((header::FORWARDED, "for= 1.2.3.4; proto= https"))
|
2019-03-09 23:06:24 +01:00
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
2021-06-26 01:39:06 +02:00
|
|
|
assert_eq!(info.realip_remote_addr(), Some("1.2.3.4"));
|
|
|
|
assert_eq!(info.scheme(), "https");
|
2017-12-06 06:38:52 +01:00
|
|
|
|
2018-07-04 17:01:27 +02:00
|
|
|
let req = TestRequest::default()
|
2021-06-26 01:39:06 +02:00
|
|
|
.insert_header((header::FORWARDED, " for = 1.2.3.4 "))
|
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
|
|
|
assert_eq!(info.realip_remote_addr(), Some("1.2.3.4"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn forwarded_for_quoted() {
|
|
|
|
let req = TestRequest::default()
|
|
|
|
.insert_header((header::FORWARDED, r#"for="192.0.2.60:8080""#))
|
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
|
|
|
assert_eq!(info.realip_remote_addr(), Some("192.0.2.60:8080"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn forwarded_for_ipv6() {
|
|
|
|
let req = TestRequest::default()
|
|
|
|
.insert_header((header::FORWARDED, r#"for="[2001:db8:cafe::17]:4711""#))
|
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
|
|
|
assert_eq!(info.realip_remote_addr(), Some("[2001:db8:cafe::17]:4711"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn forwarded_for_multiple() {
|
|
|
|
let req = TestRequest::default()
|
|
|
|
.insert_header((header::FORWARDED, "for=192.0.2.60, for=198.51.100.17"))
|
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
|
|
|
// takes the first value
|
|
|
|
assert_eq!(info.realip_remote_addr(), Some("192.0.2.60"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn scheme_from_uri() {
|
|
|
|
let req = TestRequest::get()
|
|
|
|
.uri("https://actix.rs/test")
|
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
|
|
|
}
|
2021-06-22 18:32:03 +02:00
|
|
|
|
2021-06-26 01:39:06 +02:00
|
|
|
#[test]
|
|
|
|
fn host_from_uri() {
|
|
|
|
let req = TestRequest::get()
|
|
|
|
.uri("https://actix.rs/test")
|
|
|
|
.to_http_request();
|
|
|
|
let info = req.connection_info();
|
|
|
|
assert_eq!(info.host(), "actix.rs");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn host_from_server_hostname() {
|
|
|
|
let mut req = TestRequest::get();
|
|
|
|
req.set_server_hostname("actix.rs");
|
|
|
|
let req = req.to_http_request();
|
|
|
|
|
|
|
|
let info = req.connection_info();
|
|
|
|
assert_eq!(info.host(), "actix.rs");
|
|
|
|
}
|
|
|
|
|
2021-06-22 18:32:03 +02:00
|
|
|
#[actix_rt::test]
|
2021-06-26 01:39:06 +02:00
|
|
|
async fn conn_info_extract() {
|
2021-06-22 18:32:03 +02:00
|
|
|
let req = TestRequest::default()
|
2021-06-26 01:39:06 +02:00
|
|
|
.uri("https://actix.rs/test")
|
2021-06-22 18:32:03 +02:00
|
|
|
.to_http_request();
|
|
|
|
let conn_info = ConnectionInfo::extract(&req).await.unwrap();
|
2021-06-26 01:39:06 +02:00
|
|
|
assert_eq!(conn_info.scheme(), "https");
|
|
|
|
assert_eq!(conn_info.host(), "actix.rs");
|
2021-06-22 18:32:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
2021-06-26 01:39:06 +02:00
|
|
|
async fn peer_addr_extract() {
|
2021-06-22 18:32:03 +02:00
|
|
|
let addr = "127.0.0.1:8080".parse().unwrap();
|
|
|
|
let req = TestRequest::default().peer_addr(addr).to_http_request();
|
|
|
|
let peer_addr = PeerAddr::extract(&req).await.unwrap();
|
|
|
|
assert_eq!(peer_addr, PeerAddr(addr));
|
|
|
|
|
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
let res = PeerAddr::extract(&req).await;
|
|
|
|
assert!(res.is_err());
|
|
|
|
}
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|