apollo-router 2.13.1

A configurable, high-performance routing runtime for Apollo Federation 🚀
Documentation
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
//! Server implementation for the callback-based subscription protocol.
use std::task::Poll;

use bytes::Buf;
use futures::future::BoxFuture;
use hmac::Hmac;
use hmac::Mac;
use http::HeaderName;
use http::HeaderValue;
use http::Method;
use http::StatusCode;
use once_cell::sync::OnceCell;
use schemars::JsonSchema;
use serde::Deserialize;
use serde::Serialize;
use sha2::Digest;
use sha2::Sha256;
use tower::BoxError;
use tower::Service;
use tracing_futures::Instrument;

use crate::context::Context;
use crate::graphql;
use crate::graphql::Response;
use crate::plugins::subscription::notification::Notify;
use crate::plugins::subscription::notification::NotifyError;
use crate::services::router;
use crate::services::router::body::RouterBody;

type HmacSha256 = Hmac<sha2::Sha256>;
pub(crate) static SUBSCRIPTION_CALLBACK_HMAC_KEY: OnceCell<String> = OnceCell::new();
pub(crate) const CALLBACK_SUBSCRIPTION_HEADER_NAME: &str = "subscription-protocol";
pub(crate) const CALLBACK_SUBSCRIPTION_HEADER_VALUE: &str = "callback/1.0";

#[derive(Serialize, Deserialize, Clone, Debug)]
#[serde(tag = "kind", rename = "lowercase")]
pub(crate) enum CallbackPayload {
    #[serde(rename = "subscription")]
    Subscription(SubscriptionPayload),
}

impl CallbackPayload {
    fn id(&self) -> &String {
        match self {
            CallbackPayload::Subscription(subscription_payload) => subscription_payload.id(),
        }
    }

    fn verifier(&self) -> &String {
        match self {
            CallbackPayload::Subscription(subscription_payload) => subscription_payload.verifier(),
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Default, Deserialize, Serialize, JsonSchema)]
#[serde(deny_unknown_fields, default)]
/// Callback payload when a subscription id is incorrect
pub(crate) struct InvalidIdsPayload {
    /// List of invalid ids
    pub(crate) invalid_ids: Vec<String>,
    pub(crate) id: String,
    pub(crate) verifier: String,
}

#[derive(Serialize, Deserialize, Clone, Debug)]
#[serde(tag = "action", rename = "lowercase")]
pub(crate) enum SubscriptionPayload {
    #[serde(rename = "check")]
    Check { id: String, verifier: String },
    #[serde(rename = "heartbeat")]
    Heartbeat {
        /// Id sent with the corresponding verifier
        id: String,
        /// List of ids to heartbeat
        ids: Vec<String>,
        /// Verifier received with the corresponding id
        verifier: String,
    },
    #[serde(rename = "next")]
    Next {
        id: String,
        payload: Box<Response>,
        verifier: String,
    },
    #[serde(rename = "complete")]
    Complete {
        id: String,
        verifier: String,
        errors: Option<Vec<graphql::Error>>,
    },
}

impl SubscriptionPayload {
    fn id(&self) -> &String {
        match self {
            SubscriptionPayload::Check { id, .. }
            | SubscriptionPayload::Heartbeat { id, .. }
            | SubscriptionPayload::Next { id, .. }
            | SubscriptionPayload::Complete { id, .. } => id,
        }
    }

    fn verifier(&self) -> &String {
        match self {
            SubscriptionPayload::Check { verifier, .. }
            | SubscriptionPayload::Heartbeat { verifier, .. }
            | SubscriptionPayload::Next { verifier, .. }
            | SubscriptionPayload::Complete { verifier, .. } => verifier,
        }
    }
}

#[derive(Clone)]
pub(crate) struct CallbackService {
    notify: Notify<String, graphql::Response>,
    path: String,
    callback_hmac_key: String,
}

impl CallbackService {
    pub(crate) fn new(
        notify: Notify<String, graphql::Response>,
        path: String,
        callback_hmac_key: String,
    ) -> Self {
        Self {
            notify,
            path,
            callback_hmac_key,
        }
    }
}

impl Service<router::Request> for CallbackService {
    type Response = router::Response;
    type Error = BoxError;
    type Future = BoxFuture<'static, Result<Self::Response, Self::Error>>;

