1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
/*
 * Copyright 2022-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//! This module contains the parser for the Cedar language.

/// Concrete Syntax Tree def used as parser first pass
pub mod cst;
/// Step two: convert CST to package AST
mod cst_to_ast;
/// error handling utilities
pub mod err;
/// implementations for formatting, like `Display`
mod fmt;
/// Metadata wrapper for CST Nodes
mod node;
pub use node::{ASTNode, SourceInfo};
/// Step one: Convert text to CST
pub mod text_to_cst;
/// Utility functions to unescape string literals
pub(crate) mod unescape;

use smol_str::SmolStr;
use std::collections::HashMap;

use crate::ast;
use crate::est;

/// simple main function for parsing policies
/// generates numbered ids
pub fn parse_policyset(text: &str) -> Result<ast::PolicySet, Vec<err::ParseError>> {
    let mut errs = Vec::new();
    text_to_cst::parse_policies(text)?
        .to_policyset(&mut errs)
        .ok_or(errs)
}

/// Like `parse_policyset()`, but also returns the (lossless) ESTs -- that is,
/// the ESTs of the original policies without any of the lossy transforms
/// involved in converting to AST.
pub fn parse_policyset_to_ests_and_pset(
    text: &str,
) -> Result<(HashMap<ast::PolicyID, est::Policy>, ast::PolicySet), err::ParseErrors> {
    let mut errs = Vec::new();
    let cst = text_to_cst::parse_policies(text).map_err(err::ParseErrors)?;
    let pset = cst.to_policyset(&mut errs);
    if pset.is_none() {
        return Err(err::ParseErrors(errs));
    }
    let ests = cst
        .with_generated_policyids()
        .expect("shouldn't be None since parse_policies() didn't return Err")
        .map(|(id, policy)| match &policy.node {
            Some(p) => Ok(Some((id, p.clone().try_into()?))),
            None => Ok(None),
        })
        .collect::<Result<Option<HashMap<ast::PolicyID, est::Policy>>, err::ParseErrors>>()?;
    match (errs.is_empty(), ests, pset) {
        (true, Some(ests), Some(pset)) => Ok((ests, pset)),
        (_, _, _) => Err(err::ParseErrors(errs)),
    }
}

/// Simple main function for parsing a policy template.
/// If `id` is Some, then the resulting template will have that `id`.
/// If the `id` is None, the parser will use "policy0".
pub fn parse_policy_template(
    id: Option<String>,
    text: &str,
) -> Result<ast::Template, Vec<err::ParseError>> {
    let mut errs = Vec::new();
    let id = match id {
        Some(id) => ast::PolicyID::from_string(id),
        None => ast::PolicyID::from_string("policy0"),
    };
    let r = text_to_cst::parse_policy(text)?.to_policy_template(id, &mut errs);
    if errs.is_empty() {
        r.ok_or(errs).map(ast::Template::from)
    } else {
        Err(errs)
    }
}

/// Like `parse_policy_template()`, but also returns the (lossless) EST -- that
/// is, the EST of the original template without any of the lossy transforms
/// involved in converting to AST.
pub fn parse_policy_template_to_est_and_ast(
    id: Option<String>,
    text: &str,
) -> Result<(est::Policy, ast::Template), err::ParseErrors> {
    let mut errs = Vec::new();
    let id = match id {
        Some(id) => ast::PolicyID::from_string(id),
        None => ast::PolicyID::from_string("policy0"),
    };
    let cst = text_to_cst::parse_policy(text).map_err(err::ParseErrors)?;
    let ast = cst.to_policy_template(id, &mut errs);
    let est = cst.node.map(TryInto::try_into).transpose()?;
    match (errs.is_empty(), est, ast) {
        (true, Some(est), Some(ast)) => Ok((est, ast)),
        (_, _, _) => Err(err::ParseErrors(errs)),
    }
}

/// simple main function for parsing a policy.
/// If `id` is Some, then the resulting policy will have that `id`.
/// If the `id` is None, the parser will use "policy0".
pub fn parse_policy(
    id: Option<String>,
    text: &str,
) -> Result<ast::StaticPolicy, Vec<err::ParseError>> {
    let mut errs = Vec::new();
    let id = match id {
        Some(id) => ast::PolicyID::from_string(id),
        None => ast::PolicyID::from_string("policy0"),
    };
    let r = text_to_cst::parse_policy(text)?.to_policy(id, &mut errs);

    if errs.is_empty() {
        r.ok_or(errs)
    } else {
        Err(errs)
    }
}

/// Like `parse_policy()`, but also returns the (lossless) EST -- that is, the
/// EST of the original policy without any of the lossy transforms involved in
/// converting to AST.
pub fn parse_policy_to_est_and_ast(
    id: Option<String>,
    text: &str,
) -> Result<(est::Policy, ast::StaticPolicy), err::ParseErrors> {
    let mut errs = Vec::new();
    let id = match id {
        Some(id) => ast::PolicyID::from_string(id),
        None => ast::PolicyID::from_string("policy0"),
    };
    let cst = text_to_cst::parse_policy(text).map_err(err::ParseErrors)?;
    let ast = cst.to_policy(id, &mut errs);
    let est = cst.node.map(TryInto::try_into).transpose()?;
    match (errs.is_empty(), est, ast) {
        (true, Some(est), Some(ast)) => Ok((est, ast)),
        (_, _, _) => Err(err::ParseErrors(errs)),
    }
}

/// parse an Expr
pub fn parse_expr(ptext: &str) -> Result<ast::Expr, Vec<err::ParseError>> {
    let mut errs = Vec::new();
    text_to_cst::parse_expr(ptext)?
        .to_expr(&mut errs)
        .ok_or(errs)
}

/// parse a RestrictedExpr
pub fn parse_restrictedexpr(ptext: &str) -> Result<ast::RestrictedExpr, Vec<err::ParseError>> {
    parse_expr(ptext)
        .and_then(|expr| ast::RestrictedExpr::new(expr).map_err(|err| vec![err.into()]))
}

/// parse an EntityUID
pub fn parse_euid(euid: &str) -> Result<ast::EntityUID, Vec<err::ParseError>> {
    let mut errs = Vec::new();
    text_to_cst::parse_ref(euid)?.to_ref(&mut errs).ok_or(errs)
}

/// parse a Name
pub fn parse_name(name: &str) -> Result<ast::Name, Vec<err::ParseError>> {
    let mut errs = Vec::new();
    text_to_cst::parse_name(name)?
        .to_name(&mut errs)
        .ok_or(errs)
}

/// Parse a namespace
pub fn parse_namespace(name: &str) -> Result<Vec<ast::Id>, Vec<err::ParseError>> {
    // A namespace parses identically to a `Name`, except all of the parsed
    // `Id`s are part of the namespace path. To parse a namespace, we parse it
    // as a `Name`, before combining the `id` and `path` into the full namespace.
    Ok(if name.is_empty() {
        Vec::new()
    } else {
        let name = parse_name(name)?;
        let once = std::iter::once(name.id);
        let namespace_path = name.path.as_ref().iter().cloned();
        namespace_path.chain(once).collect()
    })
}

/// parse a string into an ast::Literal (does not support expressions)
pub fn parse_literal(val: &str) -> Result<ast::Literal, Vec<err::ParseError>> {
    let mut errs = Vec::new();
    match text_to_cst::parse_primary(val)?
        .to_expr(&mut errs)
        .ok_or(errs)?
        .into_expr_kind()
    {
        ast::ExprKind::Lit(v) => Ok(v),
        _ => Err(vec![err::ParseError::ToAST(
            "text is not a literal".to_string(),
        )]),
    }
}

/// parse a string into an internal Cedar string
///
/// This performs unescaping and validation, returning
/// a String suitable for an attr, eid, or literal.
///
/// Quote handling is as if the input is surrounded by
/// double quotes ("{val}").
///
/// It does not return a string suitable for a pattern. Use the
/// full expression parser for those.
pub fn parse_internal_string(val: &str) -> Result<SmolStr, Vec<err::ParseError>> {
    let mut errs = Vec::new();
    // we need to add quotes for this to be a valid string literal
    text_to_cst::parse_primary(&format!(r#""{val}""#))?
        .to_string_literal(&mut errs)
        .ok_or(errs)
}

/// parse an identifier
pub fn parse_ident(id: &str) -> Result<ast::Id, Vec<err::ParseError>> {
    let mut errs = Vec::new();
    text_to_cst::parse_ident(id)?
        .to_valid_ident(&mut errs)
        .ok_or(errs)
}

/// parse into a `Request`
pub fn parse_request(
    principal: impl AsRef<str>,      // should be a "Type::EID" string
    action: impl AsRef<str>,         // should be a "Type::EID" string
    resource: impl AsRef<str>,       // should be a "Type::EID" string
    context_json: serde_json::Value, // JSON object mapping Strings to ast::RestrictedExpr
) -> Result<ast::Request, Vec<err::ParseError>> {
    let mut errs = vec![];
    // Parse principal, action, resource
    let mut parse_par = |s, name| {
        parse_euid(s)
            .map_err(|e| {
                errs.push(err::ParseError::WithContext {
                    context: format!("trying to parse {}", name),
                    errs: e,
                })
            })
            .ok()
    };

    let (principal, action, resource) = (
        parse_par(principal.as_ref(), "principal"),
        parse_par(action.as_ref(), "action"),
        parse_par(resource.as_ref(), "resource"),
    );

    let context = match ast::Context::from_json_value(context_json) {
        Ok(ctx) => Some(ctx),
        Err(e) => {
            errs.push(err::ParseError::ToAST(format!(
                "failed to parse context JSON: {}",
                err::ParseErrors(vec![err::ParseError::ToAST(e.to_string())])
            )));
            None
        }
    };
    match (principal, action, resource, errs.as_slice()) {
        (Some(p), Some(a), Some(r), &[]) => Ok(ast::Request {
            principal: ast::EntityUIDEntry::concrete(p),
            action: ast::EntityUIDEntry::concrete(a),
            resource: ast::EntityUIDEntry::concrete(r),
            context,
        }),
        _ => Err(errs),
    }
}

#[cfg(test)]
mod test {
    use std::collections::HashSet;

    use itertools::Itertools;

    use crate::ast::{test_generators::*, Template};

    use super::*;

    #[test]
    fn test_template_parsing() {
        for template in all_templates().map(Template::from) {
            let id = template.id();
            let src = format!("{template}");
            let parsed = parse_policy_template(Some(id.to_string()), &src);
            match parsed {
                Ok(p) => {
                    assert_eq!(
                        p.slots().collect::<HashSet<_>>(),
                        template.slots().collect::<HashSet<_>>()
                    );
                    assert_eq!(p.id(), template.id());
                    assert_eq!(p.effect(), template.effect());
                    assert_eq!(p.principal_constraint(), template.principal_constraint());
                    assert_eq!(p.action_constraint(), template.action_constraint());
                    assert_eq!(p.resource_constraint(), template.resource_constraint());
                    assert!(
                        p.non_head_constraints()
                            .eq_shape(template.non_head_constraints()),
                        "{:?} and {:?} should have the same shape.",
                        p.non_head_constraints(),
                        template.non_head_constraints()
                    );
                }
                Err(e) => panic!(
                    "Failed to parse {src}, {}",
                    e.into_iter().map(|e| format!("{e}")).join("\n")
                ),
            }
        }
    }

    #[test]
    fn test_error_out() {
        let errors = parse_policyset(
            r#"
            permit(principal:p,action:a,resource:r)
            when{w or if c but not z} // expr error
            unless{u if c else d or f} // expr error
            advice{"doit"};

            permit(principality in Group::"jane_friends", // policy error
            action in [PhotoOp::"view", PhotoOp::"comment"],
            resource in Album::"jane_trips");

            forbid(principal, action, resource)
            when   { "private" in resource.tags }
            unless { resource in principal.account };
        "#,
        )
        .expect_err("multiple errors above");
        println!("{:?}", errors);
        assert!(errors.len() >= 3);
    }
}

#[cfg(test)]
mod eval_tests {
    use super::*;
    use crate::evaluator as eval;
    use crate::extensions::Extensions;

    #[test]
    fn interpret_exprs() {
        let request = eval::test::basic_request();
        let entities = eval::test::basic_entities();
        let exts = Extensions::none();
        let evaluator = eval::Evaluator::new(&request, &entities, &exts).unwrap();

        // bools
        let expr = parse_expr("false").expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(false))
        );
        let expr = parse_expr("true && true").expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(true))
        );
        let expr = parse_expr("!true || false && !true").expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(false))
        );
        let expr = parse_expr("!!!!true").expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(true))
        );

        let expr = parse_expr(
            r#"
        if false || true != 4 then
            600
        else
            -200
        "#,
        )
        .expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Long(600))
        );
    }

    #[test]
    fn interpret_membership() {
        let request = eval::test::basic_request();
        let entities = eval::test::rich_entities();
        let exts = Extensions::none();
        let evaluator = eval::Evaluator::new(&request, &entities, &exts).unwrap();

        let expr = parse_expr(
            r#"

        test_entity_type::"child" in
            test_entity_type::"unrelated"

        "#,
        )
        .expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(false))
        );
        let expr = parse_expr(
            r#"

        test_entity_type::"child" in
            test_entity_type::"child"

        "#,
        )
        .expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(true))
        );
        let expr = parse_expr(
            r#"

        other_type::"other_child" in
            test_entity_type::"parent"

        "#,
        )
        .expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(true))
        );
        let expr = parse_expr(
            r#"

        test_entity_type::"child" in
            test_entity_type::"grandparent"

        "#,
        )
        .expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(true))
        );
    }

    #[test]
    fn interpret_relation() {
        let request = eval::test::basic_request();
        let entities = eval::test::basic_entities();
        let exts = Extensions::none();
        let evaluator = eval::Evaluator::new(&request, &entities, &exts).unwrap();

        let expr = parse_expr(
            r#"

            3 < 2 || 2 > 3

        "#,
        )
        .expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(false))
        );
        let expr = parse_expr(
            r#"

            7 <= 7 && 4 != 5

        "#,
        )
        .expect("parse fail");
        assert_eq!(
            evaluator
                .interpret_inline_policy(&expr)
                .expect("interpret fail"),
            ast::Value::Lit(ast::Literal::Bool(true))
        );
    }
}

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

    #[test]
    fn parse_exists() {
        let result = parse_policyset(
            r#"
            permit(principal, action, resource)
            when{ true };
        "#,
        );
        assert!(!result.expect("parse error").is_empty());
    }

    #[test]
    fn test_parse_namespace() -> Result<(), Vec<err::ParseError>> {
        assert_eq!(Vec::<ast::Id>::new(), parse_namespace("")?);
        assert_eq!(vec!["Foo".parse::<ast::Id>()?], parse_namespace("Foo")?);
        assert_eq!(
            vec!["Foo".parse::<ast::Id>()?, "Bar".parse::<ast::Id>()?],
            parse_namespace("Foo::Bar")?
        );
        assert_eq!(
            vec![
                "Foo".parse::<ast::Id>()?,
                "Bar".parse::<ast::Id>()?,
                "Baz".parse::<ast::Id>()?
            ],
            parse_namespace("Foo::Bar::Baz")?
        );
        Ok(())
    }

    #[test]
    fn test_parse_string() {
        // test idempotence
        assert_eq!(
            ast::Eid::new(parse_internal_string(r#"a\nblock\nid"#).expect("should parse"))
                .to_string(),
            r#"a\nblock\nid"#,
        );
        parse_internal_string(r#"oh, no, a '! "#).expect("single quote should be fine");
        parse_internal_string(r#"oh, no, a "! "#).expect_err("double quote not allowed");
        parse_internal_string(r#"oh, no, a \"! and a \'! "#).expect("escaped quotes should parse");
    }
}