Line data Source code
1 : use std::str::FromStr;
2 : use std::sync::{Arc, LazyLock};
3 : use std::time::{Duration, Instant};
4 :
5 : use anyhow::Context;
6 : use control_plane::storage_controller::{AttachHookRequest, InspectRequest};
7 : use futures::Future;
8 : use http_utils::endpoint::{
9 : self, auth_middleware, check_permission_with, profile_cpu_handler, profile_heap_handler,
10 : request_span,
11 : };
12 : use http_utils::error::ApiError;
13 : use http_utils::failpoints::failpoints_handler;
14 : use http_utils::json::{json_request, json_response};
15 : use http_utils::request::{must_get_query_param, parse_query_param, parse_request_param};
16 : use http_utils::{RequestExt, RouterBuilder};
17 : use hyper::header::CONTENT_TYPE;
18 : use hyper::{Body, Request, Response, StatusCode, Uri};
19 : use metrics::{BuildInfo, NeonMetrics};
20 : use pageserver_api::controller_api::{
21 : MetadataHealthListOutdatedRequest, MetadataHealthListOutdatedResponse,
22 : MetadataHealthListUnhealthyResponse, MetadataHealthUpdateRequest, MetadataHealthUpdateResponse,
23 : NodeAvailability, NodeConfigureRequest, NodeRegisterRequest, SafekeeperSchedulingPolicyRequest,
24 : ShardsPreferredAzsRequest, TenantCreateRequest, TenantPolicyRequest, TenantShardMigrateRequest,
25 : };
26 : use pageserver_api::models::{
27 : DetachBehavior, LsnLeaseRequest, TenantConfigPatchRequest, TenantConfigRequest,
28 : TenantLocationConfigRequest, TenantShardSplitRequest, TenantTimeTravelRequest,
29 : TimelineArchivalConfigRequest, TimelineCreateRequest,
30 : };
31 : use pageserver_api::shard::TenantShardId;
32 : use pageserver_api::upcall_api::{ReAttachRequest, ValidateRequest};
33 : use pageserver_client::{BlockUnblock, mgmt_api};
34 : use routerify::Middleware;
35 : use tokio_util::sync::CancellationToken;
36 : use tracing::warn;
37 : use utils::auth::{Scope, SwappableJwtAuth};
38 : use utils::id::{NodeId, TenantId, TimelineId};
39 :
40 : use crate::http;
41 : use crate::metrics::{
42 : HttpRequestLatencyLabelGroup, HttpRequestStatusLabelGroup, METRICS_REGISTRY,
43 : PageserverRequestLabelGroup,
44 : };
45 : use crate::persistence::SafekeeperUpsert;
46 : use crate::reconciler::ReconcileError;
47 : use crate::service::{LeadershipStatus, RECONCILE_TIMEOUT, STARTUP_RECONCILE_TIMEOUT, Service};
48 :
49 : /// State available to HTTP request handlers
50 : pub struct HttpState {
51 : service: Arc<crate::service::Service>,
52 : auth: Option<Arc<SwappableJwtAuth>>,
53 : rate_limiter: governor::DefaultKeyedRateLimiter<TenantId>,
54 : neon_metrics: NeonMetrics,
55 : allowlist_routes: &'static [&'static str],
56 : }
57 :
58 : impl HttpState {
59 0 : pub fn new(
60 0 : service: Arc<crate::service::Service>,
61 0 : auth: Option<Arc<SwappableJwtAuth>>,
62 0 : build_info: BuildInfo,
63 0 : ) -> Self {
64 0 : let quota = governor::Quota::per_second(service.get_config().tenant_rate_limit);
65 0 : Self {
66 0 : service,
67 0 : auth,
68 0 : rate_limiter: governor::RateLimiter::keyed(quota),
69 0 : neon_metrics: NeonMetrics::new(build_info),
70 0 : allowlist_routes: &[
71 0 : "/status",
72 0 : "/ready",
73 0 : "/metrics",
74 0 : "/profile/cpu",
75 0 : "/profile/heap",
76 0 : ],
77 0 : }
78 0 : }
79 : }
80 :
81 : #[inline(always)]
82 0 : fn get_state(request: &Request<Body>) -> &HttpState {
83 0 : request
84 0 : .data::<Arc<HttpState>>()
85 0 : .expect("unknown state type")
86 0 : .as_ref()
87 0 : }
88 :
89 : /// Rate limits tenant requests.
90 : ///
91 : /// TODO: this should be a request middleware, but requires us to extract the tenant ID from
92 : /// different URLs in a systematic way.
93 : ///
94 : /// TODO: consider returning a 429 response if these start piling up.
95 0 : async fn maybe_rate_limit(request: &Request<Body>, tenant_id: TenantId) {
96 0 : // Check if the tenant should be rate-limited.
97 0 : let rate_limiter = &get_state(request).rate_limiter;
98 0 : if rate_limiter.check_key(&tenant_id).is_ok() {
99 0 : return;
100 0 : }
101 0 :
102 0 : // Measure the rate limiting delay.
103 0 : let _timer = METRICS_REGISTRY
104 0 : .metrics_group
105 0 : .storage_controller_http_request_rate_limited
106 0 : .start_timer();
107 :
108 : // Log rate limited tenants once every 10 seconds.
109 : static LOG_RATE_LIMITER: LazyLock<governor::DefaultKeyedRateLimiter<TenantId>> =
110 0 : LazyLock::new(|| {
111 0 : let quota = governor::Quota::with_period(Duration::from_secs(10)).unwrap();
112 0 : governor::RateLimiter::keyed(quota)
113 0 : });
114 :
115 0 : if LOG_RATE_LIMITER.check_key(&tenant_id).is_ok() {
116 0 : warn!("tenant {tenant_id} is rate limited")
117 0 : }
118 :
119 : // Wait for quota.
120 0 : rate_limiter.until_key_ready(&tenant_id).await;
121 0 : }
122 :
123 : /// Pageserver calls into this on startup, to learn which tenants it should attach
124 0 : async fn handle_re_attach(req: Request<Body>) -> Result<Response<Body>, ApiError> {
125 0 : check_permissions(&req, Scope::GenerationsApi)?;
126 :
127 0 : let mut req = match maybe_forward(req).await {
128 0 : ForwardOutcome::Forwarded(res) => {
129 0 : return res;
130 : }
131 0 : ForwardOutcome::NotForwarded(req) => req,
132 : };
133 :
134 0 : let reattach_req = json_request::<ReAttachRequest>(&mut req).await?;
135 0 : let state = get_state(&req);
136 0 : json_response(StatusCode::OK, state.service.re_attach(reattach_req).await?)
137 0 : }
138 :
139 : /// Pageserver calls into this before doing deletions, to confirm that it still
140 : /// holds the latest generation for the tenants with deletions enqueued
141 0 : async fn handle_validate(req: Request<Body>) -> Result<Response<Body>, ApiError> {
142 0 : check_permissions(&req, Scope::GenerationsApi)?;
143 :
144 0 : let mut req = match maybe_forward(req).await {
145 0 : ForwardOutcome::Forwarded(res) => {
146 0 : return res;
147 : }
148 0 : ForwardOutcome::NotForwarded(req) => req,
149 : };
150 :
151 0 : let validate_req = json_request::<ValidateRequest>(&mut req).await?;
152 0 : let state = get_state(&req);
153 0 : json_response(StatusCode::OK, state.service.validate(validate_req).await?)
154 0 : }
155 :
156 : /// Call into this before attaching a tenant to a pageserver, to acquire a generation number
157 : /// (in the real control plane this is unnecessary, because the same program is managing
158 : /// generation numbers and doing attachments).
159 0 : async fn handle_attach_hook(req: Request<Body>) -> Result<Response<Body>, ApiError> {
160 0 : check_permissions(&req, Scope::Admin)?;
161 :
162 0 : let mut req = match maybe_forward(req).await {
163 0 : ForwardOutcome::Forwarded(res) => {
164 0 : return res;
165 : }
166 0 : ForwardOutcome::NotForwarded(req) => req,
167 : };
168 :
169 0 : let attach_req = json_request::<AttachHookRequest>(&mut req).await?;
170 0 : let state = get_state(&req);
171 0 :
172 0 : json_response(
173 0 : StatusCode::OK,
174 0 : state
175 0 : .service
176 0 : .attach_hook(attach_req)
177 0 : .await
178 0 : .map_err(ApiError::InternalServerError)?,
179 : )
180 0 : }
181 :
182 0 : async fn handle_inspect(req: Request<Body>) -> Result<Response<Body>, ApiError> {
183 0 : check_permissions(&req, Scope::Admin)?;
184 :
185 0 : let mut req = match maybe_forward(req).await {
186 0 : ForwardOutcome::Forwarded(res) => {
187 0 : return res;
188 : }
189 0 : ForwardOutcome::NotForwarded(req) => req,
190 : };
191 :
192 0 : let inspect_req = json_request::<InspectRequest>(&mut req).await?;
193 :
194 0 : let state = get_state(&req);
195 0 :
196 0 : json_response(StatusCode::OK, state.service.inspect(inspect_req))
197 0 : }
198 :
199 0 : async fn handle_tenant_create(
200 0 : service: Arc<Service>,
201 0 : req: Request<Body>,
202 0 : ) -> Result<Response<Body>, ApiError> {
203 0 : check_permissions(&req, Scope::PageServerApi)?;
204 :
205 0 : let mut req = match maybe_forward(req).await {
206 0 : ForwardOutcome::Forwarded(res) => {
207 0 : return res;
208 : }
209 0 : ForwardOutcome::NotForwarded(req) => req,
210 : };
211 :
212 0 : let create_req = json_request::<TenantCreateRequest>(&mut req).await?;
213 :
214 : json_response(
215 : StatusCode::CREATED,
216 0 : service.tenant_create(create_req).await?,
217 : )
218 0 : }
219 :
220 0 : async fn handle_tenant_location_config(
221 0 : service: Arc<Service>,
222 0 : req: Request<Body>,
223 0 : ) -> Result<Response<Body>, ApiError> {
224 0 : let tenant_shard_id: TenantShardId = parse_request_param(&req, "tenant_shard_id")?;
225 0 : check_permissions(&req, Scope::PageServerApi)?;
226 :
227 0 : let mut req = match maybe_forward(req).await {
228 0 : ForwardOutcome::Forwarded(res) => {
229 0 : return res;
230 : }
231 0 : ForwardOutcome::NotForwarded(req) => req,
232 : };
233 :
234 0 : let config_req = json_request::<TenantLocationConfigRequest>(&mut req).await?;
235 : json_response(
236 : StatusCode::OK,
237 0 : service
238 0 : .tenant_location_config(tenant_shard_id, config_req)
239 0 : .await?,
240 : )
241 0 : }
242 :
243 0 : async fn handle_tenant_config_patch(
244 0 : service: Arc<Service>,
245 0 : req: Request<Body>,
246 0 : ) -> Result<Response<Body>, ApiError> {
247 0 : check_permissions(&req, Scope::PageServerApi)?;
248 :
249 0 : let mut req = match maybe_forward(req).await {
250 0 : ForwardOutcome::Forwarded(res) => {
251 0 : return res;
252 : }
253 0 : ForwardOutcome::NotForwarded(req) => req,
254 : };
255 :
256 0 : let config_req = json_request::<TenantConfigPatchRequest>(&mut req).await?;
257 :
258 : json_response(
259 : StatusCode::OK,
260 0 : service.tenant_config_patch(config_req).await?,
261 : )
262 0 : }
263 :
264 0 : async fn handle_tenant_config_set(
265 0 : service: Arc<Service>,
266 0 : req: Request<Body>,
267 0 : ) -> Result<Response<Body>, ApiError> {
268 0 : check_permissions(&req, Scope::PageServerApi)?;
269 :
270 0 : let mut req = match maybe_forward(req).await {
271 0 : ForwardOutcome::Forwarded(res) => {
272 0 : return res;
273 : }
274 0 : ForwardOutcome::NotForwarded(req) => req,
275 : };
276 :
277 0 : let config_req = json_request::<TenantConfigRequest>(&mut req).await?;
278 :
279 0 : json_response(StatusCode::OK, service.tenant_config_set(config_req).await?)
280 0 : }
281 :
282 0 : async fn handle_tenant_config_get(
283 0 : service: Arc<Service>,
284 0 : req: Request<Body>,
285 0 : ) -> Result<Response<Body>, ApiError> {
286 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
287 0 : check_permissions(&req, Scope::PageServerApi)?;
288 0 : maybe_rate_limit(&req, tenant_id).await;
289 :
290 0 : match maybe_forward(req).await {
291 0 : ForwardOutcome::Forwarded(res) => {
292 0 : return res;
293 : }
294 0 : ForwardOutcome::NotForwarded(_req) => {}
295 0 : };
296 0 :
297 0 : json_response(StatusCode::OK, service.tenant_config_get(tenant_id)?)
298 0 : }
299 :
300 0 : async fn handle_tenant_time_travel_remote_storage(
301 0 : service: Arc<Service>,
302 0 : req: Request<Body>,
303 0 : ) -> Result<Response<Body>, ApiError> {
304 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
305 0 : check_permissions(&req, Scope::PageServerApi)?;
306 0 : maybe_rate_limit(&req, tenant_id).await;
307 :
308 0 : let mut req = match maybe_forward(req).await {
309 0 : ForwardOutcome::Forwarded(res) => {
310 0 : return res;
311 : }
312 0 : ForwardOutcome::NotForwarded(req) => req,
313 : };
314 :
315 0 : let time_travel_req = json_request::<TenantTimeTravelRequest>(&mut req).await?;
316 :
317 0 : let timestamp_raw = must_get_query_param(&req, "travel_to")?;
318 0 : let _timestamp = humantime::parse_rfc3339(×tamp_raw).map_err(|_e| {
319 0 : ApiError::BadRequest(anyhow::anyhow!(
320 0 : "Invalid time for travel_to: {timestamp_raw:?}"
321 0 : ))
322 0 : })?;
323 :
324 0 : let done_if_after_raw = must_get_query_param(&req, "done_if_after")?;
325 0 : let _done_if_after = humantime::parse_rfc3339(&done_if_after_raw).map_err(|_e| {
326 0 : ApiError::BadRequest(anyhow::anyhow!(
327 0 : "Invalid time for done_if_after: {done_if_after_raw:?}"
328 0 : ))
329 0 : })?;
330 :
331 0 : service
332 0 : .tenant_time_travel_remote_storage(
333 0 : &time_travel_req,
334 0 : tenant_id,
335 0 : timestamp_raw,
336 0 : done_if_after_raw,
337 0 : )
338 0 : .await?;
339 0 : json_response(StatusCode::OK, ())
340 0 : }
341 :
342 0 : fn map_reqwest_hyper_status(status: reqwest::StatusCode) -> Result<hyper::StatusCode, ApiError> {
343 0 : hyper::StatusCode::from_u16(status.as_u16())
344 0 : .context("invalid status code")
345 0 : .map_err(ApiError::InternalServerError)
346 0 : }
347 :
348 0 : async fn handle_tenant_secondary_download(
349 0 : service: Arc<Service>,
350 0 : req: Request<Body>,
351 0 : ) -> Result<Response<Body>, ApiError> {
352 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
353 0 : let wait = parse_query_param(&req, "wait_ms")?.map(Duration::from_millis);
354 0 : maybe_rate_limit(&req, tenant_id).await;
355 :
356 0 : match maybe_forward(req).await {
357 0 : ForwardOutcome::Forwarded(res) => {
358 0 : return res;
359 : }
360 0 : ForwardOutcome::NotForwarded(_req) => {}
361 : };
362 :
363 0 : let (status, progress) = service.tenant_secondary_download(tenant_id, wait).await?;
364 0 : json_response(map_reqwest_hyper_status(status)?, progress)
365 0 : }
366 :
367 0 : async fn handle_tenant_delete(
368 0 : service: Arc<Service>,
369 0 : req: Request<Body>,
370 0 : ) -> Result<Response<Body>, ApiError> {
371 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
372 0 : check_permissions(&req, Scope::PageServerApi)?;
373 0 : maybe_rate_limit(&req, tenant_id).await;
374 :
375 0 : match maybe_forward(req).await {
376 0 : ForwardOutcome::Forwarded(res) => {
377 0 : return res;
378 : }
379 0 : ForwardOutcome::NotForwarded(_req) => {}
380 : };
381 :
382 0 : let status_code = service
383 0 : .tenant_delete(tenant_id)
384 0 : .await
385 0 : .and_then(map_reqwest_hyper_status)?;
386 :
387 0 : if status_code == StatusCode::NOT_FOUND {
388 : // The pageserver uses 404 for successful deletion, but we use 200
389 0 : json_response(StatusCode::OK, ())
390 : } else {
391 0 : json_response(status_code, ())
392 : }
393 0 : }
394 :
395 0 : async fn handle_tenant_timeline_create(
396 0 : service: Arc<Service>,
397 0 : req: Request<Body>,
398 0 : ) -> Result<Response<Body>, ApiError> {
399 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
400 0 : check_permissions(&req, Scope::PageServerApi)?;
401 0 : maybe_rate_limit(&req, tenant_id).await;
402 :
403 0 : let mut req = match maybe_forward(req).await {
404 0 : ForwardOutcome::Forwarded(res) => {
405 0 : return res;
406 : }
407 0 : ForwardOutcome::NotForwarded(req) => req,
408 : };
409 :
410 0 : let create_req = json_request::<TimelineCreateRequest>(&mut req).await?;
411 : json_response(
412 : StatusCode::CREATED,
413 0 : service
414 0 : .tenant_timeline_create(tenant_id, create_req)
415 0 : .await?,
416 : )
417 0 : }
418 :
419 0 : async fn handle_tenant_timeline_delete(
420 0 : service: Arc<Service>,
421 0 : req: Request<Body>,
422 0 : ) -> Result<Response<Body>, ApiError> {
423 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
424 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
425 :
426 0 : check_permissions(&req, Scope::PageServerApi)?;
427 0 : maybe_rate_limit(&req, tenant_id).await;
428 :
429 0 : match maybe_forward(req).await {
430 0 : ForwardOutcome::Forwarded(res) => {
431 0 : return res;
432 : }
433 0 : ForwardOutcome::NotForwarded(_req) => {}
434 : };
435 :
436 : // For timeline deletions, which both implement an "initially return 202, then 404 once
437 : // we're done" semantic, we wrap with a retry loop to expose a simpler API upstream.
438 0 : async fn deletion_wrapper<R, F>(service: Arc<Service>, f: F) -> Result<Response<Body>, ApiError>
439 0 : where
440 0 : R: std::future::Future<Output = Result<StatusCode, ApiError>> + Send + 'static,
441 0 : F: Fn(Arc<Service>) -> R + Send + Sync + 'static,
442 0 : {
443 : // On subsequent retries, wait longer.
444 : // Enable callers with a 25 second request timeout to reliably get a response
445 : const MAX_WAIT: Duration = Duration::from_secs(25);
446 : const MAX_RETRY_PERIOD: Duration = Duration::from_secs(5);
447 :
448 0 : let started_at = Instant::now();
449 0 :
450 0 : // To keep deletion reasonably snappy for small tenants, initially check after 1 second if deletion
451 0 : // completed.
452 0 : let mut retry_period = Duration::from_secs(1);
453 :
454 : loop {
455 0 : let status = f(service.clone()).await?;
456 0 : match status {
457 : StatusCode::ACCEPTED => {
458 0 : tracing::info!("Deletion accepted, waiting to try again...");
459 0 : tokio::time::sleep(retry_period).await;
460 0 : retry_period = MAX_RETRY_PERIOD;
461 : }
462 : StatusCode::CONFLICT => {
463 0 : tracing::info!("Deletion already in progress, waiting to try again...");
464 0 : tokio::time::sleep(retry_period).await;
465 : }
466 : StatusCode::NOT_FOUND => {
467 0 : tracing::info!("Deletion complete");
468 0 : return json_response(StatusCode::OK, ());
469 : }
470 : _ => {
471 0 : tracing::warn!("Unexpected status {status}");
472 0 : return json_response(status, ());
473 : }
474 : }
475 :
476 0 : let now = Instant::now();
477 0 : if now + retry_period > started_at + MAX_WAIT {
478 0 : tracing::info!("Deletion timed out waiting for 404");
479 : // REQUEST_TIMEOUT would be more appropriate, but CONFLICT is already part of
480 : // the pageserver's swagger definition for this endpoint, and has the same desired
481 : // effect of causing the control plane to retry later.
482 0 : return json_response(StatusCode::CONFLICT, ());
483 0 : }
484 : }
485 0 : }
486 :
487 0 : deletion_wrapper(service, move |service| async move {
488 0 : service
489 0 : .tenant_timeline_delete(tenant_id, timeline_id)
490 0 : .await
491 0 : .and_then(map_reqwest_hyper_status)
492 0 : })
493 0 : .await
494 0 : }
495 :
496 0 : async fn handle_tenant_timeline_archival_config(
497 0 : service: Arc<Service>,
498 0 : req: Request<Body>,
499 0 : ) -> Result<Response<Body>, ApiError> {
500 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
501 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
502 :
503 0 : check_permissions(&req, Scope::PageServerApi)?;
504 0 : maybe_rate_limit(&req, tenant_id).await;
505 :
506 0 : let mut req = match maybe_forward(req).await {
507 0 : ForwardOutcome::Forwarded(res) => {
508 0 : return res;
509 : }
510 0 : ForwardOutcome::NotForwarded(req) => req,
511 : };
512 :
513 0 : let create_req = json_request::<TimelineArchivalConfigRequest>(&mut req).await?;
514 :
515 0 : service
516 0 : .tenant_timeline_archival_config(tenant_id, timeline_id, create_req)
517 0 : .await?;
518 :
519 0 : json_response(StatusCode::OK, ())
520 0 : }
521 :
522 0 : async fn handle_tenant_timeline_detach_ancestor(
523 0 : service: Arc<Service>,
524 0 : req: Request<Body>,
525 0 : ) -> Result<Response<Body>, ApiError> {
526 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
527 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
528 0 : let behavior: Option<DetachBehavior> = parse_query_param(&req, "detach_behavior")?;
529 :
530 0 : check_permissions(&req, Scope::PageServerApi)?;
531 0 : maybe_rate_limit(&req, tenant_id).await;
532 :
533 0 : match maybe_forward(req).await {
534 0 : ForwardOutcome::Forwarded(res) => {
535 0 : return res;
536 : }
537 0 : ForwardOutcome::NotForwarded(_req) => {}
538 : };
539 :
540 0 : let res = service
541 0 : .tenant_timeline_detach_ancestor(tenant_id, timeline_id, behavior)
542 0 : .await?;
543 :
544 0 : json_response(StatusCode::OK, res)
545 0 : }
546 :
547 0 : async fn handle_tenant_timeline_block_unblock_gc(
548 0 : service: Arc<Service>,
549 0 : req: Request<Body>,
550 0 : dir: BlockUnblock,
551 0 : ) -> Result<Response<Body>, ApiError> {
552 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
553 0 : check_permissions(&req, Scope::PageServerApi)?;
554 0 : maybe_rate_limit(&req, tenant_id).await;
555 :
556 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
557 :
558 0 : service
559 0 : .tenant_timeline_block_unblock_gc(tenant_id, timeline_id, dir)
560 0 : .await?;
561 :
562 0 : json_response(StatusCode::OK, ())
563 0 : }
564 :
565 0 : async fn handle_tenant_timeline_download_heatmap_layers(
566 0 : service: Arc<Service>,
567 0 : req: Request<Body>,
568 0 : ) -> Result<Response<Body>, ApiError> {
569 0 : let tenant_shard_id: TenantShardId = parse_request_param(&req, "tenant_shard_id")?;
570 :
571 0 : check_permissions(&req, Scope::PageServerApi)?;
572 0 : maybe_rate_limit(&req, tenant_shard_id.tenant_id).await;
573 :
574 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
575 0 : let concurrency: Option<usize> = parse_query_param(&req, "concurrency")?;
576 0 : let recurse = parse_query_param(&req, "recurse")?.unwrap_or(false);
577 0 :
578 0 : service
579 0 : .tenant_timeline_download_heatmap_layers(tenant_shard_id, timeline_id, concurrency, recurse)
580 0 : .await?;
581 :
582 0 : json_response(StatusCode::OK, ())
583 0 : }
584 :
585 0 : async fn handle_tenant_timeline_lsn_lease(
586 0 : service: Arc<Service>,
587 0 : req: Request<Body>,
588 0 : ) -> Result<Response<Body>, ApiError> {
589 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
590 0 : let timeline_id: TimelineId = parse_request_param(&req, "timeline_id")?;
591 :
592 0 : check_permissions(&req, Scope::PageServerApi)?;
593 0 : maybe_rate_limit(&req, tenant_id).await;
594 :
595 0 : let mut req = match maybe_forward(req).await {
596 0 : ForwardOutcome::Forwarded(res) => {
597 0 : return res;
598 : }
599 0 : ForwardOutcome::NotForwarded(req) => req,
600 : };
601 :
602 0 : let lsn_lease_request = json_request::<LsnLeaseRequest>(&mut req).await?;
603 :
604 0 : service
605 0 : .tenant_timeline_lsn_lease(tenant_id, timeline_id, lsn_lease_request.lsn)
606 0 : .await?;
607 :
608 0 : json_response(StatusCode::OK, ())
609 0 : }
610 :
611 : // For metric labels where we would like to include the approximate path, but exclude high-cardinality fields like query parameters
612 : // and tenant/timeline IDs. Since we are proxying to arbitrary paths, we don't have routing templates to
613 : // compare to, so we can just filter out our well known ID format with regexes.
614 3 : fn path_without_ids(path: &str) -> String {
615 : static ID_REGEX: std::sync::OnceLock<regex::Regex> = std::sync::OnceLock::new();
616 3 : ID_REGEX
617 3 : .get_or_init(|| regex::Regex::new(r"([0-9a-fA-F]{32}(-[0-9]{4})?|\?.*)").unwrap())
618 3 : .replace_all(path, "")
619 3 : .to_string()
620 3 : }
621 :
622 0 : async fn handle_tenant_timeline_passthrough(
623 0 : service: Arc<Service>,
624 0 : req: Request<Body>,
625 0 : ) -> Result<Response<Body>, ApiError> {
626 0 : let tenant_or_shard_id: TenantShardId = parse_request_param(&req, "tenant_id")?;
627 0 : check_permissions(&req, Scope::PageServerApi)?;
628 0 : maybe_rate_limit(&req, tenant_or_shard_id.tenant_id).await;
629 :
630 0 : let req = match maybe_forward(req).await {
631 0 : ForwardOutcome::Forwarded(res) => {
632 0 : return res;
633 : }
634 0 : ForwardOutcome::NotForwarded(req) => req,
635 : };
636 :
637 0 : let Some(path) = req.uri().path_and_query() else {
638 : // This should never happen, our request router only calls us if there is a path
639 0 : return Err(ApiError::BadRequest(anyhow::anyhow!("Missing path")));
640 : };
641 :
642 0 : tracing::info!(
643 0 : "Proxying request for tenant {} ({})",
644 : tenant_or_shard_id.tenant_id,
645 : path
646 : );
647 :
648 : // Find the node that holds shard zero
649 0 : let (node, tenant_shard_id) = if tenant_or_shard_id.is_unsharded() {
650 0 : service
651 0 : .tenant_shard0_node(tenant_or_shard_id.tenant_id)
652 0 : .await?
653 : } else {
654 : (
655 0 : service.tenant_shard_node(tenant_or_shard_id).await?,
656 0 : tenant_or_shard_id,
657 : )
658 : };
659 :
660 : // Callers will always pass an unsharded tenant ID. Before proxying, we must
661 : // rewrite this to a shard-aware shard zero ID.
662 0 : let path = format!("{}", path);
663 0 : let tenant_str = tenant_or_shard_id.tenant_id.to_string();
664 0 : let tenant_shard_str = format!("{}", tenant_shard_id);
665 0 : let path = path.replace(&tenant_str, &tenant_shard_str);
666 0 :
667 0 : let latency = &METRICS_REGISTRY
668 0 : .metrics_group
669 0 : .storage_controller_passthrough_request_latency;
670 0 :
671 0 : let path_label = path_without_ids(&path)
672 0 : .split('/')
673 0 : .filter(|token| !token.is_empty())
674 0 : .collect::<Vec<_>>()
675 0 : .join("_");
676 0 : let labels = PageserverRequestLabelGroup {
677 0 : pageserver_id: &node.get_id().to_string(),
678 0 : path: &path_label,
679 0 : method: crate::metrics::Method::Get,
680 0 : };
681 0 :
682 0 : let _timer = latency.start_timer(labels.clone());
683 0 :
684 0 : let client = mgmt_api::Client::new(
685 0 : service.get_http_client().clone(),
686 0 : node.base_url(),
687 0 : service.get_config().pageserver_jwt_token.as_deref(),
688 0 : );
689 0 : let resp = client.get_raw(path).await.map_err(|e|
690 : // We return 503 here because if we can't successfully send a request to the pageserver,
691 : // either we aren't available or the pageserver is unavailable.
692 0 : ApiError::ResourceUnavailable(format!("Error sending pageserver API request to {node}: {e}").into()))?;
693 :
694 0 : if !resp.status().is_success() {
695 0 : let error_counter = &METRICS_REGISTRY
696 0 : .metrics_group
697 0 : .storage_controller_passthrough_request_error;
698 0 : error_counter.inc(labels);
699 0 : }
700 :
701 : // Transform 404 into 503 if we raced with a migration
702 0 : if resp.status() == reqwest::StatusCode::NOT_FOUND {
703 : // Look up node again: if we migrated it will be different
704 0 : let new_node = service.tenant_shard_node(tenant_shard_id).await?;
705 0 : if new_node.get_id() != node.get_id() {
706 : // Rather than retry here, send the client a 503 to prompt a retry: this matches
707 : // the pageserver's use of 503, and all clients calling this API should retry on 503.
708 0 : return Err(ApiError::ResourceUnavailable(
709 0 : format!("Pageserver {node} returned 404, was migrated to {new_node}").into(),
710 0 : ));
711 0 : }
712 0 : }
713 :
714 : // We have a reqest::Response, would like a http::Response
715 0 : let mut builder = hyper::Response::builder().status(map_reqwest_hyper_status(resp.status())?);
716 0 : for (k, v) in resp.headers() {
717 0 : builder = builder.header(k.as_str(), v.as_bytes());
718 0 : }
719 :
720 0 : let response = builder
721 0 : .body(Body::wrap_stream(resp.bytes_stream()))
722 0 : .map_err(|e| ApiError::InternalServerError(e.into()))?;
723 :
724 0 : Ok(response)
725 0 : }
726 :
727 0 : async fn handle_tenant_locate(
728 0 : service: Arc<Service>,
729 0 : req: Request<Body>,
730 0 : ) -> Result<Response<Body>, ApiError> {
731 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
732 :
733 0 : check_permissions(&req, Scope::Admin)?;
734 : // NB: don't rate limit: admin operation.
735 :
736 0 : match maybe_forward(req).await {
737 0 : ForwardOutcome::Forwarded(res) => {
738 0 : return res;
739 : }
740 0 : ForwardOutcome::NotForwarded(_req) => {}
741 0 : };
742 0 :
743 0 : json_response(StatusCode::OK, service.tenant_locate(tenant_id)?)
744 0 : }
745 :
746 0 : async fn handle_tenant_describe(
747 0 : service: Arc<Service>,
748 0 : req: Request<Body>,
749 0 : ) -> Result<Response<Body>, ApiError> {
750 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
751 0 : check_permissions(&req, Scope::Scrubber)?;
752 : // NB: don't rate limit: scrubber operation.
753 :
754 0 : match maybe_forward(req).await {
755 0 : ForwardOutcome::Forwarded(res) => {
756 0 : return res;
757 : }
758 0 : ForwardOutcome::NotForwarded(_req) => {}
759 0 : };
760 0 :
761 0 : json_response(StatusCode::OK, service.tenant_describe(tenant_id)?)
762 0 : }
763 :
764 0 : async fn handle_tenant_list(
765 0 : service: Arc<Service>,
766 0 : req: Request<Body>,
767 0 : ) -> Result<Response<Body>, ApiError> {
768 0 : check_permissions(&req, Scope::Admin)?;
769 :
770 0 : let limit: Option<usize> = parse_query_param(&req, "limit")?;
771 0 : let start_after: Option<TenantId> = parse_query_param(&req, "start_after")?;
772 0 : tracing::info!("start_after: {:?}", start_after);
773 :
774 0 : match maybe_forward(req).await {
775 0 : ForwardOutcome::Forwarded(res) => {
776 0 : return res;
777 : }
778 0 : ForwardOutcome::NotForwarded(_req) => {}
779 0 : };
780 0 :
781 0 : json_response(StatusCode::OK, service.tenant_list(limit, start_after))
782 0 : }
783 :
784 0 : async fn handle_node_register(req: Request<Body>) -> Result<Response<Body>, ApiError> {
785 0 : check_permissions(&req, Scope::Infra)?;
786 :
787 0 : let mut req = match maybe_forward(req).await {
788 0 : ForwardOutcome::Forwarded(res) => {
789 0 : return res;
790 : }
791 0 : ForwardOutcome::NotForwarded(req) => req,
792 : };
793 :
794 0 : let register_req = json_request::<NodeRegisterRequest>(&mut req).await?;
795 0 : let state = get_state(&req);
796 0 : state.service.node_register(register_req).await?;
797 0 : json_response(StatusCode::OK, ())
798 0 : }
799 :
800 0 : async fn handle_node_list(req: Request<Body>) -> Result<Response<Body>, ApiError> {
801 0 : check_permissions(&req, Scope::Infra)?;
802 :
803 0 : let req = match maybe_forward(req).await {
804 0 : ForwardOutcome::Forwarded(res) => {
805 0 : return res;
806 : }
807 0 : ForwardOutcome::NotForwarded(req) => req,
808 0 : };
809 0 :
810 0 : let state = get_state(&req);
811 0 : let mut nodes = state.service.node_list().await?;
812 0 : nodes.sort_by_key(|n| n.get_id());
813 0 : let api_nodes = nodes.into_iter().map(|n| n.describe()).collect::<Vec<_>>();
814 0 :
815 0 : json_response(StatusCode::OK, api_nodes)
816 0 : }
817 :
818 0 : async fn handle_node_drop(req: Request<Body>) -> Result<Response<Body>, ApiError> {
819 0 : check_permissions(&req, Scope::Admin)?;
820 :
821 0 : let req = match maybe_forward(req).await {
822 0 : ForwardOutcome::Forwarded(res) => {
823 0 : return res;
824 : }
825 0 : ForwardOutcome::NotForwarded(req) => req,
826 0 : };
827 0 :
828 0 : let state = get_state(&req);
829 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
830 0 : json_response(StatusCode::OK, state.service.node_drop(node_id).await?)
831 0 : }
832 :
833 0 : async fn handle_node_delete(req: Request<Body>) -> Result<Response<Body>, ApiError> {
834 0 : check_permissions(&req, Scope::Admin)?;
835 :
836 0 : let req = match maybe_forward(req).await {
837 0 : ForwardOutcome::Forwarded(res) => {
838 0 : return res;
839 : }
840 0 : ForwardOutcome::NotForwarded(req) => req,
841 0 : };
842 0 :
843 0 : let state = get_state(&req);
844 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
845 0 : json_response(StatusCode::OK, state.service.node_delete(node_id).await?)
846 0 : }
847 :
848 0 : async fn handle_node_configure(req: Request<Body>) -> Result<Response<Body>, ApiError> {
849 0 : check_permissions(&req, Scope::Admin)?;
850 :
851 0 : let mut req = match maybe_forward(req).await {
852 0 : ForwardOutcome::Forwarded(res) => {
853 0 : return res;
854 : }
855 0 : ForwardOutcome::NotForwarded(req) => req,
856 : };
857 :
858 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
859 0 : let config_req = json_request::<NodeConfigureRequest>(&mut req).await?;
860 0 : if node_id != config_req.node_id {
861 0 : return Err(ApiError::BadRequest(anyhow::anyhow!(
862 0 : "Path and body node_id differ"
863 0 : )));
864 0 : }
865 0 : let state = get_state(&req);
866 0 :
867 0 : json_response(
868 0 : StatusCode::OK,
869 0 : state
870 0 : .service
871 0 : .external_node_configure(
872 0 : config_req.node_id,
873 0 : config_req.availability.map(NodeAvailability::from),
874 0 : config_req.scheduling,
875 0 : )
876 0 : .await?,
877 : )
878 0 : }
879 :
880 0 : async fn handle_node_status(req: Request<Body>) -> Result<Response<Body>, ApiError> {
881 0 : check_permissions(&req, Scope::Infra)?;
882 :
883 0 : let req = match maybe_forward(req).await {
884 0 : ForwardOutcome::Forwarded(res) => {
885 0 : return res;
886 : }
887 0 : ForwardOutcome::NotForwarded(req) => req,
888 0 : };
889 0 :
890 0 : let state = get_state(&req);
891 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
892 :
893 0 : let node_status = state.service.get_node(node_id).await?;
894 :
895 0 : json_response(StatusCode::OK, node_status)
896 0 : }
897 :
898 0 : async fn handle_node_shards(req: Request<Body>) -> Result<Response<Body>, ApiError> {
899 0 : check_permissions(&req, Scope::Admin)?;
900 :
901 0 : let state = get_state(&req);
902 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
903 :
904 0 : let node_status = state.service.get_node_shards(node_id).await?;
905 :
906 0 : json_response(StatusCode::OK, node_status)
907 0 : }
908 :
909 0 : async fn handle_get_leader(req: Request<Body>) -> Result<Response<Body>, ApiError> {
910 0 : check_permissions(&req, Scope::Admin)?;
911 :
912 0 : let req = match maybe_forward(req).await {
913 0 : ForwardOutcome::Forwarded(res) => {
914 0 : return res;
915 : }
916 0 : ForwardOutcome::NotForwarded(req) => req,
917 0 : };
918 0 :
919 0 : let state = get_state(&req);
920 0 : let leader = state.service.get_leader().await.map_err(|err| {
921 0 : ApiError::InternalServerError(anyhow::anyhow!(
922 0 : "Failed to read leader from database: {err}"
923 0 : ))
924 0 : })?;
925 :
926 0 : json_response(StatusCode::OK, leader)
927 0 : }
928 :
929 0 : async fn handle_node_drain(req: Request<Body>) -> Result<Response<Body>, ApiError> {
930 0 : check_permissions(&req, Scope::Infra)?;
931 :
932 0 : let req = match maybe_forward(req).await {
933 0 : ForwardOutcome::Forwarded(res) => {
934 0 : return res;
935 : }
936 0 : ForwardOutcome::NotForwarded(req) => req,
937 0 : };
938 0 :
939 0 : let state = get_state(&req);
940 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
941 :
942 0 : state.service.start_node_drain(node_id).await?;
943 :
944 0 : json_response(StatusCode::ACCEPTED, ())
945 0 : }
946 :
947 0 : async fn handle_cancel_node_drain(req: Request<Body>) -> Result<Response<Body>, ApiError> {
948 0 : check_permissions(&req, Scope::Infra)?;
949 :
950 0 : let req = match maybe_forward(req).await {
951 0 : ForwardOutcome::Forwarded(res) => {
952 0 : return res;
953 : }
954 0 : ForwardOutcome::NotForwarded(req) => req,
955 0 : };
956 0 :
957 0 : let state = get_state(&req);
958 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
959 :
960 0 : state.service.cancel_node_drain(node_id).await?;
961 :
962 0 : json_response(StatusCode::ACCEPTED, ())
963 0 : }
964 :
965 0 : async fn handle_node_fill(req: Request<Body>) -> Result<Response<Body>, ApiError> {
966 0 : check_permissions(&req, Scope::Infra)?;
967 :
968 0 : let req = match maybe_forward(req).await {
969 0 : ForwardOutcome::Forwarded(res) => {
970 0 : return res;
971 : }
972 0 : ForwardOutcome::NotForwarded(req) => req,
973 0 : };
974 0 :
975 0 : let state = get_state(&req);
976 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
977 :
978 0 : state.service.start_node_fill(node_id).await?;
979 :
980 0 : json_response(StatusCode::ACCEPTED, ())
981 0 : }
982 :
983 0 : async fn handle_cancel_node_fill(req: Request<Body>) -> Result<Response<Body>, ApiError> {
984 0 : check_permissions(&req, Scope::Infra)?;
985 :
986 0 : let req = match maybe_forward(req).await {
987 0 : ForwardOutcome::Forwarded(res) => {
988 0 : return res;
989 : }
990 0 : ForwardOutcome::NotForwarded(req) => req,
991 0 : };
992 0 :
993 0 : let state = get_state(&req);
994 0 : let node_id: NodeId = parse_request_param(&req, "node_id")?;
995 :
996 0 : state.service.cancel_node_fill(node_id).await?;
997 :
998 0 : json_response(StatusCode::ACCEPTED, ())
999 0 : }
1000 :
1001 0 : async fn handle_safekeeper_list(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1002 0 : check_permissions(&req, Scope::Infra)?;
1003 :
1004 0 : let req = match maybe_forward(req).await {
1005 0 : ForwardOutcome::Forwarded(res) => {
1006 0 : return res;
1007 : }
1008 0 : ForwardOutcome::NotForwarded(req) => req,
1009 0 : };
1010 0 :
1011 0 : let state = get_state(&req);
1012 0 : let safekeepers = state.service.safekeepers_list().await?;
1013 0 : json_response(StatusCode::OK, safekeepers)
1014 0 : }
1015 :
1016 0 : async fn handle_metadata_health_update(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1017 0 : check_permissions(&req, Scope::Scrubber)?;
1018 :
1019 0 : let mut req = match maybe_forward(req).await {
1020 0 : ForwardOutcome::Forwarded(res) => {
1021 0 : return res;
1022 : }
1023 0 : ForwardOutcome::NotForwarded(req) => req,
1024 : };
1025 :
1026 0 : let update_req = json_request::<MetadataHealthUpdateRequest>(&mut req).await?;
1027 0 : let state = get_state(&req);
1028 0 :
1029 0 : state.service.metadata_health_update(update_req).await?;
1030 :
1031 0 : json_response(StatusCode::OK, MetadataHealthUpdateResponse {})
1032 0 : }
1033 :
1034 0 : async fn handle_metadata_health_list_unhealthy(
1035 0 : req: Request<Body>,
1036 0 : ) -> Result<Response<Body>, ApiError> {
1037 0 : check_permissions(&req, Scope::Admin)?;
1038 :
1039 0 : let req = match maybe_forward(req).await {
1040 0 : ForwardOutcome::Forwarded(res) => {
1041 0 : return res;
1042 : }
1043 0 : ForwardOutcome::NotForwarded(req) => req,
1044 0 : };
1045 0 :
1046 0 : let state = get_state(&req);
1047 0 : let unhealthy_tenant_shards = state.service.metadata_health_list_unhealthy().await?;
1048 :
1049 0 : json_response(
1050 0 : StatusCode::OK,
1051 0 : MetadataHealthListUnhealthyResponse {
1052 0 : unhealthy_tenant_shards,
1053 0 : },
1054 0 : )
1055 0 : }
1056 :
1057 0 : async fn handle_metadata_health_list_outdated(
1058 0 : req: Request<Body>,
1059 0 : ) -> Result<Response<Body>, ApiError> {
1060 0 : check_permissions(&req, Scope::Admin)?;
1061 :
1062 0 : let mut req = match maybe_forward(req).await {
1063 0 : ForwardOutcome::Forwarded(res) => {
1064 0 : return res;
1065 : }
1066 0 : ForwardOutcome::NotForwarded(req) => req,
1067 : };
1068 :
1069 0 : let list_outdated_req = json_request::<MetadataHealthListOutdatedRequest>(&mut req).await?;
1070 0 : let state = get_state(&req);
1071 0 : let health_records = state
1072 0 : .service
1073 0 : .metadata_health_list_outdated(list_outdated_req.not_scrubbed_for)
1074 0 : .await?;
1075 :
1076 0 : json_response(
1077 0 : StatusCode::OK,
1078 0 : MetadataHealthListOutdatedResponse { health_records },
1079 0 : )
1080 0 : }
1081 :
1082 0 : async fn handle_tenant_shard_split(
1083 0 : service: Arc<Service>,
1084 0 : req: Request<Body>,
1085 0 : ) -> Result<Response<Body>, ApiError> {
1086 0 : check_permissions(&req, Scope::Admin)?;
1087 : // NB: don't rate limit: admin operation.
1088 :
1089 0 : let mut req = match maybe_forward(req).await {
1090 0 : ForwardOutcome::Forwarded(res) => {
1091 0 : return res;
1092 : }
1093 0 : ForwardOutcome::NotForwarded(req) => req,
1094 : };
1095 :
1096 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
1097 0 : let split_req = json_request::<TenantShardSplitRequest>(&mut req).await?;
1098 :
1099 : json_response(
1100 : StatusCode::OK,
1101 0 : service.tenant_shard_split(tenant_id, split_req).await?,
1102 : )
1103 0 : }
1104 :
1105 0 : async fn handle_tenant_shard_migrate(
1106 0 : service: Arc<Service>,
1107 0 : req: Request<Body>,
1108 0 : ) -> Result<Response<Body>, ApiError> {
1109 0 : check_permissions(&req, Scope::Admin)?;
1110 : // NB: don't rate limit: admin operation.
1111 :
1112 0 : let mut req = match maybe_forward(req).await {
1113 0 : ForwardOutcome::Forwarded(res) => {
1114 0 : return res;
1115 : }
1116 0 : ForwardOutcome::NotForwarded(req) => req,
1117 : };
1118 :
1119 0 : let tenant_shard_id: TenantShardId = parse_request_param(&req, "tenant_shard_id")?;
1120 0 : let migrate_req = json_request::<TenantShardMigrateRequest>(&mut req).await?;
1121 : json_response(
1122 : StatusCode::OK,
1123 0 : service
1124 0 : .tenant_shard_migrate(tenant_shard_id, migrate_req)
1125 0 : .await?,
1126 : )
1127 0 : }
1128 :
1129 0 : async fn handle_tenant_shard_migrate_secondary(
1130 0 : service: Arc<Service>,
1131 0 : req: Request<Body>,
1132 0 : ) -> Result<Response<Body>, ApiError> {
1133 0 : check_permissions(&req, Scope::Admin)?;
1134 : // NB: don't rate limit: admin operation.
1135 :
1136 0 : let mut req = match maybe_forward(req).await {
1137 0 : ForwardOutcome::Forwarded(res) => {
1138 0 : return res;
1139 : }
1140 0 : ForwardOutcome::NotForwarded(req) => req,
1141 : };
1142 :
1143 0 : let tenant_shard_id: TenantShardId = parse_request_param(&req, "tenant_shard_id")?;
1144 0 : let migrate_req = json_request::<TenantShardMigrateRequest>(&mut req).await?;
1145 : json_response(
1146 : StatusCode::OK,
1147 0 : service
1148 0 : .tenant_shard_migrate_secondary(tenant_shard_id, migrate_req)
1149 0 : .await?,
1150 : )
1151 0 : }
1152 :
1153 0 : async fn handle_tenant_shard_cancel_reconcile(
1154 0 : service: Arc<Service>,
1155 0 : req: Request<Body>,
1156 0 : ) -> Result<Response<Body>, ApiError> {
1157 0 : check_permissions(&req, Scope::Admin)?;
1158 : // NB: don't rate limit: admin operation.
1159 :
1160 0 : let req = match maybe_forward(req).await {
1161 0 : ForwardOutcome::Forwarded(res) => {
1162 0 : return res;
1163 : }
1164 0 : ForwardOutcome::NotForwarded(req) => req,
1165 : };
1166 :
1167 0 : let tenant_shard_id: TenantShardId = parse_request_param(&req, "tenant_shard_id")?;
1168 : json_response(
1169 : StatusCode::OK,
1170 0 : service
1171 0 : .tenant_shard_cancel_reconcile(tenant_shard_id)
1172 0 : .await?,
1173 : )
1174 0 : }
1175 :
1176 0 : async fn handle_tenant_update_policy(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1177 0 : check_permissions(&req, Scope::Admin)?;
1178 : // NB: don't rate limit: admin operation.
1179 :
1180 0 : let mut req = match maybe_forward(req).await {
1181 0 : ForwardOutcome::Forwarded(res) => {
1182 0 : return res;
1183 : }
1184 0 : ForwardOutcome::NotForwarded(req) => req,
1185 : };
1186 :
1187 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
1188 0 : let update_req = json_request::<TenantPolicyRequest>(&mut req).await?;
1189 0 : let state = get_state(&req);
1190 0 :
1191 0 : json_response(
1192 0 : StatusCode::OK,
1193 0 : state
1194 0 : .service
1195 0 : .tenant_update_policy(tenant_id, update_req)
1196 0 : .await?,
1197 : )
1198 0 : }
1199 :
1200 0 : async fn handle_update_preferred_azs(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1201 0 : check_permissions(&req, Scope::Admin)?;
1202 :
1203 0 : let mut req = match maybe_forward(req).await {
1204 0 : ForwardOutcome::Forwarded(res) => {
1205 0 : return res;
1206 : }
1207 0 : ForwardOutcome::NotForwarded(req) => req,
1208 : };
1209 :
1210 0 : let azs_req = json_request::<ShardsPreferredAzsRequest>(&mut req).await?;
1211 0 : let state = get_state(&req);
1212 0 :
1213 0 : json_response(
1214 0 : StatusCode::OK,
1215 0 : state.service.update_shards_preferred_azs(azs_req).await?,
1216 : )
1217 0 : }
1218 :
1219 0 : async fn handle_step_down(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1220 0 : check_permissions(&req, Scope::ControllerPeer)?;
1221 :
1222 0 : let req = match maybe_forward(req).await {
1223 0 : ForwardOutcome::Forwarded(res) => {
1224 0 : return res;
1225 : }
1226 0 : ForwardOutcome::NotForwarded(req) => req,
1227 0 : };
1228 0 :
1229 0 : let state = get_state(&req);
1230 0 : json_response(StatusCode::OK, state.service.step_down().await)
1231 0 : }
1232 :
1233 0 : async fn handle_tenant_drop(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1234 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
1235 0 : check_permissions(&req, Scope::PageServerApi)?;
1236 0 : maybe_rate_limit(&req, tenant_id).await;
1237 :
1238 0 : let req = match maybe_forward(req).await {
1239 0 : ForwardOutcome::Forwarded(res) => {
1240 0 : return res;
1241 : }
1242 0 : ForwardOutcome::NotForwarded(req) => req,
1243 0 : };
1244 0 :
1245 0 : let state = get_state(&req);
1246 0 :
1247 0 : json_response(StatusCode::OK, state.service.tenant_drop(tenant_id).await?)
1248 0 : }
1249 :
1250 0 : async fn handle_tenant_import(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1251 0 : let tenant_id: TenantId = parse_request_param(&req, "tenant_id")?;
1252 0 : check_permissions(&req, Scope::PageServerApi)?;
1253 0 : maybe_rate_limit(&req, tenant_id).await;
1254 :
1255 0 : let req = match maybe_forward(req).await {
1256 0 : ForwardOutcome::Forwarded(res) => {
1257 0 : return res;
1258 : }
1259 0 : ForwardOutcome::NotForwarded(req) => req,
1260 0 : };
1261 0 :
1262 0 : let state = get_state(&req);
1263 0 :
1264 0 : json_response(
1265 0 : StatusCode::OK,
1266 0 : state.service.tenant_import(tenant_id).await?,
1267 : )
1268 0 : }
1269 :
1270 0 : async fn handle_tenants_dump(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1271 0 : check_permissions(&req, Scope::Admin)?;
1272 :
1273 0 : let req = match maybe_forward(req).await {
1274 0 : ForwardOutcome::Forwarded(res) => {
1275 0 : return res;
1276 : }
1277 0 : ForwardOutcome::NotForwarded(req) => req,
1278 0 : };
1279 0 :
1280 0 : let state = get_state(&req);
1281 0 : state.service.tenants_dump()
1282 0 : }
1283 :
1284 0 : async fn handle_scheduler_dump(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1285 0 : check_permissions(&req, Scope::Admin)?;
1286 :
1287 0 : let req = match maybe_forward(req).await {
1288 0 : ForwardOutcome::Forwarded(res) => {
1289 0 : return res;
1290 : }
1291 0 : ForwardOutcome::NotForwarded(req) => req,
1292 0 : };
1293 0 :
1294 0 : let state = get_state(&req);
1295 0 : state.service.scheduler_dump()
1296 0 : }
1297 :
1298 0 : async fn handle_consistency_check(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1299 0 : check_permissions(&req, Scope::Admin)?;
1300 :
1301 0 : let req = match maybe_forward(req).await {
1302 0 : ForwardOutcome::Forwarded(res) => {
1303 0 : return res;
1304 : }
1305 0 : ForwardOutcome::NotForwarded(req) => req,
1306 0 : };
1307 0 :
1308 0 : let state = get_state(&req);
1309 0 :
1310 0 : json_response(StatusCode::OK, state.service.consistency_check().await?)
1311 0 : }
1312 :
1313 0 : async fn handle_reconcile_all(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1314 0 : check_permissions(&req, Scope::Admin)?;
1315 :
1316 0 : let req = match maybe_forward(req).await {
1317 0 : ForwardOutcome::Forwarded(res) => {
1318 0 : return res;
1319 : }
1320 0 : ForwardOutcome::NotForwarded(req) => req,
1321 0 : };
1322 0 :
1323 0 : let state = get_state(&req);
1324 0 :
1325 0 : json_response(StatusCode::OK, state.service.reconcile_all_now().await?)
1326 0 : }
1327 :
1328 : /// Status endpoint is just used for checking that our HTTP listener is up
1329 0 : async fn handle_status(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1330 0 : match maybe_forward(req).await {
1331 0 : ForwardOutcome::Forwarded(res) => {
1332 0 : return res;
1333 : }
1334 0 : ForwardOutcome::NotForwarded(_req) => {}
1335 0 : };
1336 0 :
1337 0 : json_response(StatusCode::OK, ())
1338 0 : }
1339 :
1340 : /// Readiness endpoint indicates when we're done doing startup I/O (e.g. reconciling
1341 : /// with remote pageserver nodes). This is intended for use as a kubernetes readiness probe.
1342 0 : async fn handle_ready(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1343 0 : let req = match maybe_forward(req).await {
1344 0 : ForwardOutcome::Forwarded(res) => {
1345 0 : return res;
1346 : }
1347 0 : ForwardOutcome::NotForwarded(req) => req,
1348 0 : };
1349 0 :
1350 0 : let state = get_state(&req);
1351 0 : if state.service.startup_complete.is_ready() {
1352 0 : json_response(StatusCode::OK, ())
1353 : } else {
1354 0 : json_response(StatusCode::SERVICE_UNAVAILABLE, ())
1355 : }
1356 0 : }
1357 :
1358 : impl From<ReconcileError> for ApiError {
1359 0 : fn from(value: ReconcileError) -> Self {
1360 0 : ApiError::Conflict(format!("Reconciliation error: {}", value))
1361 0 : }
1362 : }
1363 :
1364 : /// Return the safekeeper record by instance id, or 404.
1365 : ///
1366 : /// Not used by anything except manual testing.
1367 0 : async fn handle_get_safekeeper(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1368 0 : check_permissions(&req, Scope::Infra)?;
1369 :
1370 0 : let id = parse_request_param::<i64>(&req, "id")?;
1371 :
1372 0 : let req = match maybe_forward(req).await {
1373 0 : ForwardOutcome::Forwarded(res) => {
1374 0 : return res;
1375 : }
1376 0 : ForwardOutcome::NotForwarded(req) => req,
1377 0 : };
1378 0 :
1379 0 : let state = get_state(&req);
1380 :
1381 0 : let res = state.service.get_safekeeper(id).await;
1382 :
1383 0 : match res {
1384 0 : Ok(b) => json_response(StatusCode::OK, b),
1385 : Err(crate::persistence::DatabaseError::Query(diesel::result::Error::NotFound)) => {
1386 0 : Err(ApiError::NotFound("unknown instance id".into()))
1387 : }
1388 0 : Err(other) => Err(other.into()),
1389 : }
1390 0 : }
1391 :
1392 : /// Used as part of deployment scripts.
1393 : ///
1394 : /// Assumes information is only relayed to storage controller after first selecting an unique id on
1395 : /// control plane database, which means we have an id field in the request and payload.
1396 0 : async fn handle_upsert_safekeeper(mut req: Request<Body>) -> Result<Response<Body>, ApiError> {
1397 0 : check_permissions(&req, Scope::Infra)?;
1398 :
1399 0 : let body = json_request::<SafekeeperUpsert>(&mut req).await?;
1400 0 : let id = parse_request_param::<i64>(&req, "id")?;
1401 :
1402 0 : if id != body.id {
1403 : // it should be repeated
1404 0 : return Err(ApiError::BadRequest(anyhow::anyhow!(
1405 0 : "id mismatch: url={id:?}, body={:?}",
1406 0 : body.id
1407 0 : )));
1408 0 : }
1409 :
1410 0 : let req = match maybe_forward(req).await {
1411 0 : ForwardOutcome::Forwarded(res) => {
1412 0 : return res;
1413 : }
1414 0 : ForwardOutcome::NotForwarded(req) => req,
1415 0 : };
1416 0 :
1417 0 : let state = get_state(&req);
1418 0 :
1419 0 : state.service.upsert_safekeeper(body).await?;
1420 :
1421 0 : Ok(Response::builder()
1422 0 : .status(StatusCode::NO_CONTENT)
1423 0 : .body(Body::empty())
1424 0 : .unwrap())
1425 0 : }
1426 :
1427 : /// Sets the scheduling policy of the specified safekeeper
1428 0 : async fn handle_safekeeper_scheduling_policy(
1429 0 : mut req: Request<Body>,
1430 0 : ) -> Result<Response<Body>, ApiError> {
1431 0 : check_permissions(&req, Scope::Admin)?;
1432 :
1433 0 : let body = json_request::<SafekeeperSchedulingPolicyRequest>(&mut req).await?;
1434 0 : let id = parse_request_param::<i64>(&req, "id")?;
1435 :
1436 0 : let req = match maybe_forward(req).await {
1437 0 : ForwardOutcome::Forwarded(res) => {
1438 0 : return res;
1439 : }
1440 0 : ForwardOutcome::NotForwarded(req) => req,
1441 0 : };
1442 0 :
1443 0 : let state = get_state(&req);
1444 0 :
1445 0 : state
1446 0 : .service
1447 0 : .set_safekeeper_scheduling_policy(id, body.scheduling_policy)
1448 0 : .await?;
1449 :
1450 0 : json_response(StatusCode::OK, ())
1451 0 : }
1452 :
1453 : /// Common wrapper for request handlers that call into Service and will operate on tenants: they must only
1454 : /// be allowed to run if Service has finished its initial reconciliation.
1455 0 : async fn tenant_service_handler<R, H>(
1456 0 : request: Request<Body>,
1457 0 : handler: H,
1458 0 : request_name: RequestName,
1459 0 : ) -> R::Output
1460 0 : where
1461 0 : R: std::future::Future<Output = Result<Response<Body>, ApiError>> + Send + 'static,
1462 0 : H: FnOnce(Arc<Service>, Request<Body>) -> R + Send + Sync + 'static,
1463 0 : {
1464 0 : let state = get_state(&request);
1465 0 : let service = state.service.clone();
1466 0 :
1467 0 : let startup_complete = service.startup_complete.clone();
1468 0 : if tokio::time::timeout(STARTUP_RECONCILE_TIMEOUT, startup_complete.wait())
1469 0 : .await
1470 0 : .is_err()
1471 : {
1472 : // This shouldn't happen: it is the responsibilty of [`Service::startup_reconcile`] to use appropriate
1473 : // timeouts around its remote calls, to bound its runtime.
1474 0 : return Err(ApiError::Timeout(
1475 0 : "Timed out waiting for service readiness".into(),
1476 0 : ));
1477 0 : }
1478 0 :
1479 0 : named_request_span(
1480 0 : request,
1481 0 : |request| async move { handler(service, request).await },
1482 0 : request_name,
1483 0 : )
1484 0 : .await
1485 0 : }
1486 :
1487 : /// Check if the required scope is held in the request's token, or if the request has
1488 : /// a token with 'admin' scope then always permit it.
1489 0 : fn check_permissions(request: &Request<Body>, required_scope: Scope) -> Result<(), ApiError> {
1490 0 : check_permission_with(request, |claims| {
1491 0 : match crate::auth::check_permission(claims, required_scope) {
1492 0 : Err(e) => match crate::auth::check_permission(claims, Scope::Admin) {
1493 0 : Ok(()) => Ok(()),
1494 0 : Err(_) => Err(e),
1495 : },
1496 0 : Ok(()) => Ok(()),
1497 : }
1498 0 : })
1499 0 : }
1500 :
1501 : #[derive(Clone, Debug)]
1502 : struct RequestMeta {
1503 : method: hyper::http::Method,
1504 : at: Instant,
1505 : }
1506 :
1507 0 : pub fn prologue_leadership_status_check_middleware<
1508 0 : B: hyper::body::HttpBody + Send + Sync + 'static,
1509 0 : >() -> Middleware<B, ApiError> {
1510 0 : Middleware::pre(move |req| async move {
1511 0 : let state = get_state(&req);
1512 0 : let leadership_status = state.service.get_leadership_status();
1513 :
1514 : enum AllowedRoutes {
1515 : All,
1516 : Some(&'static [&'static str]),
1517 : }
1518 :
1519 0 : let allowed_routes = match leadership_status {
1520 0 : LeadershipStatus::Leader => AllowedRoutes::All,
1521 0 : LeadershipStatus::SteppedDown => AllowedRoutes::All,
1522 0 : LeadershipStatus::Candidate => AllowedRoutes::Some(&[
1523 0 : "/ready",
1524 0 : "/status",
1525 0 : "/metrics",
1526 0 : "/profile/cpu",
1527 0 : "/profile/heap",
1528 0 : ]),
1529 : };
1530 :
1531 0 : match allowed_routes {
1532 0 : AllowedRoutes::All => Ok(req),
1533 0 : AllowedRoutes::Some(allowed) if allowed.contains(&req.uri().path()) => Ok(req),
1534 : _ => {
1535 0 : tracing::info!(
1536 0 : "Request {} not allowed due to current leadership state",
1537 0 : req.uri()
1538 : );
1539 :
1540 0 : Err(ApiError::ResourceUnavailable(
1541 0 : format!("Current leadership status is {leadership_status}").into(),
1542 0 : ))
1543 : }
1544 : }
1545 0 : })
1546 0 : }
1547 :
1548 0 : fn prologue_metrics_middleware<B: hyper::body::HttpBody + Send + Sync + 'static>()
1549 0 : -> Middleware<B, ApiError> {
1550 0 : Middleware::pre(move |req| async move {
1551 0 : let meta = RequestMeta {
1552 0 : method: req.method().clone(),
1553 0 : at: Instant::now(),
1554 0 : };
1555 0 :
1556 0 : req.set_context(meta);
1557 0 :
1558 0 : Ok(req)
1559 0 : })
1560 0 : }
1561 :
1562 0 : fn epilogue_metrics_middleware<B: hyper::body::HttpBody + Send + Sync + 'static>()
1563 0 : -> Middleware<B, ApiError> {
1564 0 : Middleware::post_with_info(move |resp, req_info| async move {
1565 0 : let request_name = match req_info.context::<RequestName>() {
1566 0 : Some(name) => name,
1567 : None => {
1568 0 : return Ok(resp);
1569 : }
1570 : };
1571 :
1572 0 : if let Some(meta) = req_info.context::<RequestMeta>() {
1573 0 : let status = &crate::metrics::METRICS_REGISTRY
1574 0 : .metrics_group
1575 0 : .storage_controller_http_request_status;
1576 0 : let latency = &crate::metrics::METRICS_REGISTRY
1577 0 : .metrics_group
1578 0 : .storage_controller_http_request_latency;
1579 0 :
1580 0 : status.inc(HttpRequestStatusLabelGroup {
1581 0 : path: request_name.0,
1582 0 : method: meta.method.clone().into(),
1583 0 : status: crate::metrics::StatusCode(resp.status()),
1584 0 : });
1585 0 :
1586 0 : latency.observe(
1587 0 : HttpRequestLatencyLabelGroup {
1588 0 : path: request_name.0,
1589 0 : method: meta.method.into(),
1590 0 : },
1591 0 : meta.at.elapsed().as_secs_f64(),
1592 0 : );
1593 0 : }
1594 0 : Ok(resp)
1595 0 : })
1596 0 : }
1597 :
1598 0 : pub async fn measured_metrics_handler(req: Request<Body>) -> Result<Response<Body>, ApiError> {
1599 : pub const TEXT_FORMAT: &str = "text/plain; version=0.0.4";
1600 :
1601 0 : let req = match maybe_forward(req).await {
1602 0 : ForwardOutcome::Forwarded(res) => {
1603 0 : return res;
1604 : }
1605 0 : ForwardOutcome::NotForwarded(req) => req,
1606 0 : };
1607 0 :
1608 0 : let state = get_state(&req);
1609 0 : let payload = crate::metrics::METRICS_REGISTRY.encode(&state.neon_metrics);
1610 0 : let response = Response::builder()
1611 0 : .status(200)
1612 0 : .header(CONTENT_TYPE, TEXT_FORMAT)
1613 0 : .body(payload.into())
1614 0 : .unwrap();
1615 0 :
1616 0 : Ok(response)
1617 0 : }
1618 :
1619 : #[derive(Clone)]
1620 : struct RequestName(&'static str);
1621 :
1622 0 : async fn named_request_span<R, H>(
1623 0 : request: Request<Body>,
1624 0 : handler: H,
1625 0 : name: RequestName,
1626 0 : ) -> R::Output
1627 0 : where
1628 0 : R: Future<Output = Result<Response<Body>, ApiError>> + Send + 'static,
1629 0 : H: FnOnce(Request<Body>) -> R + Send + Sync + 'static,
1630 0 : {
1631 0 : request.set_context(name);
1632 0 : request_span(request, handler).await
1633 0 : }
1634 :
1635 : enum ForwardOutcome {
1636 : Forwarded(Result<Response<Body>, ApiError>),
1637 : NotForwarded(Request<Body>),
1638 : }
1639 :
1640 : /// Potentially forward the request to the current storage controler leader.
1641 : /// More specifically we forward when:
1642 : /// 1. Request is not one of:
1643 : /// ["/control/v1/step_down", "/status", "/ready", "/metrics", "/profile/cpu", "/profile/heap"]
1644 : /// 2. Current instance is in [`LeadershipStatus::SteppedDown`] state
1645 : /// 3. There is a leader in the database to forward to
1646 : /// 4. Leader from step (3) is not the current instance
1647 : ///
1648 : /// Why forward?
1649 : /// It turns out that we can't rely on external orchestration to promptly route trafic to the
1650 : /// new leader. This is downtime inducing. Forwarding provides a safe way out.
1651 : ///
1652 : /// Why is it safe?
1653 : /// If a storcon instance is persisted in the database, then we know that it is the current leader.
1654 : /// There's one exception: time between handling step-down request and the new leader updating the
1655 : /// database.
1656 : ///
1657 : /// Let's treat the happy case first. The stepped down node does not produce any side effects,
1658 : /// since all request handling happens on the leader.
1659 : ///
1660 : /// As for the edge case, we are guaranteed to always have a maximum of two running instances.
1661 : /// Hence, if we are in the edge case scenario the leader persisted in the database is the
1662 : /// stepped down instance that received the request. Condition (4) above covers this scenario.
1663 0 : async fn maybe_forward(req: Request<Body>) -> ForwardOutcome {
1664 : const NOT_FOR_FORWARD: &[&str] = &[
1665 : "/control/v1/step_down",
1666 : "/status",
1667 : "/ready",
1668 : "/metrics",
1669 : "/profile/cpu",
1670 : "/profile/heap",
1671 : ];
1672 :
1673 0 : let uri = req.uri();
1674 0 : let uri_for_forward = !NOT_FOR_FORWARD.contains(&uri.path());
1675 0 :
1676 0 : // Fast return before trying to take any Service locks, if we will never forward anyway
1677 0 : if !uri_for_forward {
1678 0 : return ForwardOutcome::NotForwarded(req);
1679 0 : }
1680 0 :
1681 0 : let state = get_state(&req);
1682 0 : let leadership_status = state.service.get_leadership_status();
1683 0 :
1684 0 : if leadership_status != LeadershipStatus::SteppedDown {
1685 0 : return ForwardOutcome::NotForwarded(req);
1686 0 : }
1687 :
1688 0 : let leader = state.service.get_leader().await;
1689 0 : let leader = {
1690 0 : match leader {
1691 0 : Ok(Some(leader)) => leader,
1692 : Ok(None) => {
1693 0 : return ForwardOutcome::Forwarded(Err(ApiError::ResourceUnavailable(
1694 0 : "No leader to forward to while in stepped down state".into(),
1695 0 : )));
1696 : }
1697 0 : Err(err) => {
1698 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(
1699 0 : anyhow::anyhow!(
1700 0 : "Failed to get leader for forwarding while in stepped down state: {err}"
1701 0 : ),
1702 0 : )));
1703 : }
1704 : }
1705 : };
1706 :
1707 0 : let cfg = state.service.get_config();
1708 0 : if let Some(ref self_addr) = cfg.address_for_peers {
1709 0 : let leader_addr = match Uri::from_str(leader.address.as_str()) {
1710 0 : Ok(uri) => uri,
1711 0 : Err(err) => {
1712 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(
1713 0 : anyhow::anyhow!(
1714 0 : "Failed to parse leader uri for forwarding while in stepped down state: {err}"
1715 0 : ),
1716 0 : )));
1717 : }
1718 : };
1719 :
1720 0 : if *self_addr == leader_addr {
1721 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(anyhow::anyhow!(
1722 0 : "Leader is stepped down instance"
1723 0 : ))));
1724 0 : }
1725 0 : }
1726 :
1727 0 : tracing::info!("Forwarding {} to leader at {}", uri, leader.address);
1728 :
1729 : // Use [`RECONCILE_TIMEOUT`] as the max amount of time a request should block for and
1730 : // include some leeway to get the timeout for proxied requests.
1731 : const PROXIED_REQUEST_TIMEOUT: Duration = Duration::from_secs(RECONCILE_TIMEOUT.as_secs() + 10);
1732 0 : let client = reqwest::ClientBuilder::new()
1733 0 : .timeout(PROXIED_REQUEST_TIMEOUT)
1734 0 : .build();
1735 0 : let client = match client {
1736 0 : Ok(client) => client,
1737 0 : Err(err) => {
1738 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(anyhow::anyhow!(
1739 0 : "Failed to build leader client for forwarding while in stepped down state: {err}"
1740 0 : ))));
1741 : }
1742 : };
1743 :
1744 0 : let request: reqwest::Request = match convert_request(req, &client, leader.address).await {
1745 0 : Ok(r) => r,
1746 0 : Err(err) => {
1747 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(anyhow::anyhow!(
1748 0 : "Failed to convert request for forwarding while in stepped down state: {err}"
1749 0 : ))));
1750 : }
1751 : };
1752 :
1753 0 : let response = match client.execute(request).await {
1754 0 : Ok(r) => r,
1755 0 : Err(err) => {
1756 0 : return ForwardOutcome::Forwarded(Err(ApiError::InternalServerError(anyhow::anyhow!(
1757 0 : "Failed to forward while in stepped down state: {err}"
1758 0 : ))));
1759 : }
1760 : };
1761 :
1762 0 : ForwardOutcome::Forwarded(convert_response(response).await)
1763 0 : }
1764 :
1765 : /// Convert a [`reqwest::Response`] to a [hyper::Response`] by passing through
1766 : /// a stable representation (string, bytes or integer)
1767 : ///
1768 : /// Ideally, we would not have to do this since both types use the http crate
1769 : /// under the hood. However, they use different versions of the crate and keeping
1770 : /// second order dependencies in sync is difficult.
1771 0 : async fn convert_response(resp: reqwest::Response) -> Result<hyper::Response<Body>, ApiError> {
1772 : use std::str::FromStr;
1773 :
1774 0 : let mut builder = hyper::Response::builder().status(resp.status().as_u16());
1775 0 : for (key, value) in resp.headers().into_iter() {
1776 0 : let key = hyper::header::HeaderName::from_str(key.as_str()).map_err(|err| {
1777 0 : ApiError::InternalServerError(anyhow::anyhow!("Response conversion failed: {err}"))
1778 0 : })?;
1779 :
1780 0 : let value = hyper::header::HeaderValue::from_bytes(value.as_bytes()).map_err(|err| {
1781 0 : ApiError::InternalServerError(anyhow::anyhow!("Response conversion failed: {err}"))
1782 0 : })?;
1783 :
1784 0 : builder = builder.header(key, value);
1785 : }
1786 :
1787 0 : let body = http::Body::wrap_stream(resp.bytes_stream());
1788 0 :
1789 0 : builder.body(body).map_err(|err| {
1790 0 : ApiError::InternalServerError(anyhow::anyhow!("Response conversion failed: {err}"))
1791 0 : })
1792 0 : }
1793 :
1794 : /// Convert a [`reqwest::Request`] to a [hyper::Request`] by passing through
1795 : /// a stable representation (string, bytes or integer)
1796 : ///
1797 : /// See [`convert_response`] for why we are doing it this way.
1798 0 : async fn convert_request(
1799 0 : req: hyper::Request<Body>,
1800 0 : client: &reqwest::Client,
1801 0 : to_address: String,
1802 0 : ) -> Result<reqwest::Request, ApiError> {
1803 : use std::str::FromStr;
1804 :
1805 0 : let (parts, body) = req.into_parts();
1806 0 : let method = reqwest::Method::from_str(parts.method.as_str()).map_err(|err| {
1807 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1808 0 : })?;
1809 :
1810 0 : let path_and_query = parts.uri.path_and_query().ok_or_else(|| {
1811 0 : ApiError::InternalServerError(anyhow::anyhow!(
1812 0 : "Request conversion failed: no path and query"
1813 0 : ))
1814 0 : })?;
1815 :
1816 0 : let uri = reqwest::Url::from_str(
1817 0 : format!(
1818 0 : "{}{}",
1819 0 : to_address.trim_end_matches("/"),
1820 0 : path_and_query.as_str()
1821 0 : )
1822 0 : .as_str(),
1823 0 : )
1824 0 : .map_err(|err| {
1825 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1826 0 : })?;
1827 :
1828 0 : let mut headers = reqwest::header::HeaderMap::new();
1829 0 : for (key, value) in parts.headers.into_iter() {
1830 0 : let key = match key {
1831 0 : Some(k) => k,
1832 : None => {
1833 0 : continue;
1834 : }
1835 : };
1836 :
1837 0 : let key = reqwest::header::HeaderName::from_str(key.as_str()).map_err(|err| {
1838 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1839 0 : })?;
1840 :
1841 0 : let value = reqwest::header::HeaderValue::from_bytes(value.as_bytes()).map_err(|err| {
1842 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1843 0 : })?;
1844 :
1845 0 : headers.insert(key, value);
1846 : }
1847 :
1848 0 : let body = hyper::body::to_bytes(body).await.map_err(|err| {
1849 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1850 0 : })?;
1851 :
1852 0 : client
1853 0 : .request(method, uri)
1854 0 : .headers(headers)
1855 0 : .body(body)
1856 0 : .build()
1857 0 : .map_err(|err| {
1858 0 : ApiError::InternalServerError(anyhow::anyhow!("Request conversion failed: {err}"))
1859 0 : })
1860 0 : }
1861 :
1862 0 : pub fn make_router(
1863 0 : service: Arc<Service>,
1864 0 : auth: Option<Arc<SwappableJwtAuth>>,
1865 0 : build_info: BuildInfo,
1866 0 : ) -> RouterBuilder<hyper::Body, ApiError> {
1867 0 : let mut router = endpoint::make_router()
1868 0 : .middleware(prologue_leadership_status_check_middleware())
1869 0 : .middleware(prologue_metrics_middleware())
1870 0 : .middleware(epilogue_metrics_middleware());
1871 0 : if auth.is_some() {
1872 0 : router = router.middleware(auth_middleware(|request| {
1873 0 : let state = get_state(request);
1874 0 : if state.allowlist_routes.contains(&request.uri().path()) {
1875 0 : None
1876 : } else {
1877 0 : state.auth.as_deref()
1878 : }
1879 0 : }));
1880 0 : }
1881 :
1882 0 : router
1883 0 : .data(Arc::new(HttpState::new(service, auth, build_info)))
1884 0 : .get("/metrics", |r| {
1885 0 : named_request_span(r, measured_metrics_handler, RequestName("metrics"))
1886 0 : })
1887 0 : // Non-prefixed generic endpoints (status, metrics, profiling)
1888 0 : .get("/status", |r| {
1889 0 : named_request_span(r, handle_status, RequestName("status"))
1890 0 : })
1891 0 : .get("/ready", |r| {
1892 0 : named_request_span(r, handle_ready, RequestName("ready"))
1893 0 : })
1894 0 : .get("/profile/cpu", |r| {
1895 0 : named_request_span(r, profile_cpu_handler, RequestName("profile_cpu"))
1896 0 : })
1897 0 : .get("/profile/heap", |r| {
1898 0 : named_request_span(r, profile_heap_handler, RequestName("profile_heap"))
1899 0 : })
1900 0 : // Upcalls for the pageserver: point the pageserver's `control_plane_api` config to this prefix
1901 0 : .post("/upcall/v1/re-attach", |r| {
1902 0 : named_request_span(r, handle_re_attach, RequestName("upcall_v1_reattach"))
1903 0 : })
1904 0 : .post("/upcall/v1/validate", |r| {
1905 0 : named_request_span(r, handle_validate, RequestName("upcall_v1_validate"))
1906 0 : })
1907 0 : // Test/dev/debug endpoints
1908 0 : .post("/debug/v1/attach-hook", |r| {
1909 0 : named_request_span(r, handle_attach_hook, RequestName("debug_v1_attach_hook"))
1910 0 : })
1911 0 : .post("/debug/v1/inspect", |r| {
1912 0 : named_request_span(r, handle_inspect, RequestName("debug_v1_inspect"))
1913 0 : })
1914 0 : .post("/debug/v1/tenant/:tenant_id/drop", |r| {
1915 0 : named_request_span(r, handle_tenant_drop, RequestName("debug_v1_tenant_drop"))
1916 0 : })
1917 0 : .post("/debug/v1/node/:node_id/drop", |r| {
1918 0 : named_request_span(r, handle_node_drop, RequestName("debug_v1_node_drop"))
1919 0 : })
1920 0 : .post("/debug/v1/tenant/:tenant_id/import", |r| {
1921 0 : named_request_span(
1922 0 : r,
1923 0 : handle_tenant_import,
1924 0 : RequestName("debug_v1_tenant_import"),
1925 0 : )
1926 0 : })
1927 0 : .get("/debug/v1/tenant", |r| {
1928 0 : named_request_span(r, handle_tenants_dump, RequestName("debug_v1_tenant"))
1929 0 : })
1930 0 : .get("/debug/v1/tenant/:tenant_id/locate", |r| {
1931 0 : tenant_service_handler(
1932 0 : r,
1933 0 : handle_tenant_locate,
1934 0 : RequestName("debug_v1_tenant_locate"),
1935 0 : )
1936 0 : })
1937 0 : .get("/debug/v1/scheduler", |r| {
1938 0 : named_request_span(r, handle_scheduler_dump, RequestName("debug_v1_scheduler"))
1939 0 : })
1940 0 : .post("/debug/v1/consistency_check", |r| {
1941 0 : named_request_span(
1942 0 : r,
1943 0 : handle_consistency_check,
1944 0 : RequestName("debug_v1_consistency_check"),
1945 0 : )
1946 0 : })
1947 0 : .post("/debug/v1/reconcile_all", |r| {
1948 0 : request_span(r, handle_reconcile_all)
1949 0 : })
1950 0 : .put("/debug/v1/failpoints", |r| {
1951 0 : request_span(r, |r| failpoints_handler(r, CancellationToken::new()))
1952 0 : })
1953 0 : // Node operations
1954 0 : .post("/control/v1/node", |r| {
1955 0 : named_request_span(r, handle_node_register, RequestName("control_v1_node"))
1956 0 : })
1957 0 : .delete("/control/v1/node/:node_id", |r| {
1958 0 : named_request_span(r, handle_node_delete, RequestName("control_v1_node_delete"))
1959 0 : })
1960 0 : .get("/control/v1/node", |r| {
1961 0 : named_request_span(r, handle_node_list, RequestName("control_v1_node"))
1962 0 : })
1963 0 : .put("/control/v1/node/:node_id/config", |r| {
1964 0 : named_request_span(
1965 0 : r,
1966 0 : handle_node_configure,
1967 0 : RequestName("control_v1_node_config"),
1968 0 : )
1969 0 : })
1970 0 : .get("/control/v1/node/:node_id", |r| {
1971 0 : named_request_span(r, handle_node_status, RequestName("control_v1_node_status"))
1972 0 : })
1973 0 : .get("/control/v1/node/:node_id/shards", |r| {
1974 0 : named_request_span(
1975 0 : r,
1976 0 : handle_node_shards,
1977 0 : RequestName("control_v1_node_describe"),
1978 0 : )
1979 0 : })
1980 0 : .get("/control/v1/leader", |r| {
1981 0 : named_request_span(r, handle_get_leader, RequestName("control_v1_get_leader"))
1982 0 : })
1983 0 : .put("/control/v1/node/:node_id/drain", |r| {
1984 0 : named_request_span(r, handle_node_drain, RequestName("control_v1_node_drain"))
1985 0 : })
1986 0 : .delete("/control/v1/node/:node_id/drain", |r| {
1987 0 : named_request_span(
1988 0 : r,
1989 0 : handle_cancel_node_drain,
1990 0 : RequestName("control_v1_cancel_node_drain"),
1991 0 : )
1992 0 : })
1993 0 : .put("/control/v1/node/:node_id/fill", |r| {
1994 0 : named_request_span(r, handle_node_fill, RequestName("control_v1_node_fill"))
1995 0 : })
1996 0 : .delete("/control/v1/node/:node_id/fill", |r| {
1997 0 : named_request_span(
1998 0 : r,
1999 0 : handle_cancel_node_fill,
2000 0 : RequestName("control_v1_cancel_node_fill"),
2001 0 : )
2002 0 : })
2003 0 : // Metadata health operations
2004 0 : .post("/control/v1/metadata_health/update", |r| {
2005 0 : named_request_span(
2006 0 : r,
2007 0 : handle_metadata_health_update,
2008 0 : RequestName("control_v1_metadata_health_update"),
2009 0 : )
2010 0 : })
2011 0 : .get("/control/v1/metadata_health/unhealthy", |r| {
2012 0 : named_request_span(
2013 0 : r,
2014 0 : handle_metadata_health_list_unhealthy,
2015 0 : RequestName("control_v1_metadata_health_list_unhealthy"),
2016 0 : )
2017 0 : })
2018 0 : .post("/control/v1/metadata_health/outdated", |r| {
2019 0 : named_request_span(
2020 0 : r,
2021 0 : handle_metadata_health_list_outdated,
2022 0 : RequestName("control_v1_metadata_health_list_outdated"),
2023 0 : )
2024 0 : })
2025 0 : // Safekeepers
2026 0 : .get("/control/v1/safekeeper", |r| {
2027 0 : named_request_span(
2028 0 : r,
2029 0 : handle_safekeeper_list,
2030 0 : RequestName("control_v1_safekeeper_list"),
2031 0 : )
2032 0 : })
2033 0 : .get("/control/v1/safekeeper/:id", |r| {
2034 0 : named_request_span(r, handle_get_safekeeper, RequestName("v1_safekeeper"))
2035 0 : })
2036 0 : .post("/control/v1/safekeeper/:id", |r| {
2037 0 : // id is in the body
2038 0 : named_request_span(
2039 0 : r,
2040 0 : handle_upsert_safekeeper,
2041 0 : RequestName("v1_safekeeper_post"),
2042 0 : )
2043 0 : })
2044 0 : .post("/control/v1/safekeeper/:id/scheduling_policy", |r| {
2045 0 : named_request_span(
2046 0 : r,
2047 0 : handle_safekeeper_scheduling_policy,
2048 0 : RequestName("v1_safekeeper_status"),
2049 0 : )
2050 0 : })
2051 0 : // Tenant Shard operations
2052 0 : .put("/control/v1/tenant/:tenant_shard_id/migrate", |r| {
2053 0 : tenant_service_handler(
2054 0 : r,
2055 0 : handle_tenant_shard_migrate,
2056 0 : RequestName("control_v1_tenant_migrate"),
2057 0 : )
2058 0 : })
2059 0 : .put(
2060 0 : "/control/v1/tenant/:tenant_shard_id/migrate_secondary",
2061 0 : |r| {
2062 0 : tenant_service_handler(
2063 0 : r,
2064 0 : handle_tenant_shard_migrate_secondary,
2065 0 : RequestName("control_v1_tenant_migrate_secondary"),
2066 0 : )
2067 0 : },
2068 0 : )
2069 0 : .put(
2070 0 : "/control/v1/tenant/:tenant_shard_id/cancel_reconcile",
2071 0 : |r| {
2072 0 : tenant_service_handler(
2073 0 : r,
2074 0 : handle_tenant_shard_cancel_reconcile,
2075 0 : RequestName("control_v1_tenant_cancel_reconcile"),
2076 0 : )
2077 0 : },
2078 0 : )
2079 0 : .put("/control/v1/tenant/:tenant_id/shard_split", |r| {
2080 0 : tenant_service_handler(
2081 0 : r,
2082 0 : handle_tenant_shard_split,
2083 0 : RequestName("control_v1_tenant_shard_split"),
2084 0 : )
2085 0 : })
2086 0 : .get("/control/v1/tenant/:tenant_id", |r| {
2087 0 : tenant_service_handler(
2088 0 : r,
2089 0 : handle_tenant_describe,
2090 0 : RequestName("control_v1_tenant_describe"),
2091 0 : )
2092 0 : })
2093 0 : .get("/control/v1/tenant", |r| {
2094 0 : tenant_service_handler(r, handle_tenant_list, RequestName("control_v1_tenant_list"))
2095 0 : })
2096 0 : .put("/control/v1/tenant/:tenant_id/policy", |r| {
2097 0 : named_request_span(
2098 0 : r,
2099 0 : handle_tenant_update_policy,
2100 0 : RequestName("control_v1_tenant_policy"),
2101 0 : )
2102 0 : })
2103 0 : .put("/control/v1/preferred_azs", |r| {
2104 0 : named_request_span(
2105 0 : r,
2106 0 : handle_update_preferred_azs,
2107 0 : RequestName("control_v1_preferred_azs"),
2108 0 : )
2109 0 : })
2110 0 : .put("/control/v1/step_down", |r| {
2111 0 : named_request_span(r, handle_step_down, RequestName("control_v1_step_down"))
2112 0 : })
2113 0 : // Tenant operations
2114 0 : // The ^/v1/ endpoints act as a "Virtual Pageserver", enabling shard-naive clients to call into
2115 0 : // this service to manage tenants that actually consist of many tenant shards, as if they are a single entity.
2116 0 : .post("/v1/tenant", |r| {
2117 0 : tenant_service_handler(r, handle_tenant_create, RequestName("v1_tenant"))
2118 0 : })
2119 0 : .delete("/v1/tenant/:tenant_id", |r| {
2120 0 : tenant_service_handler(r, handle_tenant_delete, RequestName("v1_tenant"))
2121 0 : })
2122 0 : .patch("/v1/tenant/config", |r| {
2123 0 : tenant_service_handler(
2124 0 : r,
2125 0 : handle_tenant_config_patch,
2126 0 : RequestName("v1_tenant_config"),
2127 0 : )
2128 0 : })
2129 0 : .put("/v1/tenant/config", |r| {
2130 0 : tenant_service_handler(r, handle_tenant_config_set, RequestName("v1_tenant_config"))
2131 0 : })
2132 0 : .get("/v1/tenant/:tenant_id/config", |r| {
2133 0 : tenant_service_handler(r, handle_tenant_config_get, RequestName("v1_tenant_config"))
2134 0 : })
2135 0 : .put("/v1/tenant/:tenant_shard_id/location_config", |r| {
2136 0 : tenant_service_handler(
2137 0 : r,
2138 0 : handle_tenant_location_config,
2139 0 : RequestName("v1_tenant_location_config"),
2140 0 : )
2141 0 : })
2142 0 : .put("/v1/tenant/:tenant_id/time_travel_remote_storage", |r| {
2143 0 : tenant_service_handler(
2144 0 : r,
2145 0 : handle_tenant_time_travel_remote_storage,
2146 0 : RequestName("v1_tenant_time_travel_remote_storage"),
2147 0 : )
2148 0 : })
2149 0 : .post("/v1/tenant/:tenant_id/secondary/download", |r| {
2150 0 : tenant_service_handler(
2151 0 : r,
2152 0 : handle_tenant_secondary_download,
2153 0 : RequestName("v1_tenant_secondary_download"),
2154 0 : )
2155 0 : })
2156 0 : // Timeline operations
2157 0 : .delete("/v1/tenant/:tenant_id/timeline/:timeline_id", |r| {
2158 0 : tenant_service_handler(
2159 0 : r,
2160 0 : handle_tenant_timeline_delete,
2161 0 : RequestName("v1_tenant_timeline"),
2162 0 : )
2163 0 : })
2164 0 : .post("/v1/tenant/:tenant_id/timeline", |r| {
2165 0 : tenant_service_handler(
2166 0 : r,
2167 0 : handle_tenant_timeline_create,
2168 0 : RequestName("v1_tenant_timeline"),
2169 0 : )
2170 0 : })
2171 0 : .put(
2172 0 : "/v1/tenant/:tenant_id/timeline/:timeline_id/archival_config",
2173 0 : |r| {
2174 0 : tenant_service_handler(
2175 0 : r,
2176 0 : handle_tenant_timeline_archival_config,
2177 0 : RequestName("v1_tenant_timeline_archival_config"),
2178 0 : )
2179 0 : },
2180 0 : )
2181 0 : .put(
2182 0 : "/v1/tenant/:tenant_id/timeline/:timeline_id/detach_ancestor",
2183 0 : |r| {
2184 0 : tenant_service_handler(
2185 0 : r,
2186 0 : handle_tenant_timeline_detach_ancestor,
2187 0 : RequestName("v1_tenant_timeline_detach_ancestor"),
2188 0 : )
2189 0 : },
2190 0 : )
2191 0 : .post(
2192 0 : "/v1/tenant/:tenant_id/timeline/:timeline_id/block_gc",
2193 0 : |r| {
2194 0 : tenant_service_handler(
2195 0 : r,
2196 0 : |s, r| handle_tenant_timeline_block_unblock_gc(s, r, BlockUnblock::Block),
2197 0 : RequestName("v1_tenant_timeline_block_unblock_gc"),
2198 0 : )
2199 0 : },
2200 0 : )
2201 0 : .post(
2202 0 : "/v1/tenant/:tenant_id/timeline/:timeline_id/unblock_gc",
2203 0 : |r| {
2204 0 : tenant_service_handler(
2205 0 : r,
2206 0 : |s, r| handle_tenant_timeline_block_unblock_gc(s, r, BlockUnblock::Unblock),
2207 0 : RequestName("v1_tenant_timeline_block_unblock_gc"),
2208 0 : )
2209 0 : },
2210 0 : )
2211 0 : .post(
2212 0 : "/v1/tenant/:tenant_shard_id/timeline/:timeline_id/download_heatmap_layers",
2213 0 : |r| {
2214 0 : tenant_service_handler(
2215 0 : r,
2216 0 : handle_tenant_timeline_download_heatmap_layers,
2217 0 : RequestName("v1_tenant_timeline_download_heatmap_layers"),
2218 0 : )
2219 0 : },
2220 0 : )
2221 0 : // LSN lease passthrough to all shards
2222 0 : .post(
2223 0 : "/v1/tenant/:tenant_id/timeline/:timeline_id/lsn_lease",
2224 0 : |r| {
2225 0 : tenant_service_handler(
2226 0 : r,
2227 0 : handle_tenant_timeline_lsn_lease,
2228 0 : RequestName("v1_tenant_timeline_lsn_lease"),
2229 0 : )
2230 0 : },
2231 0 : )
2232 0 : // Tenant detail GET passthrough to shard zero:
2233 0 : .get("/v1/tenant/:tenant_id", |r| {
2234 0 : tenant_service_handler(
2235 0 : r,
2236 0 : handle_tenant_timeline_passthrough,
2237 0 : RequestName("v1_tenant_passthrough"),
2238 0 : )
2239 0 : })
2240 0 : // The `*` in the URL is a wildcard: any tenant/timeline GET APIs on the pageserver
2241 0 : // are implicitly exposed here. This must be last in the list to avoid
2242 0 : // taking precedence over other GET methods we might implement by hand.
2243 0 : .get("/v1/tenant/:tenant_id/*", |r| {
2244 0 : tenant_service_handler(
2245 0 : r,
2246 0 : handle_tenant_timeline_passthrough,
2247 0 : RequestName("v1_tenant_passthrough"),
2248 0 : )
2249 0 : })
2250 0 : }
2251 :
2252 : #[cfg(test)]
2253 : mod test {
2254 :
2255 : use super::path_without_ids;
2256 :
2257 : #[test]
2258 1 : fn test_path_without_ids() {
2259 1 : assert_eq!(
2260 1 : path_without_ids(
2261 1 : "/v1/tenant/1a2b3344556677881122334455667788/timeline/AA223344556677881122334455667788"
2262 1 : ),
2263 1 : "/v1/tenant//timeline/"
2264 1 : );
2265 1 : assert_eq!(
2266 1 : path_without_ids(
2267 1 : "/v1/tenant/1a2b3344556677881122334455667788-0108/timeline/AA223344556677881122334455667788"
2268 1 : ),
2269 1 : "/v1/tenant//timeline/"
2270 1 : );
2271 1 : assert_eq!(
2272 1 : path_without_ids(
2273 1 : "/v1/tenant/1a2b3344556677881122334455667788-0108/timeline/AA223344556677881122334455667788?parameter=foo"
2274 1 : ),
2275 1 : "/v1/tenant//timeline/"
2276 1 : );
2277 1 : }
2278 : }
|