aboutsummaryrefslogtreecommitdiff
path: root/src/web/web_server.rs
blob: 9d13b4685755f7c08451dc98f47754cf50e6798b (plain) (blame)
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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
use std::fs::{self, Permissions};
use std::os::unix::prelude::PermissionsExt;
use std::{convert::Infallible, sync::Arc};

use tokio::net::{TcpListener, UnixListener};
use tokio::sync::watch;

use hyper::{
	body::Body,
	body::Incoming as IncomingBody,
	header::{HeaderValue, HOST},
	Method, Request, Response, StatusCode,
};

use opentelemetry::{
	global,
	metrics::{Counter, ValueRecorder},
	trace::{FutureExt, TraceContextExt, Tracer},
	Context, KeyValue,
};

use crate::error::*;

use garage_api_common::cors::{
	add_cors_headers, find_matching_cors_rule, handle_options_for_bucket,
};
use garage_api_common::generic_server::{server_loop, UnixListenerOn};
use garage_api_common::helpers::*;
use garage_api_s3::api_server::ResBody;
use garage_api_s3::error::{
	CommonErrorDerivative, Error as ApiError, OkOrBadRequest, OkOrInternalError,
};
use garage_api_s3::get::{handle_get_without_ctx, handle_head_without_ctx};

use garage_model::bucket_table::{self, RoutingRule};
use garage_model::garage::Garage;

use garage_table::*;
use garage_util::data::Uuid;
use garage_util::error::Error as GarageError;
use garage_util::forwarded_headers;
use garage_util::metrics::{gen_trace_id, RecordDuration};
use garage_util::socket_address::UnixOrTCPSocketAddress;

struct WebMetrics {
	request_counter: Counter<u64>,
	error_counter: Counter<u64>,
	request_duration: ValueRecorder<f64>,
}

impl WebMetrics {
	fn new() -> Self {
		let meter = global::meter("garage/web");
		Self {
			request_counter: meter
				.u64_counter("web.request_counter")
				.with_description("Number of requests to the web endpoint")
				.init(),
			error_counter: meter
				.u64_counter("web.error_counter")
				.with_description("Number of requests to the web endpoint resulting in errors")
				.init(),
			request_duration: meter
				.f64_value_recorder("web.request_duration")
				.with_description("Duration of requests to the web endpoint")
				.init(),
		}
	}
}

pub struct WebServer {
	garage: Arc<Garage>,
	metrics: Arc<WebMetrics>,
	root_domain: String,
}

impl WebServer {
	/// Run a web server
	pub fn new(garage: Arc<Garage>, root_domain: String) -> Arc<Self> {
		let metrics = Arc::new(WebMetrics::new());
		Arc::new(WebServer {
			garage,
			metrics,
			root_domain,
		})
	}

	pub async fn run(
		self: Arc<Self>,
		bind_addr: UnixOrTCPSocketAddress,
		must_exit: watch::Receiver<bool>,
	) -> Result<(), GarageError> {
		let server_name = "Web".into();
		info!("Web server listening on {}", bind_addr);

		match bind_addr {
			UnixOrTCPSocketAddress::TCPSocket(addr) => {
				let listener = TcpListener::bind(addr).await?;

				let handler =
					move |stream, socketaddr| self.clone().handle_request(stream, socketaddr);
				server_loop(server_name, listener, handler, must_exit).await
			}
			UnixOrTCPSocketAddress::UnixSocket(ref path) => {
				if path.exists() {
					fs::remove_file(path)?
				}

				let listener = UnixListener::bind(path)?;
				let listener = UnixListenerOn(listener, path.display().to_string());

				fs::set_permissions(path, Permissions::from_mode(0o222))?;

				let handler =
					move |stream, socketaddr| self.clone().handle_request(stream, socketaddr);
				server_loop(server_name, listener, handler, must_exit).await
			}
		}
	}

