1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
//! Authorization plugin

use std::collections::HashMap;
use std::collections::HashSet;
use std::ops::ControlFlow;
use std::sync::Arc;

use apollo_compiler::ApolloCompiler;
use apollo_compiler::InputDatabase;
use http::StatusCode;
use schemars::JsonSchema;
use serde::Deserialize;
use serde::Serialize;
use serde_json_bytes::Value;
use tokio::sync::Mutex;
use tower::BoxError;
use tower::ServiceBuilder;
use tower::ServiceExt;

use self::authenticated::AuthenticatedCheckVisitor;
use self::authenticated::AuthenticatedVisitor;
use self::authenticated::AUTHENTICATED_DIRECTIVE_NAME;
use self::policy::PolicyExtractionVisitor;
use self::policy::PolicyFilteringVisitor;
use self::policy::POLICY_DIRECTIVE_NAME;
use self::scopes::ScopeExtractionVisitor;
use self::scopes::ScopeFilteringVisitor;
use self::scopes::REQUIRES_SCOPES_DIRECTIVE_NAME;
use crate::error::QueryPlannerError;
use crate::error::SchemaError;
use crate::error::ServiceBuildError;
use crate::graphql;
use crate::json_ext::Path;
use crate::layers::ServiceBuilderExt;
use crate::plugin::Plugin;
use crate::plugin::PluginInit;
use crate::plugins::authentication::APOLLO_AUTHENTICATION_JWT_CLAIMS;
use crate::query_planner::FilteredQuery;
use crate::query_planner::QueryKey;
use crate::register_plugin;
use crate::services::execution;
use crate::services::supergraph;
use crate::spec::query::transform;
use crate::spec::query::traverse;
use crate::spec::query::QUERY_EXECUTABLE;
use crate::spec::Query;
use crate::spec::Schema;
use crate::spec::SpecError;
use crate::Configuration;
use crate::Context;

pub(crate) mod authenticated;
pub(crate) mod policy;
pub(crate) mod scopes;

const AUTHENTICATED_KEY: &str = "apollo_authorization::authenticated::required";
const REQUIRED_SCOPES_KEY: &str = "apollo_authorization::scopes::required";
const REQUIRED_POLICIES_KEY: &str = "apollo_authorization::policies::required";

#[derive(Clone, Debug, Default, Hash, PartialEq, Eq, Serialize)]
pub(crate) struct CacheKeyMetadata {
    is_authenticated: bool,
    scopes: Vec<String>,
    policies: Vec<String>,
}

/// Authorization plugin
#[derive(Clone, Debug, Default, Deserialize, JsonSchema)]
#[allow(dead_code)]
pub(crate) struct Conf {
    /// Reject unauthenticated requests
    #[serde(default)]
    require_authentication: bool,
    /// `@authenticated` and `@requiresScopes` directives
    #[serde(default)]
    preview_directives: Directives,
}

#[derive(Clone, Debug, Default, Deserialize, JsonSchema)]
#[allow(dead_code)]
pub(crate) struct Directives {
    /// enables the `@authenticated` and `@requiresScopes` directives
    #[serde(default)]
    enabled: bool,
}

pub(crate) struct AuthorizationPlugin {
    require_authentication: bool,
}

impl AuthorizationPlugin {
    pub(crate) fn enable_directives(
        configuration: &Configuration,
        schema: &Schema,
    ) -> Result<bool, ServiceBuildError> {
        let has_config = configuration
            .apollo_plugins
            .plugins
            .iter()
            .find(|(s, _)| s.as_str() == "authorization")
            .and_then(|(_, v)| v.get("preview_directives").and_then(|v| v.as_object()))
            .and_then(|v| v.get("enabled").and_then(|v| v.as_bool()));
        let has_authorization_directives = schema
            .type_system
            .definitions
            .directives
            .contains_key(AUTHENTICATED_DIRECTIVE_NAME)
            || schema
                .type_system
                .definitions
                .directives
                .contains_key(REQUIRES_SCOPES_DIRECTIVE_NAME)
            || schema
                .type_system
                .definitions
                .directives
                .contains_key(POLICY_DIRECTIVE_NAME);

        match has_config {
            Some(b) => Ok(b),
            None => {
                if has_authorization_directives {
                    Err(ServiceBuildError::Schema(SchemaError::Api("cannot start the router on a schema with authorization directives without configuring the authorization plugin".to_string())))
                } else {
                    Ok(false)
                }
            }
        }
    }

