Spaces:
Runtime error
Runtime error
File size: 11,761 Bytes
9552aa0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | use std::error::Error;
use std::path::Path;
use std::sync::Arc;
use crate::ferron_util::ip_match::ip_match;
use crate::ferron_util::match_hostname::match_hostname;
use crate::ferron_util::match_location::match_location;
use crate::ferron_util::url_rewrite_structs::{
UrlRewriteMapEntry, UrlRewriteMapLocationWrap, UrlRewriteMapWrap,
};
use crate::ferron_common::{
ErrorLogger, HyperResponse, RequestData, ResponseData, ServerConfig, ServerModule,
ServerModuleHandlers, SocketData,
};
use crate::ferron_common::{HyperUpgraded, WithRuntime};
use async_trait::async_trait;
use fancy_regex::RegexBuilder;
use hyper::{header, Request, StatusCode};
use hyper_tungstenite::HyperWebsocket;
use tokio::fs;
use tokio::runtime::Handle;
use yaml_rust2::Yaml;
fn url_rewrite_config_init(rewrite_map: &[Yaml]) -> Result<Vec<UrlRewriteMapEntry>, anyhow::Error> {
let rewrite_map_iter = rewrite_map.iter();
let mut rewrite_map_vec = Vec::new();
for rewrite_map_entry in rewrite_map_iter {
let regex_str = match rewrite_map_entry["regex"].as_str() {
Some(regex_str) => regex_str,
None => return Err(anyhow::anyhow!("Invalid URL rewrite regular expression")),
};
let regex = match RegexBuilder::new(regex_str)
.case_insensitive(cfg!(windows))
.build()
{
Ok(regex) => regex,
Err(err) => {
return Err(anyhow::anyhow!(
"Invalid URL rewrite regular expression: {}",
err.to_string()
))
}
};
let replacement = match rewrite_map_entry["replacement"].as_str() {
Some(replacement) => String::from(replacement),
None => return Err(anyhow::anyhow!("URL rewrite rules must have replacements")),
};
let is_not_file = rewrite_map_entry["isNotFile"].as_bool().unwrap_or(false);
let is_not_directory = rewrite_map_entry["isNotDirectory"]
.as_bool()
.unwrap_or(false);
let last = rewrite_map_entry["last"].as_bool().unwrap_or_default();
let allow_double_slashes = rewrite_map_entry["allowDoubleSlashes"]
.as_bool()
.unwrap_or(false);
rewrite_map_vec.push(UrlRewriteMapEntry::new(
regex,
replacement,
is_not_directory,
is_not_file,
last,
allow_double_slashes,
));
}
Ok(rewrite_map_vec)
}
pub fn server_module_init(
config: &ServerConfig,
) -> Result<Box<dyn ServerModule + Send + Sync>, Box<dyn Error + Send + Sync>> {
let mut global_url_rewrite_map = Vec::new();
let mut host_url_rewrite_maps = Vec::new();
if let Some(rewrite_map_yaml) = config["global"]["rewriteMap"].as_vec() {
global_url_rewrite_map = url_rewrite_config_init(rewrite_map_yaml)?;
}
if let Some(hosts) = config["hosts"].as_vec() {
for host_yaml in hosts.iter() {
let domain = host_yaml["domain"].as_str().map(String::from);
let ip = host_yaml["ip"].as_str().map(String::from);
let mut locations = Vec::new();
if let Some(locations_yaml) = host_yaml["locations"].as_vec() {
for location_yaml in locations_yaml.iter() {
if let Some(path_str) = location_yaml["path"].as_str() {
let path = String::from(path_str);
if let Some(rewrite_map_yaml) = location_yaml["rewriteMap"].as_vec() {
locations.push(UrlRewriteMapLocationWrap::new(
path,
url_rewrite_config_init(rewrite_map_yaml)?,
));
}
}
}
}
if let Some(rewrite_map_yaml) = host_yaml["rewriteMap"].as_vec() {
host_url_rewrite_maps.push(UrlRewriteMapWrap::new(
domain,
ip,
url_rewrite_config_init(rewrite_map_yaml)?,
locations,
));
} else if !locations.is_empty() {
host_url_rewrite_maps.push(UrlRewriteMapWrap::new(domain, ip, Vec::new(), locations));
}
}
}
Ok(Box::new(UrlRewriteModule::new(
Arc::new(global_url_rewrite_map),
Arc::new(host_url_rewrite_maps),
)))
}
struct UrlRewriteModule {
global_url_rewrite_map: Arc<Vec<UrlRewriteMapEntry>>,
host_url_rewrite_maps: Arc<Vec<UrlRewriteMapWrap>>,
}
impl UrlRewriteModule {
fn new(
global_url_rewrite_map: Arc<Vec<UrlRewriteMapEntry>>,
host_url_rewrite_maps: Arc<Vec<UrlRewriteMapWrap>>,
) -> Self {
Self {
global_url_rewrite_map,
host_url_rewrite_maps,
}
}
}
impl ServerModule for UrlRewriteModule {
fn get_handlers(&self, handle: Handle) -> Box<dyn ServerModuleHandlers + Send> {
Box::new(UrlRewriteModuleHandlers {
global_url_rewrite_map: self.global_url_rewrite_map.clone(),
host_url_rewrite_maps: self.host_url_rewrite_maps.clone(),
handle,
})
}
}
struct UrlRewriteModuleHandlers {
global_url_rewrite_map: Arc<Vec<UrlRewriteMapEntry>>,
host_url_rewrite_maps: Arc<Vec<UrlRewriteMapWrap>>,
handle: Handle,
}
#[async_trait]
impl ServerModuleHandlers for UrlRewriteModuleHandlers {
async fn request_handler(
&mut self,
request: RequestData,
config: &ServerConfig,
socket_data: &SocketData,
error_logger: &ErrorLogger,
) -> Result<ResponseData, Box<dyn Error + Send + Sync>> {
WithRuntime::new(self.handle.clone(), async move {
let hyper_request = request.get_hyper_request();
let global_url_rewrite_map = self.global_url_rewrite_map.iter();
let empty_vector = Vec::new();
let another_empty_vector = Vec::new();
let mut host_url_rewrite_map = empty_vector.iter();
let mut location_url_rewrite_map = another_empty_vector.iter();
// Should have used a HashMap instead of iterating over an array for better performance...
for host_url_rewrite_map_wrap in self.host_url_rewrite_maps.iter() {
if match_hostname(
match &host_url_rewrite_map_wrap.domain {
Some(value) => Some(value as &str),
None => None,
},
match hyper_request.headers().get(header::HOST) {
Some(value) => value.to_str().ok(),
None => None,
},
) && match &host_url_rewrite_map_wrap.ip {
Some(value) => ip_match(value as &str, socket_data.remote_addr.ip()),
None => true,
} {
host_url_rewrite_map = host_url_rewrite_map_wrap.rewrite_map.iter();
if let Ok(path_decoded) = urlencoding::decode(
request
.get_original_url()
.unwrap_or(request.get_hyper_request().uri())
.path(),
) {
for location_wrap in host_url_rewrite_map_wrap.locations.iter() {
if match_location(&location_wrap.path, &path_decoded) {
location_url_rewrite_map = location_wrap.rewrite_map.iter();
break;
}
}
}
break;
}
}
let combined_url_rewrite_map = global_url_rewrite_map
.chain(host_url_rewrite_map)
.chain(location_url_rewrite_map);
let original_url = format!(
"{}{}",
hyper_request.uri().path(),
match hyper_request.uri().query() {
Some(query) => format!("?{}", query),
None => String::from(""),
}
);
let mut rewritten_url = original_url.clone();
let mut rewritten_url_bytes = rewritten_url.bytes();
if rewritten_url_bytes.len() < 1 || rewritten_url_bytes.nth(0) != Some(b'/') {
return Ok(
ResponseData::builder(request)
.status(StatusCode::BAD_REQUEST)
.build(),
);
}
for url_rewrite_map_entry in combined_url_rewrite_map {
// Check if it's a file or a directory according to the rewrite map configuration
if url_rewrite_map_entry.is_not_directory || url_rewrite_map_entry.is_not_file {
if let Some(wwwroot) = config["wwwroot"].as_str() {
let path = Path::new(wwwroot);
let mut relative_path = &rewritten_url[1..];
while relative_path.as_bytes().first().copied() == Some(b'/') {
relative_path = &relative_path[1..];
}
let relative_path_split: Vec<&str> = relative_path.split("?").collect();
if !relative_path_split.is_empty() {
relative_path = relative_path_split[0];
}
let joined_pathbuf = path.join(relative_path);
if let Ok(metadata) = fs::metadata(joined_pathbuf).await {
if (url_rewrite_map_entry.is_not_file && metadata.is_file())
|| (url_rewrite_map_entry.is_not_directory && metadata.is_dir())
{
continue;
}
}
}
}
if !url_rewrite_map_entry.allow_double_slashes {
while rewritten_url.contains("//") {
rewritten_url = rewritten_url.replace("//", "/");
}
}
// Actual URL rewriting
let old_rewritten_url = rewritten_url;
rewritten_url = url_rewrite_map_entry
.regex
.replace(&old_rewritten_url, &url_rewrite_map_entry.replacement)
.to_string();
let mut rewritten_url_bytes = rewritten_url.bytes();
if rewritten_url_bytes.len() < 1 || rewritten_url_bytes.nth(0) != Some(b'/') {
return Ok(
ResponseData::builder(request)
.status(StatusCode::BAD_REQUEST)
.build(),
);
}
if url_rewrite_map_entry.last && old_rewritten_url != rewritten_url {
break;
}
}
if rewritten_url == original_url {
Ok(ResponseData::builder(request).build())
} else {
if config["enableRewriteLogging"].as_bool() == Some(true) {
error_logger
.log(&format!(
"URL rewritten from \"{}\" to \"{}\"",
original_url, rewritten_url
))
.await;
}
let (hyper_request, auth_user, _) = request.into_parts();
let (mut parts, body) = hyper_request.into_parts();
let original_url = parts.uri.clone();
let mut url_parts = parts.uri.into_parts();
url_parts.path_and_query = Some(rewritten_url.parse()?);
parts.uri = hyper::Uri::from_parts(url_parts)?;
let hyper_request = Request::from_parts(parts, body);
let request = RequestData::new(hyper_request, auth_user, Some(original_url));
Ok(ResponseData::builder(request).build())
}
})
.await
}
async fn proxy_request_handler(
&mut self,
request: RequestData,
_config: &ServerConfig,
_socket_data: &SocketData,
_error_logger: &ErrorLogger,
) -> Result<ResponseData, Box<dyn Error + Send + Sync>> {
Ok(ResponseData::builder(request).build())
}
async fn response_modifying_handler(
&mut self,
response: HyperResponse,
) -> Result<HyperResponse, Box<dyn Error + Send + Sync>> {
Ok(response)
}
async fn proxy_response_modifying_handler(
&mut self,
response: HyperResponse,
) -> Result<HyperResponse, Box<dyn Error + Send + Sync>> {
Ok(response)
}
async fn connect_proxy_request_handler(
&mut self,
_upgraded_request: HyperUpgraded,
_connect_address: &str,
_config: &ServerConfig,
_socket_data: &SocketData,
_error_logger: &ErrorLogger,
) -> Result<(), Box<dyn Error + Send + Sync>> {
Ok(())
}
fn does_connect_proxy_requests(&mut self) -> bool {
false
}
async fn websocket_request_handler(
&mut self,
_websocket: HyperWebsocket,
_uri: &hyper::Uri,
_config: &ServerConfig,
_socket_data: &SocketData,
_error_logger: &ErrorLogger,
) -> Result<(), Box<dyn Error + Send + Sync>> {
Ok(())
}
fn does_websocket_requests(&mut self, _config: &ServerConfig, _socket_data: &SocketData) -> bool {
false
}
}
|