	async fn handle_request(
		self: Arc<Self>,
		req: Request<IncomingBody>,
		addr: String,
	) -> Result<Response<BoxBody<Error>>, http::Error> {
		if let Ok(forwarded_for_ip_addr) =
			forwarded_headers::handle_forwarded_for_headers(req.headers())
		{
			info!(
				"{} (via {}) {} {}",
				forwarded_for_ip_addr,
				addr,
				req.method(),
				req.uri()
			);
		} else {
			info!("{} {} {}", addr, req.method(), req.uri());
		}

		// Lots of instrumentation
		let tracer = opentelemetry::global::tracer("garage");
		let span = tracer
			.span_builder(format!("Web {} request", req.method()))
			.with_trace_id(gen_trace_id())
			.with_attributes(vec![
				KeyValue::new("method", format!("{}", req.method())),
				KeyValue::new("uri", req.uri().to_string()),
			])
			.start(&tracer);

		let metrics_tags = &[KeyValue::new("method", req.method().to_string())];

		// The actual handler
		let res = self
			.serve_file(&req)
			.with_context(Context::current_with_span(span))
			.record_duration(&self.metrics.request_duration, &metrics_tags[..])
			.await;

		// More instrumentation
		self.metrics.request_counter.add(1, &metrics_tags[..]);

		// Returning the result
		match res {
			Ok(res) => {
				debug!("{} {} {}", req.method(), res.status(), req.uri());
				Ok(res
					.map(|body| BoxBody::new(http_body_util::BodyExt::map_err(body, Error::from))))
			}
			Err(error) => {
				info!(
					"{} {} {} {}",
					req.method(),
					error.http_status_code(),
					req.uri(),
					error
				);
				self.metrics.error_counter.add(
					1,
					&[
						metrics_tags[0].clone(),
						KeyValue::new("status_code", error.http_status_code().to_string()),
					],
				);
				Ok(error_to_res(error))
			}
		}
	}

	async fn check_key_exists(self: &Arc<Self>, bucket_id: Uuid, key: &str) -> Result<bool, Error> {
		let exists = self
			.garage
			.object_table
			.get(&bucket_id, &key.to_string())
			.await?
			.map(|object| object.versions().iter().any(|v| v.is_data()))
			.unwrap_or(false);
		Ok(exists)
	}