    pub(crate) async fn query_analysis(
        query: &str,
        schema: &Schema,
        configuration: &Configuration,
        context: &Context,
    ) {
        let (compiler, file_id) = Query::make_compiler(query, schema, configuration);

        let mut visitor = AuthenticatedCheckVisitor::new(&compiler, file_id);

        // if this fails, the query is invalid and will fail at the query planning phase.
        // We do not return validation errors here for now because that would imply a huge
        // refactoring of telemetry and tests
        if traverse::document(&mut visitor, file_id).is_ok() && visitor.found {
            context.insert(AUTHENTICATED_KEY, true).unwrap();
        }

        let mut visitor = ScopeExtractionVisitor::new(&compiler, file_id);

        // if this fails, the query is invalid and will fail at the query planning phase.
        // We do not return validation errors here for now because that would imply a huge
        // refactoring of telemetry and tests
        if traverse::document(&mut visitor, file_id).is_ok() {
            let scopes: Vec<String> = visitor.extracted_scopes.into_iter().collect();

            if !scopes.is_empty() {
                context.insert(REQUIRED_SCOPES_KEY, scopes).unwrap();
            }
        }

        // TODO: @policy is out of scope for preview, this will be reactivated later
        if false {
            let mut visitor = PolicyExtractionVisitor::new(&compiler, file_id);

            // if this fails, the query is invalid and will fail at the query planning phase.
            // We do not return validation errors here for now because that would imply a huge
            // refactoring of telemetry and tests
            if traverse::document(&mut visitor, file_id).is_ok() {
                let policies: HashMap<String, Option<bool>> = visitor
                    .extracted_policies
                    .into_iter()
                    .map(|policy| (policy, None))
                    .collect();

                if !policies.is_empty() {
                    context.insert(REQUIRED_POLICIES_KEY, policies).unwrap();
                }
            }
        }
    }

    pub(crate) fn update_cache_key(context: &Context) {
        let is_authenticated = context.contains_key(APOLLO_AUTHENTICATION_JWT_CLAIMS);

        let request_scopes = context
            .get_json_value(APOLLO_AUTHENTICATION_JWT_CLAIMS)
            .and_then(|value| {
                value.as_object().and_then(|object| {
                    object.get("scope").and_then(|v| {
                        v.as_str()
                            .map(|s| s.split(' ').map(|s| s.to_string()).collect::<HashSet<_>>())
                    })
                })
            });
        let query_scopes = context.get_json_value(REQUIRED_SCOPES_KEY).and_then(|v| {
            v.as_array().map(|v| {
                v.iter()
                    .filter_map(|s| s.as_str().map(|s| s.to_string()))
                    .collect::<HashSet<_>>()
            })
        });

        let mut scopes = match (request_scopes, query_scopes) {
            (None, _) => vec![],
            (_, None) => vec![],
            (Some(req), Some(query)) => req.intersection(&query).cloned().collect(),
        };
        scopes.sort();

        let mut policies = context
            .get_json_value(REQUIRED_POLICIES_KEY)
            .and_then(|v| {
                v.as_object().map(|v| {
                    v.iter()
                        .filter_map(|(policy, result)| match result {
                            Value::Bool(true) => Some(policy.as_str().to_string()),
                            _ => None,
                        })
                        .collect::<Vec<String>>()
                })
            })
            .unwrap_or_default();
        policies.sort();

        context.private_entries.lock().insert(CacheKeyMetadata {
            is_authenticated,
            scopes,
            policies,
        });
    }

