Spaces:
Runtime error
Runtime error
File size: 20,856 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 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 | // SCGI handler code inspired by SVR.JS's OrangeCircle mod, translated from JavaScript to Rust.
// Based on the "cgi" module
use std::env;
use std::error::Error;
use std::path::{Path, PathBuf};
use crate::ferron_common::{
ErrorLogger, HyperRequest, HyperResponse, RequestData, ResponseData, ServerConfig, ServerModule,
ServerModuleHandlers, SocketData,
};
use crate::ferron_common::{HyperUpgraded, WithRuntime};
use async_trait::async_trait;
use futures_util::TryStreamExt;
use hashlink::LinkedHashMap;
use http_body_util::{BodyExt, StreamBody};
use httparse::EMPTY_HEADER;
use hyper::body::Frame;
use hyper::{header, Response, StatusCode};
use hyper_tungstenite::HyperWebsocket;
use tokio::fs;
use tokio::io::{AsyncRead, AsyncWrite, AsyncWriteExt};
use tokio::net::TcpStream;
use tokio::runtime::Handle;
use tokio_util::io::{ReaderStream, StreamReader};
use crate::ferron_res::server_software::SERVER_SOFTWARE;
use crate::ferron_util::cgi_response::CgiResponse;
use crate::ferron_util::copy_move::Copier;
pub fn server_module_init(
_config: &ServerConfig,
) -> Result<Box<dyn ServerModule + Send + Sync>, Box<dyn Error + Send + Sync>> {
Ok(Box::new(ScgiModule::new()))
}
struct ScgiModule;
impl ScgiModule {
fn new() -> Self {
Self
}
}
impl ServerModule for ScgiModule {
fn get_handlers(&self, handle: Handle) -> Box<dyn ServerModuleHandlers + Send> {
Box::new(ScgiModuleHandlers { handle })
}
}
struct ScgiModuleHandlers {
handle: Handle,
}
#[async_trait]
impl ServerModuleHandlers for ScgiModuleHandlers {
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 mut scgi_to = "tcp://localhost:4000/";
let scgi_to_yaml = &config["scgiTo"];
if let Some(scgi_to_obtained) = scgi_to_yaml.as_str() {
scgi_to = scgi_to_obtained;
}
let mut scgi_path = None;
if let Some(scgi_path_obtained) = config["scgiPath"].as_str() {
scgi_path = Some(scgi_path_obtained.to_string());
}
let hyper_request = request.get_hyper_request();
let request_path = hyper_request.uri().path();
let mut request_path_bytes = request_path.bytes();
if request_path_bytes.len() < 1 || request_path_bytes.nth(0) != Some(b'/') {
return Ok(
ResponseData::builder(request)
.status(StatusCode::BAD_REQUEST)
.build(),
);
}
if let Some(scgi_path) = scgi_path {
let mut canonical_scgi_path: &str = &scgi_path;
if canonical_scgi_path.bytes().last() == Some(b'/') {
canonical_scgi_path = &canonical_scgi_path[..(canonical_scgi_path.len() - 1)];
}
let request_path_with_slashes = match request_path == canonical_scgi_path {
true => format!("{}/", request_path),
false => request_path.to_string(),
};
if let Some(stripped_request_path) =
request_path_with_slashes.strip_prefix(canonical_scgi_path)
{
let wwwroot_yaml = &config["wwwroot"];
let wwwroot = wwwroot_yaml.as_str().unwrap_or("/nonexistent");
let wwwroot_unknown = PathBuf::from(wwwroot);
let wwwroot_pathbuf = match wwwroot_unknown.as_path().is_absolute() {
true => wwwroot_unknown,
false => match fs::canonicalize(&wwwroot_unknown).await {
Ok(pathbuf) => pathbuf,
Err(_) => wwwroot_unknown,
},
};
let wwwroot = wwwroot_pathbuf.as_path();
let mut relative_path = &request_path[1..];
while relative_path.as_bytes().first().copied() == Some(b'/') {
relative_path = &relative_path[1..];
}
let decoded_relative_path = match urlencoding::decode(relative_path) {
Ok(path) => path.to_string(),
Err(_) => {
return Ok(
ResponseData::builder(request)
.status(StatusCode::BAD_REQUEST)
.build(),
);
}
};
let joined_pathbuf = wwwroot.join(decoded_relative_path);
let execute_pathbuf = joined_pathbuf;
let execute_path_info = stripped_request_path
.strip_prefix("/")
.map(|s| s.to_string());
return execute_scgi_with_environment_variables(
request,
socket_data,
error_logger,
wwwroot,
execute_pathbuf,
execute_path_info,
config["serverAdministratorEmail"].as_str(),
scgi_to,
)
.await;
}
}
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
}
}
#[allow(clippy::too_many_arguments)]
async fn execute_scgi_with_environment_variables(
request: RequestData,
socket_data: &SocketData,
error_logger: &ErrorLogger,
wwwroot: &Path,
execute_pathbuf: PathBuf,
path_info: Option<String>,
server_administrator_email: Option<&str>,
scgi_to: &str,
) -> Result<ResponseData, Box<dyn Error + Send + Sync>> {
let mut environment_variables: LinkedHashMap<String, String> = LinkedHashMap::new();
let hyper_request = request.get_hyper_request();
let original_request_uri = request.get_original_url().unwrap_or(hyper_request.uri());
if let Some(auth_user) = request.get_auth_user() {
if let Some(authorization) = hyper_request.headers().get(header::AUTHORIZATION) {
let authorization_value = String::from_utf8_lossy(authorization.as_bytes()).to_string();
let mut authorization_value_split = authorization_value.split(" ");
if let Some(authorization_type) = authorization_value_split.next() {
environment_variables.insert("AUTH_TYPE".to_string(), authorization_type.to_string());
}
}
environment_variables.insert("REMOTE_USER".to_string(), auth_user.to_string());
}
environment_variables.insert(
"QUERY_STRING".to_string(),
match hyper_request.uri().query() {
Some(query) => query.to_string(),
None => "".to_string(),
},
);
environment_variables.insert("SERVER_SOFTWARE".to_string(), SERVER_SOFTWARE.to_string());
environment_variables.insert(
"SERVER_PROTOCOL".to_string(),
match hyper_request.version() {
hyper::Version::HTTP_09 => "HTTP/0.9".to_string(),
hyper::Version::HTTP_10 => "HTTP/1.0".to_string(),
hyper::Version::HTTP_11 => "HTTP/1.1".to_string(),
hyper::Version::HTTP_2 => "HTTP/2.0".to_string(),
hyper::Version::HTTP_3 => "HTTP/3.0".to_string(),
_ => "HTTP/Unknown".to_string(),
},
);
environment_variables.insert(
"SERVER_PORT".to_string(),
socket_data.local_addr.port().to_string(),
);
environment_variables.insert(
"SERVER_ADDR".to_string(),
socket_data.local_addr.ip().to_canonical().to_string(),
);
if let Some(server_administrator_email) = server_administrator_email {
environment_variables.insert(
"SERVER_ADMIN".to_string(),
server_administrator_email.to_string(),
);
}
if let Some(host) = hyper_request.headers().get(header::HOST) {
environment_variables.insert(
"SERVER_NAME".to_string(),
String::from_utf8_lossy(host.as_bytes()).to_string(),
);
}
environment_variables.insert(
"DOCUMENT_ROOT".to_string(),
wwwroot.to_string_lossy().to_string(),
);
environment_variables.insert(
"PATH_INFO".to_string(),
match &path_info {
Some(path_info) => format!("/{}", path_info),
None => "".to_string(),
},
);
environment_variables.insert(
"PATH_TRANSLATED".to_string(),
match &path_info {
Some(path_info) => {
let mut path_translated = execute_pathbuf.clone();
path_translated.push(path_info);
path_translated.to_string_lossy().to_string()
}
None => "".to_string(),
},
);
environment_variables.insert(
"REQUEST_METHOD".to_string(),
hyper_request.method().to_string(),
);
environment_variables.insert("GATEWAY_INTERFACE".to_string(), "CGI/1.1".to_string());
environment_variables.insert("SCGI".to_string(), "1".to_string());
environment_variables.insert(
"REQUEST_URI".to_string(),
format!(
"{}{}",
original_request_uri.path(),
match original_request_uri.query() {
Some(query) => format!("?{}", query),
None => String::from(""),
}
),
);
environment_variables.insert(
"REMOTE_PORT".to_string(),
socket_data.remote_addr.port().to_string(),
);
environment_variables.insert(
"REMOTE_ADDR".to_string(),
socket_data.remote_addr.ip().to_canonical().to_string(),
);
environment_variables.insert(
"SCRIPT_FILENAME".to_string(),
execute_pathbuf.to_string_lossy().to_string(),
);
if let Ok(script_path) = execute_pathbuf.as_path().strip_prefix(wwwroot) {
environment_variables.insert(
"SCRIPT_NAME".to_string(),
format!(
"/{}",
match cfg!(windows) {
true => script_path.to_string_lossy().to_string().replace("\\", "/"),
false => script_path.to_string_lossy().to_string(),
}
),
);
}
if socket_data.encrypted {
environment_variables.insert("HTTPS".to_string(), "ON".to_string());
}
let mut content_length_set = false;
for (header_name, header_value) in hyper_request.headers().iter() {
let env_header_name = match *header_name {
header::CONTENT_LENGTH => {
content_length_set = true;
"CONTENT_LENGTH".to_string()
}
header::CONTENT_TYPE => "CONTENT_TYPE".to_string(),
_ => {
let mut result = String::new();
result.push_str("HTTP_");
for c in header_name.as_str().to_uppercase().chars() {
if c.is_alphanumeric() {
result.push(c);
} else {
result.push('_');
}
}
result
}
};
if environment_variables.contains_key(&env_header_name) {
let value = environment_variables.get_mut(&env_header_name);
if let Some(value) = value {
if env_header_name == "HTTP_COOKIE" {
value.push_str("; ");
} else {
// See https://stackoverflow.com/a/1801191
value.push_str(", ");
}
value.push_str(String::from_utf8_lossy(header_value.as_bytes()).as_ref());
} else {
environment_variables.insert(
env_header_name,
String::from_utf8_lossy(header_value.as_bytes()).to_string(),
);
}
} else {
environment_variables.insert(
env_header_name,
String::from_utf8_lossy(header_value.as_bytes()).to_string(),
);
}
}
if !content_length_set {
environment_variables.insert("CONTENT_LENGTH".to_string(), "0".to_string());
}
let (hyper_request, _, _) = request.into_parts();
execute_scgi(hyper_request, error_logger, scgi_to, environment_variables).await
}
async fn execute_scgi(
hyper_request: HyperRequest,
error_logger: &ErrorLogger,
scgi_to: &str,
mut environment_variables: LinkedHashMap<String, String>,
) -> Result<ResponseData, Box<dyn Error + Send + Sync>> {
let (_, body) = hyper_request.into_parts();
// Insert other environment variables
for (key, value) in env::vars_os() {
let key_string = key.to_string_lossy().to_string();
let value_string = value.to_string_lossy().to_string();
environment_variables
.entry(key_string)
.or_insert(value_string);
}
let scgi_to_fixed = if let Some(stripped) = scgi_to.strip_prefix("unix:///") {
// hyper::Uri fails to parse a string if there is an empty authority, so add an "ignore" authority to Unix socket URLs
&format!("unix://ignore/{}", stripped)
} else {
scgi_to
};
let scgi_to_url = scgi_to_fixed.parse::<hyper::Uri>()?;
let scheme_str = scgi_to_url.scheme_str();
let (socket_reader, mut socket_writer) = match scheme_str {
Some("tcp") => {
let host = match scgi_to_url.host() {
Some(host) => host,
None => Err(anyhow::anyhow!("The SCGI URL doesn't include the host"))?,
};
let port = match scgi_to_url.port_u16() {
Some(port) => port,
None => Err(anyhow::anyhow!("The SCGI URL doesn't include the port"))?,
};
let addr = format!("{}:{}", host, port);
match connect_tcp(&addr).await {
Ok(data) => data,
Err(err) => match err.kind() {
tokio::io::ErrorKind::ConnectionRefused
| tokio::io::ErrorKind::NotFound
| tokio::io::ErrorKind::HostUnreachable => {
error_logger
.log(&format!("Service unavailable: {}", err))
.await;
return Ok(
ResponseData::builder_without_request()
.status(StatusCode::SERVICE_UNAVAILABLE)
.build(),
);
}
_ => Err(err)?,
},
}
}
Some("unix") => {
let path = scgi_to_url.path();
match connect_unix(path).await {
Ok(data) => data,
Err(err) => match err.kind() {
tokio::io::ErrorKind::ConnectionRefused
| tokio::io::ErrorKind::NotFound
| tokio::io::ErrorKind::HostUnreachable => {
error_logger
.log(&format!("Service unavailable: {}", err))
.await;
return Ok(
ResponseData::builder_without_request()
.status(StatusCode::SERVICE_UNAVAILABLE)
.build(),
);
}
_ => Err(err)?,
},
}
}
_ => Err(anyhow::anyhow!(
"Only HTTP and HTTPS reverse proxy URLs are supported."
))?,
};
// Create environment variable netstring
let mut environment_variables_to_wrap = Vec::new();
for (key, value) in environment_variables.iter() {
let mut environment_variable = Vec::new();
environment_variable.extend_from_slice(key.as_bytes());
environment_variable.push(b'\0');
environment_variable.extend_from_slice(value.as_bytes());
environment_variable.push(b'\0');
if key == "CONTENT_LENGTH" {
environment_variable.append(&mut environment_variables_to_wrap);
environment_variables_to_wrap = environment_variable;
} else {
environment_variables_to_wrap.append(&mut environment_variable);
}
}
let environment_variables_to_wrap_length = environment_variables_to_wrap.len();
let mut environment_variables_netstring = Vec::new();
environment_variables_netstring
.extend_from_slice(environment_variables_to_wrap_length.to_string().as_bytes());
environment_variables_netstring.push(b':');
environment_variables_netstring.append(&mut environment_variables_to_wrap);
environment_variables_netstring.push(b',');
// Write environment variable netstring
socket_writer
.write_all(&environment_variables_netstring)
.await?;
let cgi_stdin_reader = StreamReader::new(body.into_data_stream().map_err(std::io::Error::other));
// Emulated standard input and standard output
// SCGI doesn't support standard error
let stdin = socket_writer;
let stdout = socket_reader;
let mut cgi_response = CgiResponse::new(stdout);
let stdin_copy_future = Copier::new(cgi_stdin_reader, stdin).copy();
let mut stdin_copy_future_pinned = Box::pin(stdin_copy_future);
let mut headers = [EMPTY_HEADER; 128];
let mut early_stdin_copied = false;
// Needed to wrap this in another scope to prevent errors with multiple mutable borrows.
{
let mut head_obtained = false;
let stdout_parse_future = cgi_response.get_head();
tokio::pin!(stdout_parse_future);
// Cannot use a loop with tokio::select, since stdin_copy_future_pinned being constantly ready will make the web server stop responding to HTTP requests
tokio::select! {
biased;
obtained_head = &mut stdout_parse_future => {
let obtained_head = obtained_head?;
if !obtained_head.is_empty() {
httparse::parse_headers(obtained_head, &mut headers)?;
}
head_obtained = true;
},
result = &mut stdin_copy_future_pinned => {
early_stdin_copied = true;
result?;
}
}
if !head_obtained {
// Kept it same as in the tokio::select macro
let obtained_head = stdout_parse_future.await?;
if !obtained_head.is_empty() {
httparse::parse_headers(obtained_head, &mut headers)?;
}
}
}
let mut response_builder = Response::builder();
let mut status_code = 200;
for header in headers {
if header == EMPTY_HEADER {
break;
}
let mut is_status_header = false;
match &header.name.to_lowercase() as &str {
"location" => {
if !(300..=399).contains(&status_code) {
status_code = 302;
}
}
"status" => {
is_status_header = true;
let header_value_cow = String::from_utf8_lossy(header.value);
let mut split_status = header_value_cow.split(" ");
let first_part = split_status.next();
if let Some(first_part) = first_part {
if first_part.starts_with("HTTP/") {
let second_part = split_status.next();
if let Some(second_part) = second_part {
if let Ok(parsed_status_code) = second_part.parse::<u16>() {
status_code = parsed_status_code;
}
}
} else if let Ok(parsed_status_code) = first_part.parse::<u16>() {
status_code = parsed_status_code;
}
}
}
_ => (),
}
if !is_status_header {
response_builder = response_builder.header(header.name, header.value);
}
}
response_builder = response_builder.status(status_code);
let reader_stream = ReaderStream::new(cgi_response);
let stream_body = StreamBody::new(reader_stream.map_ok(Frame::data));
let boxed_body = stream_body.boxed();
let response = response_builder.body(boxed_body)?;
Ok(
ResponseData::builder_without_request()
.response(response)
.parallel_fn(async move {
if !early_stdin_copied {
stdin_copy_future_pinned.await.unwrap_or_default();
}
})
.build(),
)
}
async fn connect_tcp(
addr: &str,
) -> Result<
(
Box<dyn AsyncRead + Send + Sync + Unpin>,
Box<dyn AsyncWrite + Send + Sync + Unpin>,
),
tokio::io::Error,
> {
let socket = TcpStream::connect(addr).await?;
socket.set_nodelay(true)?;
let (socket_reader_set, socket_writer_set) = tokio::io::split(socket);
Ok((Box::new(socket_reader_set), Box::new(socket_writer_set)))
}
#[allow(dead_code)]
#[cfg(unix)]
async fn connect_unix(
path: &str,
) -> Result<
(
Box<dyn AsyncRead + Send + Sync + Unpin>,
Box<dyn AsyncWrite + Send + Sync + Unpin>,
),
tokio::io::Error,
> {
use tokio::net::UnixStream;
let socket = UnixStream::connect(path).await?;
let (socket_reader_set, socket_writer_set) = tokio::io::split(socket);
Ok((Box::new(socket_reader_set), Box::new(socket_writer_set)))
}
#[allow(dead_code)]
#[cfg(not(unix))]
async fn connect_unix(
_path: &str,
) -> Result<
(
Box<dyn AsyncRead + Send + Sync + Unpin>,
Box<dyn AsyncWrite + Send + Sync + Unpin>,
),
tokio::io::Error,
> {
Err(tokio::io::Error::new(
tokio::io::ErrorKind::Unsupported,
"Unix sockets are not supports on non-Unix platforms.",
))
}
|