    fn poll_ready(&mut self, _: &mut std::task::Context<'_>) -> Poll<Result<(), Self::Error>> {
        Ok(()).into()
    }

    fn call(&mut self, req: router::Request) -> Self::Future {
        let mut notify = self.notify.clone();
        let path = self.path.clone();
        let callback_hmac_key = self.callback_hmac_key.clone();
        Box::pin(
            async move {
                let (parts, body) = req.router_request.into_parts();
                let sub_id = parts
                    .uri
                    .path()
                    .trim_start_matches(&format!("{path}/"))
                    .to_string();

                match parts.method {
                    Method::POST => {
                        let cb_body = router::body::into_bytes(Into::<RouterBody>::into(body))
                            .await
                            .map_err(|e| format!("failed to get the request body: {e}"))
                            .and_then(|bytes| {
                                serde_json::from_reader::<_, CallbackPayload>(bytes.reader())
                                    .map_err(|err| {
                                        format!(
                                        "failed to deserialize the request body into JSON: {err}"
                                    )
                                    })
                            });
                        let cb_body = match cb_body {
                            Ok(cb_body) => cb_body,
                            Err(err) => {
                                return router::Response::error_builder()
                                    .status_code(StatusCode::BAD_REQUEST)
                                    .error(graphql::Error::builder()
                                        .message(err)
                                        .extension_code(StatusCode::BAD_REQUEST.to_string())
                                        .build()
                                    )
                                    .context(req.context)
                                    .build();
                            }
                        };
                        let id = cb_body.id().clone();

                        // Hash verifier to sha256 to mitigate timing attack
                        // Check verifier
                        let verifier = cb_body.verifier();
                        let mut verifier_hasher = Sha256::new();
                        verifier_hasher.update(verifier.as_bytes());
                        let hashed_verifier = verifier_hasher.finalize();

                        let mut mac = HmacSha256::new_from_slice(callback_hmac_key.as_bytes())?;
                        mac.update(id.as_bytes());
                        let result = mac.finalize();
                        let expected_verifier = hex::encode(result.into_bytes());
                        let mut verifier_hasher = Sha256::new();
                        verifier_hasher.update(expected_verifier.as_bytes());
                        let expected_hashed_verifier = verifier_hasher.finalize();

                        if hashed_verifier != expected_hashed_verifier {
                            return router::Response::error_builder()
                                .status_code(StatusCode::UNAUTHORIZED)
                                .error(graphql::Error::builder()
                                    .message("verifier doesn't match")
                                    .extension_code(StatusCode::UNAUTHORIZED.to_string())
                                    .build()
                                )
                                .context(req.context)
                                .build();
                        }

                        if let Err(res) = ensure_id_consistency(&req.context, &sub_id, &id) {
                            return Ok(res);
                        }

                        match cb_body {
                            CallbackPayload::Subscription(SubscriptionPayload::Next {
                                mut payload,
                                ..
                            }) => {
                                let mut handle = match notify.subscribe_if_exist(id).await? {
                                    Some(handle) => handle.into_sink(),
                                    None => {
                                        return router::Response::error_builder()
                                            .status_code(StatusCode::NOT_FOUND)
                                            .error(graphql::Error::builder()
                                                .message("subscription doesn't exist")
                                                .extension_code(StatusCode::NOT_FOUND.to_string())
                                                .build()
                                            )
                                            .context(req.context)
                                            .build();
                                    }
                                };
                                // Keep the subscription to the client opened
                                payload.subscribed = Some(true);
                                u64_counter!(
                                    "apollo.router.operations.subscriptions.events",
                                    "Number of subscription events",
                                    1,
                                    subscriptions.mode = "callback"
                                );
                                handle.send_sync(*payload)?;

                                router::Response::builder()
                                    .context(req.context)
                                    .build()
                            }
                            CallbackPayload::Subscription(SubscriptionPayload::Check {
                                ..
                            }) => {
                                if notify.exist(id).await? {
                                    router::Response::error_builder()
                                        .status_code(StatusCode::NO_CONTENT)
                                        .header(HeaderName::from_static(CALLBACK_SUBSCRIPTION_HEADER_NAME), HeaderValue::from_static(CALLBACK_SUBSCRIPTION_HEADER_VALUE))
                                        .error(graphql::Error::builder()
                                            .message(String::default())
                                            .extension_code(StatusCode::NO_CONTENT.to_string())
                                            .build()
                                        )
                                        .context(req.context)
                                        .build()
                                } else {
                                    router::Response::error_builder()
                                        .status_code(StatusCode::NOT_FOUND)
                                        .header(HeaderName::from_static(CALLBACK_SUBSCRIPTION_HEADER_NAME), HeaderValue::from_static(CALLBACK_SUBSCRIPTION_HEADER_VALUE))
                                        .error(graphql::Error::builder()
                                            .message("subscription doesn't exist")
                                            .extension_code(StatusCode::NOT_FOUND.to_string())
                                            .build()
                                        )
                                        .context(req.context)
                                        .build()
                                }
                            }
                            CallbackPayload::Subscription(SubscriptionPayload::Heartbeat {
                                ids,
                                id,
                                verifier,
                            }) => {
                                if !ids.contains(&id) {
                                    return router::Response::error_builder()
                                        .status_code(StatusCode::UNAUTHORIZED)
                                        .error(graphql::Error::builder()
                                            .message("id used for the verifier is not part of ids array")
                                            .extension_code(StatusCode::UNAUTHORIZED.to_string())
                                            .build()
                                        )
                                        .context(req.context)
                                        .build()
                                }

                                let (mut valid_ids, invalid_ids) = notify.invalid_ids(ids).await?;
                                if invalid_ids.is_empty() {
                                    router::Response::error_builder()
                                        .status_code(StatusCode::NO_CONTENT)
                                        .error(graphql::Error::builder()
                                            .message(String::default())
                                            .extension_code(StatusCode::NO_CONTENT.to_string())
                                            .build()
                                        )
                                        .context(req.context)
                                        .build()
                                } else if valid_ids.is_empty() {
                                    router::Response::error_builder()
                                        .status_code(StatusCode::NOT_FOUND)
                                        .error(graphql::Error::builder()
                                            .message("subscriptions don't exist")
                                            .extension_code(StatusCode::NOT_FOUND.to_string())
                                            .build()
                                        )
                                        .context(req.context)
                                        .build()
                                } else {
                                    let (id, verifier) = if invalid_ids.contains(&id) {
                                        (id, verifier)
                                    } else {
                                        let new_id = valid_ids.pop().expect("valid_ids is not empty, checked in the previous if block");
                                        // Generate new verifier
                                        let mut mac = HmacSha256::new_from_slice(
                                            callback_hmac_key.as_bytes(),
                                        )?;
                                        mac.update(new_id.as_bytes());
                                        let result = mac.finalize();
                                        let verifier = hex::encode(result.into_bytes());

                                        (new_id, verifier)
                                    };
                                    router::Response::error_builder()
                                        .status_code(StatusCode::NOT_FOUND)
                                        .error(graphql::Error::builder()
                                            .message(serde_json::to_string_pretty(&InvalidIdsPayload{
                                                invalid_ids,
                                                id,
                                                verifier,
                                            }).map_err(BoxError::from)?)
                                            .extension_code(StatusCode::NOT_FOUND.to_string())
                                            .build()
                                        )
                                        .context(req.context)
                                        .build()
                                }
                            }
                            CallbackPayload::Subscription(SubscriptionPayload::Complete {
                                errors,
                                ..
                            }) => {
                                if let Some(errors) = errors {
                                    let mut handle = match notify.subscribe(id.clone()).await {
                                         Ok(handle) => handle.into_sink(),
                                         Err(NotifyError::UnknownTopic) => {
                                            return router::Response::error_builder()
                                                .status_code(StatusCode::NOT_FOUND)
                                                .error(graphql::Error::builder()
                                                    .message("unknown topic")
                                                    .extension_code(StatusCode::NOT_FOUND.to_string())
                                                    .build()
                                                )
                                                .context(req.context)
                                                .build();
                                         },
                                         Err(err) => {
                                            return router::Response::error_builder()
                                                .status_code(StatusCode::NOT_FOUND)
                                                .error(graphql::Error::builder()
                                                    .message(err.to_string())
                                                    .extension_code(StatusCode::NOT_FOUND.to_string())
                                                    .build()
                                                )
                                                .context(req.context)
                                                .build();
                                         }
                                    };
                                    u64_counter!(
                                        "apollo.router.operations.subscriptions.events",
                                        "Number of subscription events",
                                        1,
                                        subscriptions.mode = "callback",
                                        subscriptions.complete = true
                                    );
                                    if let Err(_err) = handle.send_sync(
                                        graphql::Response::builder().errors(errors).build(),
                                    ) {
                                       return router::Response::error_builder()
                                            .status_code(StatusCode::NOT_FOUND)
                                            .error(graphql::Error::builder()
                                                .message("cannot send errors to the client")
                                                .extension_code(StatusCode::NOT_FOUND.to_string())
                                                .build()
                                            )
                                            .context(req.context)
                                            .build();
                                    }
                                }
                                if let Err(_err) = notify.force_delete(id).await {
                                    return router::Response::error_builder()
                                        .status_code(StatusCode::NOT_FOUND)
                                        .error(graphql::Error::builder()
                                            .message("cannot force delete")
                                            .extension_code(StatusCode::NOT_FOUND.to_string())
                                            .build()
                                        )
                                        .context(req.context)
                                        .build();
                                }

                                router::Response::http_response_builder()
                                    .response(http::Response::builder()
                                        .status(StatusCode::ACCEPTED)
                                        .body(router::body::empty())
                                        .map_err(BoxError::from)?)
                                    .context(req.context)
                                    .build()
                            }
                        }
                    }
                    _ => router::Response::error_builder()
                        .status_code(StatusCode::METHOD_NOT_ALLOWED)
                        .error(graphql::Error::builder()
                            .message(String::default())
                            .extension_code(StatusCode::METHOD_NOT_ALLOWED.to_string())
                            .build()
                        )
                        .context(req.context)
                        .build()
                }
            }
            .instrument(tracing::info_span!("subscription_callback")),
        )
    }
}

pub(crate) fn create_verifier(sub_id: &str) -> Result<String, BoxError> {
    let callback_hmac_key = SUBSCRIPTION_CALLBACK_HMAC_KEY
        .get()
        .ok_or("subscription callback hmac key is not available")?;
    let mut mac = HmacSha256::new_from_slice(callback_hmac_key.as_bytes())?;
    mac.update(sub_id.as_bytes());
    let result = mac.finalize();
    let verifier = hex::encode(result.into_bytes());

    Ok(verifier)
}

#[allow(clippy::result_large_err)]
fn ensure_id_consistency(
    context: &Context,
    id_from_path: &str,
    id_from_body: &str,
) -> Result<(), router::Response> {
    if id_from_path != id_from_body {
        Err(router::Response::error_builder()
            .status_code(StatusCode::BAD_REQUEST)
            .error(
                graphql::Error::builder()
                    .message("id from url path and id from body are different")
                    .extension_code(StatusCode::BAD_REQUEST.to_string())
                    .build(),
            )
            .context(context.clone())
            .build()
            .expect("this response is valid"))
    } else {
        Ok(())
    }
}