	async fn serve_file(
		self: &Arc<Self>,
		req: &Request<IncomingBody>,
	) -> Result<Response<BoxBody<ApiError>>, Error> {
		// Get http authority string (eg. [::1]:3902 or garage.tld:80)
		let authority = req
			.headers()
			.get(HOST)
			.ok_or_bad_request("HOST header required")?
			.to_str()?;

		// Get bucket
		let host = authority_to_host(authority)?;

		let bucket_name = host_to_bucket(&host, &self.root_domain).unwrap_or(&host);
		let bucket_id = self
			.garage
			.bucket_alias_table
			.get(&EmptyKey, &bucket_name.to_string())
			.await?
			.and_then(|x| x.state.take())
			.ok_or(Error::NotFound)?;

		// Check bucket isn't deleted and has website access enabled
		let bucket = self
			.garage
			.bucket_helper()
			.get_existing_bucket(bucket_id)
			.await
			.map_err(|_| Error::NotFound)?;
		let bucket_params = bucket.state.into_option().unwrap();

		let website_config = bucket_params
			.website_config
			.get()
			.as_ref()
			.ok_or(Error::NotFound)?;

		// Get path
		let path = req.uri().path().to_string();
		let index = &website_config.index_document;
		let routing_result = path_to_keys(&path, index, &website_config.routing_rules)?;

		debug!(
			"Selected bucket: \"{}\" {:?}, routing to {:?}",
			bucket_name, bucket_id, routing_result,
		);

		let ret_doc = match (req.method(), routing_result.main_target()) {
			(&Method::OPTIONS, _) => handle_options_for_bucket(req, &bucket_params)
				.map_err(ApiError::from)
				.map(|res| res.map(|_empty_body: EmptyBody| empty_body())),
			(_, Err((url, code))) => Ok(Response::builder()
				.status(code)
				.header("Location", url)
				.body(empty_body())
				.unwrap()),
			(_, Ok((key, code))) => {
				handle_inner(self.garage.clone(), req, bucket_id, key, code).await
			}
		};

		// Try handling errors if bucket configuration provided fallbacks
		let ret_doc_with_redir = match (&ret_doc, &routing_result) {
			(
				Err(ApiError::NoSuchKey),
				RoutingResult::LoadOrRedirect {
					redirect_if_exists,
					redirect_url,
					redirect_code,
					..
				},
			) => {
				let redirect = if let Some(redirect_key) = redirect_if_exists {
					self.check_key_exists(bucket_id, redirect_key.as_str())
						.await?
				} else {
					true
				};
				if redirect {
					Ok(Response::builder()
						.status(redirect_code)
						.header("Location", redirect_url)
						.body(empty_body())
						.unwrap())
				} else {
					ret_doc
				}
			}
			(
				Err(ApiError::NoSuchKey),
				RoutingResult::LoadOrAlternativeError {
					redirect_key,
					redirect_code,
					..
				},
			) => {
				handle_inner(
					self.garage.clone(),
					req,
					bucket_id,
					redirect_key,
					*redirect_code,
				)
				.await
			}
			_ => ret_doc,
		};

		match ret_doc_with_redir.map_err(Error::from) {
			Err(error) => {
				// For a HEAD or OPTIONS method, and for non-4xx errors,
				// we don't return the error document as content,
				// we return above and just return the error message
				// by relying on err_to_res that is called when we return an Err.
				if *req.method() == Method::HEAD
					|| *req.method() == Method::OPTIONS
					|| !error.http_status_code().is_client_error()
				{
					return Err(error);
				}

				// If no error document is set: just return the error directly
				let error_document = match &website_config.error_document {
					Some(ed) => ed.trim_start_matches('/').to_owned(),
					None => return Err(error),
				};

				// We want to return the error document
				// Create a fake HTTP request with path = the error document
				let req2 = Request::builder()
					.method("GET")
					.uri(format!("http://{}/{}", host, &error_document))
					.body(empty_body::<Infallible>())
					.unwrap();

				match handle_inner(
					self.garage.clone(),
					&req2,
					bucket_id,
					&error_document,
					error.http_status_code(),
				)
				.await
				{
					Ok(mut error_doc) => {
						// The error won't be logged back in handle_request,
						// so log it here
						info!(
							"{} {} {} {}",
							req.method(),
							req.uri(),
							error.http_status_code(),
							error
						);

						// Preserve error message in a special header
						for error_line in error.to_string().split('\n') {
							if let Ok(v) = HeaderValue::from_bytes(error_line.as_bytes()) {
								error_doc.headers_mut().append("X-Garage-Error", v);
							}
						}

						Ok(error_doc)
					}
					Err(error_doc_error) => {
						warn!(
							"Couldn't get error document {} for bucket {:?}: {}",
							error_document, bucket_id, error_doc_error
						);
						Err(error)
					}
				}
			}
			Ok(mut resp) => {
				// Maybe add CORS headers
				if let Some(rule) = find_matching_cors_rule(&bucket_params, req)? {
					add_cors_headers(&mut resp, rule)
						.ok_or_internal_error("Invalid bucket CORS configuration")?;
				}
				Ok(resp)
			}
		}
	}
}

async fn handle_inner(
	garage: Arc<Garage>,
	req: &Request<impl Body>,
	bucket_id: Uuid,
	key: &str,
	status_code: StatusCode,
) -> Result<Response<ResBody>, ApiError> {
	if status_code != StatusCode::OK {
		// If we are returning an error document, discard all headers from
		// the original request that would have influenced the result:
		// - Range header, we don't want to return a subrange of the error document
		// - Caching directives such as If-None-Match, etc, which are not relevant
		let cleaned_req = Request::builder()
			.uri(req.uri())
			.body(empty_body::<Infallible>())
			.unwrap();

		let mut ret = match req.method() {
			&Method::HEAD => {
				handle_head_without_ctx(garage, &cleaned_req, bucket_id, key, None).await?
			}
			&Method::GET => {
				handle_get_without_ctx(
					garage,
					&cleaned_req,
					bucket_id,
					key,
					None,
					Default::default(),
				)
				.await?
			}
			_ => return Err(ApiError::bad_request("HTTP method not supported")),
		};

		*ret.status_mut() = status_code;

		Ok(ret)
	} else {
		match req.method() {
			&Method::HEAD => handle_head_without_ctx(garage, req, bucket_id, key, None).await,
			&Method::GET => {
				handle_get_without_ctx(garage, req, bucket_id, key, None, Default::default()).await
			}
			_ => Err(ApiError::bad_request("HTTP method not supported")),
		}
	}
}