    pub(crate) fn filter_query(
        key: &QueryKey,
        schema: &Schema,
    ) -> Result<Option<FilteredQuery>, QueryPlannerError> {
        // we create a compiler to filter the query. The filtered query will then be used
        // to generate selections for response formatting, to execute introspection and
        // generating a query plan
        let mut compiler = ApolloCompiler::new();
        compiler.set_type_system_hir(schema.type_system.clone());
        let _id = compiler.add_executable(&key.filtered_query, "query");

        let is_authenticated = key.metadata.is_authenticated;
        let scopes = &key.metadata.scopes;
        let policies = &key.metadata.policies;

        let mut is_filtered = false;
        let mut unauthorized_paths: Vec<Path> = vec![];

        let filter_res = Self::authenticated_filter_query(&compiler, is_authenticated)?;

        let compiler = match filter_res {
            None => compiler,
            Some((query, paths)) => {
                unauthorized_paths.extend(paths);

                if query.is_empty() {
                    return Err(QueryPlannerError::Unauthorized(unauthorized_paths));
                }

                is_filtered = true;

                let mut compiler = ApolloCompiler::new();
                compiler.set_type_system_hir(schema.type_system.clone());
                let _id = compiler.add_executable(&query, "query");
                compiler
            }
        };

        let filter_res = Self::scopes_filter_query(&compiler, scopes)?;

        let compiler = match filter_res {
            None => compiler,
            Some((query, paths)) => {
                unauthorized_paths.extend(paths);

                if query.is_empty() {
                    return Err(QueryPlannerError::Unauthorized(unauthorized_paths));
                }

                is_filtered = true;

                let mut compiler = ApolloCompiler::new();
                compiler.set_type_system_hir(schema.type_system.clone());
                let _id = compiler.add_executable(&query, "query");
                compiler
            }
        };

        let filter_res = Self::policies_filter_query(&compiler, policies)?;

        let compiler = match filter_res {
            None => compiler,
            Some((query, paths)) => {
                unauthorized_paths.extend(paths);

                if query.is_empty() {
                    return Err(QueryPlannerError::Unauthorized(unauthorized_paths));
                }

                is_filtered = true;

                let mut compiler = ApolloCompiler::new();
                compiler.set_type_system_hir(schema.type_system.clone());
                let _id = compiler.add_executable(&query, "query");
                compiler
            }
        };

        if is_filtered {
            let file_id = compiler
                .db
                .source_file(QUERY_EXECUTABLE.into())
                .ok_or_else(|| QueryPlannerError::SpecError(SpecError::UnknownFileId))?;
            let filtered_query = compiler.db.source_code(file_id).to_string();

            Ok(Some((
                filtered_query,
                unauthorized_paths,
                Arc::new(Mutex::new(compiler)),
            )))
        } else {
            Ok(None)
        }
    }

    fn authenticated_filter_query(
        compiler: &ApolloCompiler,
        is_authenticated: bool,
    ) -> Result<Option<(String, Vec<Path>)>, QueryPlannerError> {
        let id = compiler
            .db
            .executable_definition_files()
            .pop()
            .expect("the query was added to the compiler earlier");

        let mut visitor = AuthenticatedVisitor::new(compiler, id);
        let modified_query = transform::document(&mut visitor, id)
            .map_err(|e| SpecError::ParsingError(e.to_string()))?
            .to_string();

        if visitor.query_requires_authentication {
            if is_authenticated {
                tracing::debug!("the query contains @authenticated, the request is authenticated, keeping the query");
                Ok(None)
            } else {
                tracing::debug!("the query contains @authenticated, modified query:\n{modified_query}\nunauthorized paths: {:?}", visitor
                .unauthorized_paths
                .iter()
                .map(|path| path.to_string())
                .collect::<Vec<_>>());

                Ok(Some((modified_query, visitor.unauthorized_paths)))
            }
        } else {
            tracing::debug!("the query does not contain @authenticated");
            Ok(None)
        }
    }

    fn scopes_filter_query(
        compiler: &ApolloCompiler,
        scopes: &[String],
    ) -> Result<Option<(String, Vec<Path>)>, QueryPlannerError> {
        let id = compiler
            .db
            .executable_definition_files()
            .pop()
            .expect("the query was added to the compiler earlier");

        let mut visitor =
            ScopeFilteringVisitor::new(compiler, id, scopes.iter().cloned().collect());

        let modified_query = transform::document(&mut visitor, id)
            .map_err(|e| SpecError::ParsingError(e.to_string()))?
            .to_string();

        if visitor.query_requires_scopes {
            tracing::debug!("the query required scopes, the requests present scopes: {scopes:?}, modified query:\n{modified_query}\nunauthorized paths: {:?}",
                visitor
                    .unauthorized_paths
                    .iter()
                    .map(|path| path.to_string())
                    .collect::<Vec<_>>()
            );
            Ok(Some((modified_query, visitor.unauthorized_paths)))
        } else {
            tracing::debug!("the query does not require scopes");
            Ok(None)
        }
    }

    fn policies_filter_query(
        compiler: &ApolloCompiler,
        policies: &[String],
    ) -> Result<Option<(String, Vec<Path>)>, QueryPlannerError> {
        let id = compiler
            .db
            .executable_definition_files()
            .pop()
            .expect("the query was added to the compiler earlier");

        let mut visitor =
            PolicyFilteringVisitor::new(compiler, id, policies.iter().cloned().collect());

        let modified_query = transform::document(&mut visitor, id)
            .map_err(|e| SpecError::ParsingError(e.to_string()))?
            .to_string();

        if visitor.query_requires_policies {
            tracing::debug!("the query required policies, the requests present policies: {policies:?}, modified query:\n{modified_query}\nunauthorized paths: {:?}",
                visitor
                    .unauthorized_paths
                    .iter()
                    .map(|path| path.to_string())
                    .collect::<Vec<_>>()
            );
            Ok(Some((modified_query, visitor.unauthorized_paths)))
        } else {
            tracing::debug!("the query does not require policies");
            Ok(None)
        }
    }
}

#[async_trait::async_trait]
impl Plugin for AuthorizationPlugin {
    type Config = Conf;

    async fn new(init: PluginInit<Self::Config>) -> Result<Self, BoxError> {
        Ok(AuthorizationPlugin {
            require_authentication: init.config.require_authentication,
        })
    }

    fn supergraph_service(&self, service: supergraph::BoxService) -> supergraph::BoxService {
        if self.require_authentication {
            ServiceBuilder::new()
                .checkpoint(move |request: supergraph::Request| {
                    if request
                        .context
                        .contains_key(APOLLO_AUTHENTICATION_JWT_CLAIMS)
                    {
                        Ok(ControlFlow::Continue(request))
                    } else {
                        // This is a metric and will not appear in the logs
                        tracing::info!(
                            monotonic_counter.apollo_require_authentication_failure_count = 1u64,
                        );
                        tracing::error!("rejecting unauthenticated request");
                        let response = supergraph::Response::error_builder()
                            .error(
                                graphql::Error::builder()
                                    .message("unauthenticated".to_string())
                                    .extension_code("AUTH_ERROR")
                                    .build(),
                            )
                            .status_code(StatusCode::UNAUTHORIZED)
                            .context(request.context)
                            .build()?;
                        Ok(ControlFlow::Break(response))
                    }
                })
                .service(service)
                .boxed()
        } else {
            service
        }
    }

    fn execution_service(&self, service: execution::BoxService) -> execution::BoxService {
        ServiceBuilder::new()
            .map_request(|request: execution::Request| {
                let filtered = !request.query_plan.query.unauthorized_paths.is_empty();
                let needs_authenticated = request.context.contains_key(AUTHENTICATED_KEY);
                let needs_requires_scopes = request.context.contains_key(REQUIRED_SCOPES_KEY);

                if needs_authenticated || needs_requires_scopes {
                    tracing::info!(
                        monotonic_counter.apollo.router.operations.authorization = 1u64,
                        authorization.filtered = filtered,
                        authorization.needs_authenticated = needs_authenticated,
                        authorization.needs_requires_scopes = needs_requires_scopes,
                    );
                }

                request
            })
            .service(service)
            .boxed()
    }
}

// This macro allows us to use it in our plugin registry!
// register_plugin takes a group name, and a plugin name.
//
// In order to keep the plugin names consistent,
// we use using the `Reverse domain name notation`
register_plugin!("apollo", "authorization", AuthorizationPlugin);

#[cfg(test)]
mod tests;