fn error_to_res(e: Error) -> Response<BoxBody<Error>> {
	// If we are here, it is either that:
	// - there was an error before trying to get the requested URL
	//   from the bucket (e.g. bucket not found)
	// - there was an error processing the request and (the request
	//   was a HEAD request or we couldn't get the error document)
	// We do NOT enter this code path when returning the bucket's
	// error document (this is handled in serve_file)
	let body = string_body(format!("{}\n", e));
	let mut http_error = Response::new(body);
	*http_error.status_mut() = e.http_status_code();
	e.add_headers(http_error.headers_mut());
	http_error
}

#[derive(Debug, PartialEq)]
enum RoutingResult {
	// Load a key and use `code` as status, or fallback to normal 404 handler if not found
	LoadKey {
		key: String,
		code: StatusCode,
	},
	// Load a key and use `200` as status, or fallback with a redirection using `redirect_code`
	// as status
	LoadOrRedirect {
		key: String,
		redirect_if_exists: Option<String>,
		redirect_url: String,
		redirect_code: StatusCode,
	},
	// Load a key and use `200` as status, or fallback by loading a different key and use
	// `redirect_code` as status
	LoadOrAlternativeError {
		key: String,
		redirect_key: String,
		redirect_code: StatusCode,
	},
	// Send an http redirect with `code` as status
	Redirect {
		url: String,
		code: StatusCode,
	},
}

impl RoutingResult {
	// return Ok((key_to_deref, status_code)) or Err((redirect_target, status_code))
	fn main_target(&self) -> Result<(&str, StatusCode), (&str, StatusCode)> {
		match self {
			RoutingResult::LoadKey { key, code } => Ok((key, *code)),
			RoutingResult::LoadOrRedirect { key, .. } => Ok((key, StatusCode::OK)),
			RoutingResult::LoadOrAlternativeError { key, .. } => Ok((key, StatusCode::OK)),
			RoutingResult::Redirect { url, code } => Err((url, *code)),
		}
	}
}

/// Path to key
///
/// Convert the provided path to the internal key
/// When a path ends with "/", we append the index name to match traditional web server behavior
/// which is also AWS S3 behavior.
///
/// Check: https://docs.aws.amazon.com/AmazonS3/latest/userguide/IndexDocumentSupport.html
fn path_to_keys(
	path: &str,
	index: &str,
	routing_rules: &[RoutingRule],
) -> Result<RoutingResult, Error> {
	let path_utf8 = percent_encoding::percent_decode_str(path).decode_utf8()?;

	let base_key = match path_utf8.strip_prefix("/") {
		Some(bk) => bk,
		None => return Err(Error::BadRequest("Path must start with a / (slash)".into())),
	};

	let is_bucket_root = base_key.is_empty();
	let is_trailing_slash = path_utf8.ends_with("/");

	let key = if is_bucket_root || is_trailing_slash {
		// we can't store anything at the root, so we need to query the index
		// if the key end with a slash, we always query the index
		format!("{base_key}{index}")
	} else {
		// if the key doesn't end with `/`, leave it unmodified
		base_key.to_string()
	};

	let mut routing_rules_iter = routing_rules.iter();
	let key = loop {
		let Some(routing_rule) = routing_rules_iter.next() else {
			break key;
		};

		let Ok(status_code) = StatusCode::from_u16(routing_rule.redirect.http_redirect_code) else {
			continue;
		};
		if let Some(condition) = &routing_rule.condition {
			let suffix = if let Some(prefix) = &condition.prefix {
				let Some(suffix) = key.strip_prefix(prefix) else {
					continue;
				};
				Some(suffix)
			} else {
				None
			};
			let mut target = compute_redirect_target(&routing_rule.redirect, suffix);
			let query_alternative_key =
				status_code == StatusCode::OK || status_code == StatusCode::NOT_FOUND;
			let redirect_on_error =
				condition.http_error_code == Some(StatusCode::NOT_FOUND.as_u16());
			match (query_alternative_key, redirect_on_error) {
				(false, false) => {
					return Ok(RoutingResult::Redirect {
						url: target,
						code: status_code,
					})
				}
				(true, false) => {
					// we need to remove the leading /
					target.remove(0);
					if status_code == StatusCode::OK {
						break target;
					} else {
						return Ok(RoutingResult::LoadKey {
							key: target,
							code: status_code,
						});
					}
				}
				(false, true) => {
					return Ok(RoutingResult::LoadOrRedirect {
						key,
						redirect_if_exists: None,
						redirect_url: target,
						redirect_code: status_code,
					});
				}
				(true, true) => {
					target.remove(0);
					return Ok(RoutingResult::LoadOrAlternativeError {
						key,
						redirect_key: target,
						redirect_code: status_code,
					});
				}
			}
		} else {
			let target = compute_redirect_target(&routing_rule.redirect, None);
			return Ok(RoutingResult::Redirect {
				url: target,
				code: status_code,
			});
		}
	};

	if is_bucket_root || is_trailing_slash {
		Ok(RoutingResult::LoadKey {
			key,
			code: StatusCode::OK,
		})
	} else {
		Ok(RoutingResult::LoadOrRedirect {
			redirect_if_exists: Some(format!("{key}/{index}")),
			// we can't use `path` because key might have changed substentially in case of
			// routing rules
			redirect_url: percent_encoding::percent_encode(
				format!("/{key}/").as_bytes(),
				PATH_ENCODING_SET,
			)
			.to_string(),
			key,
			redirect_code: StatusCode::FOUND,
		})
	}
}

// per https://url.spec.whatwg.org/#path-percent-encode-set
const PATH_ENCODING_SET: &percent_encoding::AsciiSet = &percent_encoding::CONTROLS
	.add(b' ')
	.add(b'"')
	.add(b'#')
	.add(b'<')
	.add(b'>')
	.add(b'?')
	.add(b'`')
	.add(b'{')
	.add(b'}');

fn compute_redirect_target(redirect: &bucket_table::Redirect, suffix: Option<&str>) -> String {
	let mut res = String::new();
	if let Some(hostname) = &redirect.hostname {
		if let Some(protocol) = &redirect.protocol {
			res.push_str(protocol);
			res.push_str("://");
		} else {
			res.push_str("//");
		}
		res.push_str(hostname);
	}
	res.push('/');
	if let Some(replace_key_prefix) = &redirect.replace_key_prefix {
		res.push_str(replace_key_prefix);
		if let Some(suffix) = suffix {
			res.push_str(suffix)
		}
	} else if let Some(replace_key) = &redirect.replace_key {
		res.push_str(replace_key)
	}
	res
}

#[cfg(test)]
mod tests {
	use super::*;

	#[test]
	fn path_to_keys_test() -> Result<(), Error> {
		assert_eq!(
			path_to_keys("/file%20.jpg", "index.html", &[])?,
			RoutingResult::LoadOrRedirect {
				key: "file .jpg".to_string(),
				redirect_url: "/file%20.jpg/".to_string(),
				redirect_if_exists: Some("file .jpg/index.html".to_string()),
				redirect_code: StatusCode::FOUND,
			}
		);
		assert_eq!(
			path_to_keys("/%20t/", "index.html", &[])?,
			RoutingResult::LoadKey {
				key: " t/index.html".to_string(),
				code: StatusCode::OK
			}
		);
		assert_eq!(
			path_to_keys("/", "index.html", &[])?,
			RoutingResult::LoadKey {
				key: "index.html".to_string(),
				code: StatusCode::OK
			}
		);
		assert_eq!(
			path_to_keys("/hello", "index.html", &[])?,
			RoutingResult::LoadOrRedirect {
				key: "hello".to_string(),
				redirect_url: "/hello/".to_string(),
				redirect_if_exists: Some("hello/index.html".to_string()),
				redirect_code: StatusCode::FOUND,
			}
		);
		assert!(path_to_keys("", "index.html", &[]).is_err());
		assert!(path_to_keys("i/am/relative", "index.html", &[]).is_err());
		Ok(())
	}
}