routing/
error.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

use crate::policy::PolicyError;
use crate::rights::Rights;
use async_trait::async_trait;
use clonable_error::ClonableError;
use cm_rust::{CapabilityTypeName, ExposeDeclCommon, OfferDeclCommon, SourceName, UseDeclCommon};
use cm_types::Name;
use moniker::{ChildName, ExtendedMoniker, Moniker};
use router_error::{DowncastErrorForTest, Explain, RouterError};
use std::sync::Arc;
use thiserror::Error;
use {fidl_fuchsia_component as fcomponent, zx_status as zx};

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

/// Errors produced by `ComponentInstanceInterface`.
#[cfg_attr(feature = "serde", derive(Deserialize, Serialize), serde(rename_all = "snake_case"))]
#[derive(Debug, Error, Clone)]
pub enum ComponentInstanceError {
    #[error("could not find `{moniker}`")]
    InstanceNotFound { moniker: Moniker },
    #[error("component manager instance unavailable")]
    ComponentManagerInstanceUnavailable {},
    #[error("expected a component instance, but got component manager's instance")]
    ComponentManagerInstanceUnexpected {},
    #[error("malformed url `{url}` for `{moniker}`")]
    MalformedUrl { url: String, moniker: Moniker },
    #[error("url `{url}` for `{moniker}` does not resolve to an absolute url")]
    NoAbsoluteUrl { url: String, moniker: Moniker },
    // The capability routing static analyzer never produces this error subtype, so we don't need
    // to serialize it.
    #[cfg_attr(feature = "serde", serde(skip))]
    #[error("failed to resolve `{moniker}`:\n\t{err}")]
    ResolveFailed {
        moniker: Moniker,
        #[source]
        err: ClonableError,
    },
}

impl ComponentInstanceError {
    pub fn as_zx_status(&self) -> zx::Status {
        match self {
            ComponentInstanceError::ResolveFailed { .. }
            | ComponentInstanceError::InstanceNotFound { .. }
            | ComponentInstanceError::ComponentManagerInstanceUnavailable {}
            | ComponentInstanceError::NoAbsoluteUrl { .. } => zx::Status::NOT_FOUND,
            ComponentInstanceError::MalformedUrl { .. }
            | ComponentInstanceError::ComponentManagerInstanceUnexpected { .. } => {
                zx::Status::INTERNAL
            }
        }
    }

    pub fn instance_not_found(moniker: Moniker) -> ComponentInstanceError {
        ComponentInstanceError::InstanceNotFound { moniker }
    }

    pub fn cm_instance_unavailable() -> ComponentInstanceError {
        ComponentInstanceError::ComponentManagerInstanceUnavailable {}
    }

    pub fn resolve_failed(moniker: Moniker, err: impl Into<anyhow::Error>) -> Self {
        Self::ResolveFailed { moniker, err: err.into().into() }
    }
}

impl Explain for ComponentInstanceError {
    fn as_zx_status(&self) -> zx::Status {
        self.as_zx_status()
    }
}

impl From<ComponentInstanceError> for ExtendedMoniker {
    fn from(err: ComponentInstanceError) -> ExtendedMoniker {
        match err {
            ComponentInstanceError::InstanceNotFound { moniker }
            | ComponentInstanceError::MalformedUrl { moniker, .. }
            | ComponentInstanceError::NoAbsoluteUrl { moniker, .. }
            | ComponentInstanceError::ResolveFailed { moniker, .. } => {
                ExtendedMoniker::ComponentInstance(moniker)
            }
            ComponentInstanceError::ComponentManagerInstanceUnavailable {}
            | ComponentInstanceError::ComponentManagerInstanceUnexpected {} => {
                ExtendedMoniker::ComponentManager
            }
        }
    }
}

// Custom implementation of PartialEq in which two ComponentInstanceError::ResolveFailed errors are
// never equal.
impl PartialEq for ComponentInstanceError {
    fn eq(&self, other: &Self) -> bool {
        match (self, other) {
            (
                Self::InstanceNotFound { moniker: self_moniker },
                Self::InstanceNotFound { moniker: other_moniker },
            ) => self_moniker.eq(other_moniker),
            (
                Self::ComponentManagerInstanceUnavailable {},
                Self::ComponentManagerInstanceUnavailable {},
            ) => true,
            (Self::ResolveFailed { .. }, Self::ResolveFailed { .. }) => false,
            _ => false,
        }
    }
}

/// Errors produced during routing.
#[cfg_attr(feature = "serde", derive(Deserialize, Serialize), serde(rename_all = "snake_case"))]
#[derive(Debug, Error, Clone, PartialEq)]
pub enum RoutingError {
    #[error(
        "backing directory `{capability_id}` was not exposed to `{moniker}` from `#{child_moniker}`"
    )]
    StorageFromChildExposeNotFound {
        child_moniker: ChildName,
        moniker: Moniker,
        capability_id: String,
    },

    #[error(
        "`{target_moniker}` tried to use a storage capability from `{source_moniker}` but it is \
        not in the component id index.\n\t\
        See: https://fuchsia.dev/go/components/instance-id"
    )]
    ComponentNotInIdIndex { source_moniker: Moniker, target_moniker: Moniker },

    #[error("`{capability_id}` is not a built-in capability")]
    UseFromComponentManagerNotFound { capability_id: String },

    #[error("`{capability_id}` is not a built-in capability")]
    RegisterFromComponentManagerNotFound { capability_id: String },

    #[error("`{capability_id}` is not a built-in capability")]
    OfferFromComponentManagerNotFound { capability_id: String },

    #[error("`{capability_id}` was not offered to `{moniker}` by parent")]
    UseFromParentNotFound { moniker: Moniker, capability_id: String },

    #[error("`{capability_id}` was not declared as a capability by `{moniker}`")]
    UseFromSelfNotFound { moniker: Moniker, capability_id: String },

    #[error("`{moniker}` does not have child `#{child_moniker}`")]
    UseFromChildInstanceNotFound {
        child_moniker: ChildName,
        moniker: Moniker,
        capability_id: String,
    },

    #[error(
        "{capability_type} `{capability_name}` was not registered in environment of `{moniker}`"
    )]
    UseFromEnvironmentNotFound { moniker: Moniker, capability_type: String, capability_name: Name },

    #[error(
        "`{moniker}` tried to use {capability_type} `{capability_name}` from the root environment"
    )]
    UseFromRootEnvironmentNotAllowed {
        moniker: Moniker,
        capability_type: String,
        capability_name: Name,
    },

    #[error("{capability_type} `{capability_name}` was not offered to `{moniker}` by parent")]
    EnvironmentFromParentNotFound {
        moniker: Moniker,
        capability_type: String,
        capability_name: Name,
    },

    #[error("`{capability_name}` was not exposed to `{moniker}` from `#{child_moniker}`")]
    EnvironmentFromChildExposeNotFound {
        child_moniker: ChildName,
        moniker: Moniker,
        capability_type: String,
        capability_name: Name,
    },

    #[error("`{moniker}` does not have child `#{child_moniker}`")]
    EnvironmentFromChildInstanceNotFound {
        child_moniker: ChildName,
        moniker: Moniker,
        capability_name: Name,
        capability_type: String,
    },

    #[error("`{capability_id}` was not offered to `{moniker}` by parent")]
    OfferFromParentNotFound { moniker: Moniker, capability_id: String },

    #[error(
        "cannot offer `{capability_id}` because was not declared as a capability by `{moniker}`"
    )]
    OfferFromSelfNotFound { moniker: Moniker, capability_id: String },

    #[error("`{capability_id}` was not offered to `{moniker}` by parent")]
    StorageFromParentNotFound { moniker: Moniker, capability_id: String },

    #[error("`{moniker}` does not have child `#{child_moniker}`")]
    OfferFromChildInstanceNotFound {
        child_moniker: ChildName,
        moniker: Moniker,
        capability_id: String,
    },

    #[error("`{moniker}` does not have collection `#{collection}`")]
    OfferFromCollectionNotFound { collection: String, moniker: Moniker, capability: Name },

    #[error("`{capability_id}` was not exposed to `{moniker}` from `#{child_moniker}`")]
    OfferFromChildExposeNotFound {
        child_moniker: ChildName,
        moniker: Moniker,
        capability_id: String,
    },

    // TODO: Could this be distinguished by use/offer/expose?
    #[error("`{capability_id}` is not a framework capability (at component `{moniker}`)")]
    CapabilityFromFrameworkNotFound { moniker: Moniker, capability_id: String },

    #[error(
        "A capability was sourced to a base capability `{capability_id}` from `{moniker}`, but this is unsupported",
    )]
    CapabilityFromCapabilityNotFound { moniker: Moniker, capability_id: String },

    // TODO: Could this be distinguished by use/offer/expose?
    #[error("`{capability_id}` is not a framework capability")]
    CapabilityFromComponentManagerNotFound { capability_id: String },

    #[error(
        "unable to expose `{capability_id}` because it was not declared as a capability by `{moniker}`"
    )]
    ExposeFromSelfNotFound { moniker: Moniker, capability_id: String },

    #[error("`{moniker}` does not have child `#{child_moniker}`")]
    ExposeFromChildInstanceNotFound {
        child_moniker: ChildName,
        moniker: Moniker,
        capability_id: String,
    },

    #[error("`{moniker}` does not have collection `#{collection}`")]
    ExposeFromCollectionNotFound { collection: String, moniker: Moniker, capability: Name },

    #[error("`{capability_id}` was not exposed to `{moniker}` from `#{child_moniker}`")]
    ExposeFromChildExposeNotFound {
        child_moniker: ChildName,
        moniker: Moniker,
        capability_id: String,
    },

    #[error(
        "`{moniker}` tried to expose `{capability_id}` from the framework, but no such framework capability was found"
    )]
    ExposeFromFrameworkNotFound { moniker: Moniker, capability_id: String },

    #[error("`{capability_id}` was not exposed to `{moniker}` from `#{child_moniker}`")]
    UseFromChildExposeNotFound { child_moniker: ChildName, moniker: Moniker, capability_id: String },

    #[error("routing a capability from an unsupported source type `{source_type}` at `{moniker}`")]
    UnsupportedRouteSource { source_type: String, moniker: ExtendedMoniker },

    #[error("routing a capability of an unsupported type `{type_name}` at `{moniker}`")]
    UnsupportedCapabilityType { type_name: CapabilityTypeName, moniker: ExtendedMoniker },

    #[error(
        "dictionaries are not yet supported for {cap_type} capabilities at component `{moniker}`"
    )]
    DictionariesNotSupported { moniker: Moniker, cap_type: CapabilityTypeName },

    #[error("dynamic dictionaries are not allowed at component `{moniker}`")]
    DynamicDictionariesNotAllowed { moniker: Moniker },

    #[error("the capability does not support member access at `{moniker}`")]
    BedrockMemberAccessUnsupported { moniker: ExtendedMoniker },

    #[error("item `{name}` is not present in dictionary at component `{moniker}`")]
    BedrockNotPresentInDictionary { name: String, moniker: ExtendedMoniker },

    #[error("routed capability was the wrong type at component `{moniker}`. Was: {actual}, expected: {expected}")]
    BedrockWrongCapabilityType { actual: String, expected: String, moniker: ExtendedMoniker },

    #[error("there was an error remoting a capability at component `{moniker}`")]
    BedrockRemoteCapability { moniker: Moniker },

    #[error("source dictionary was not found in child's exposes at component `{moniker}`")]
    BedrockSourceDictionaryExposeNotFound { moniker: Moniker },

    #[error("Some capability in the routing chain could not be cloned at `{moniker}`.")]
    BedrockNotCloneable { moniker: ExtendedMoniker },

    #[error(
        "a capability in a dictionary extended from a source dictionary collides with \
        a capability in the source dictionary that has the same key at `{moniker}`"
    )]
    BedrockSourceDictionaryCollision { moniker: ExtendedMoniker },

    #[error("failed to send message for capability `{capability_id}` from component `{moniker}`")]
    BedrockFailedToSend { moniker: ExtendedMoniker, capability_id: String },

    #[error("failed to route capability because the route source has been shutdown and possibly destroyed")]
    RouteSourceShutdown { moniker: Moniker },

    #[error("failed to route capability because the route source stopped running while the route operation was happening")]
    RouteSourceStopped { moniker: Moniker },

    #[error(transparent)]
    ComponentInstanceError(#[from] ComponentInstanceError),

    #[error(transparent)]
    EventsRoutingError(#[from] EventsRoutingError),

    #[error(transparent)]
    RightsRoutingError(#[from] RightsRoutingError),

    #[error(transparent)]
    AvailabilityRoutingError(#[from] AvailabilityRoutingError),

    #[error(transparent)]
    PolicyError(#[from] PolicyError),

    #[error(
        "source capability at component {moniker} is void. \
        If the offer/expose declaration has `source_availability` set to `unknown`, \
        the source component instance likely isn't defined in the component declaration"
    )]
    SourceCapabilityIsVoid { moniker: Moniker },

    #[error(
        "routes that do not set the `debug` flag are unsupported in the current configuration (at `{moniker}`)."
    )]
    NonDebugRoutesUnsupported { moniker: ExtendedMoniker },

    #[error("{type_name} router unexpectedly returned debug info for target {moniker}")]
    RouteUnexpectedDebug { type_name: CapabilityTypeName, moniker: ExtendedMoniker },

    #[error("{type_name} router unexpectedly returned unavailable for target {moniker}")]
    RouteUnexpectedUnavailable { type_name: CapabilityTypeName, moniker: ExtendedMoniker },

    #[error("{name} at {moniker} is missing porcelain type metadata.")]
    MissingPorcelainType { name: Name, moniker: Moniker },
}

impl Explain for RoutingError {
    /// Convert this error into its approximate `zx::Status` equivalent.
    fn as_zx_status(&self) -> zx::Status {
        match self {
            RoutingError::UseFromRootEnvironmentNotAllowed { .. }
            | RoutingError::DynamicDictionariesNotAllowed { .. } => zx::Status::ACCESS_DENIED,
            RoutingError::StorageFromChildExposeNotFound { .. }
            | RoutingError::ComponentNotInIdIndex { .. }
            | RoutingError::UseFromComponentManagerNotFound { .. }
            | RoutingError::RegisterFromComponentManagerNotFound { .. }
            | RoutingError::OfferFromComponentManagerNotFound { .. }
            | RoutingError::UseFromParentNotFound { .. }
            | RoutingError::UseFromSelfNotFound { .. }
            | RoutingError::UseFromChildInstanceNotFound { .. }
            | RoutingError::UseFromEnvironmentNotFound { .. }
            | RoutingError::EnvironmentFromParentNotFound { .. }
            | RoutingError::EnvironmentFromChildExposeNotFound { .. }
            | RoutingError::EnvironmentFromChildInstanceNotFound { .. }
            | RoutingError::OfferFromParentNotFound { .. }
            | RoutingError::OfferFromSelfNotFound { .. }
            | RoutingError::StorageFromParentNotFound { .. }
            | RoutingError::OfferFromChildInstanceNotFound { .. }
            | RoutingError::OfferFromCollectionNotFound { .. }
            | RoutingError::OfferFromChildExposeNotFound { .. }
            | RoutingError::CapabilityFromFrameworkNotFound { .. }
            | RoutingError::CapabilityFromCapabilityNotFound { .. }
            | RoutingError::CapabilityFromComponentManagerNotFound { .. }
            | RoutingError::ExposeFromSelfNotFound { .. }
            | RoutingError::ExposeFromChildInstanceNotFound { .. }
            | RoutingError::ExposeFromCollectionNotFound { .. }
            | RoutingError::ExposeFromChildExposeNotFound { .. }
            | RoutingError::ExposeFromFrameworkNotFound { .. }
            | RoutingError::UseFromChildExposeNotFound { .. }
            | RoutingError::UnsupportedRouteSource { .. }
            | RoutingError::UnsupportedCapabilityType { .. }
            | RoutingError::EventsRoutingError(_)
            | RoutingError::BedrockNotPresentInDictionary { .. }
            | RoutingError::BedrockSourceDictionaryExposeNotFound { .. }
            | RoutingError::BedrockSourceDictionaryCollision { .. }
            | RoutingError::BedrockFailedToSend { .. }
            | RoutingError::RouteSourceShutdown { .. }
            | RoutingError::RouteSourceStopped { .. }
            | RoutingError::BedrockWrongCapabilityType { .. }
            | RoutingError::BedrockRemoteCapability { .. }
            | RoutingError::BedrockNotCloneable { .. }
            | RoutingError::AvailabilityRoutingError(_) => zx::Status::NOT_FOUND,
            RoutingError::BedrockMemberAccessUnsupported { .. }
            | RoutingError::NonDebugRoutesUnsupported { .. }
            | RoutingError::DictionariesNotSupported { .. } => zx::Status::NOT_SUPPORTED,
            RoutingError::ComponentInstanceError(err) => err.as_zx_status(),
            RoutingError::RightsRoutingError(err) => err.as_zx_status(),
            RoutingError::PolicyError(err) => err.as_zx_status(),
            RoutingError::SourceCapabilityIsVoid { .. } => zx::Status::NOT_FOUND,
            RoutingError::RouteUnexpectedDebug { .. }
            | RoutingError::RouteUnexpectedUnavailable { .. }
            | RoutingError::MissingPorcelainType { .. } => zx::Status::INTERNAL,
        }
    }
}

impl From<RoutingError> for ExtendedMoniker {
    fn from(err: RoutingError) -> ExtendedMoniker {
        match err {
            RoutingError::BedrockRemoteCapability { moniker, .. }
            | RoutingError::BedrockSourceDictionaryExposeNotFound { moniker, .. }
            | RoutingError::CapabilityFromCapabilityNotFound { moniker, .. }
            | RoutingError::CapabilityFromFrameworkNotFound { moniker, .. }
            | RoutingError::ComponentNotInIdIndex { source_moniker: moniker, .. }
            | RoutingError::DictionariesNotSupported { moniker, .. }
            | RoutingError::EnvironmentFromChildExposeNotFound { moniker, .. }
            | RoutingError::EnvironmentFromChildInstanceNotFound { moniker, .. }
            | RoutingError::EnvironmentFromParentNotFound { moniker, .. }
            | RoutingError::ExposeFromChildExposeNotFound { moniker, .. }
            | RoutingError::ExposeFromChildInstanceNotFound { moniker, .. }
            | RoutingError::ExposeFromCollectionNotFound { moniker, .. }
            | RoutingError::ExposeFromFrameworkNotFound { moniker, .. }
            | RoutingError::ExposeFromSelfNotFound { moniker, .. }
            | RoutingError::OfferFromChildExposeNotFound { moniker, .. }
            | RoutingError::OfferFromChildInstanceNotFound { moniker, .. }
            | RoutingError::OfferFromCollectionNotFound { moniker, .. }
            | RoutingError::OfferFromParentNotFound { moniker, .. }
            | RoutingError::OfferFromSelfNotFound { moniker, .. }
            | RoutingError::SourceCapabilityIsVoid { moniker, .. }
            | RoutingError::StorageFromChildExposeNotFound { moniker, .. }
            | RoutingError::StorageFromParentNotFound { moniker, .. }
            | RoutingError::UseFromChildExposeNotFound { moniker, .. }
            | RoutingError::UseFromChildInstanceNotFound { moniker, .. }
            | RoutingError::UseFromEnvironmentNotFound { moniker, .. }
            | RoutingError::UseFromParentNotFound { moniker, .. }
            | RoutingError::UseFromRootEnvironmentNotAllowed { moniker, .. }
            | RoutingError::DynamicDictionariesNotAllowed { moniker, .. }
            | RoutingError::RouteSourceShutdown { moniker }
            | RoutingError::RouteSourceStopped { moniker }
            | RoutingError::UseFromSelfNotFound { moniker, .. }
            | RoutingError::MissingPorcelainType { moniker, .. } => moniker.into(),

            RoutingError::BedrockMemberAccessUnsupported { moniker }
            | RoutingError::BedrockNotPresentInDictionary { moniker, .. }
            | RoutingError::BedrockNotCloneable { moniker }
            | RoutingError::BedrockSourceDictionaryCollision { moniker }
            | RoutingError::BedrockFailedToSend { moniker, .. }
            | RoutingError::BedrockWrongCapabilityType { moniker, .. }
            | RoutingError::NonDebugRoutesUnsupported { moniker }
            | RoutingError::RouteUnexpectedDebug { moniker, .. }
            | RoutingError::RouteUnexpectedUnavailable { moniker, .. }
            | RoutingError::UnsupportedCapabilityType { moniker, .. }
            | RoutingError::UnsupportedRouteSource { moniker, .. } => moniker,
            RoutingError::AvailabilityRoutingError(err) => err.into(),
            RoutingError::ComponentInstanceError(err) => err.into(),
            RoutingError::EventsRoutingError(err) => err.into(),
            RoutingError::PolicyError(err) => err.into(),
            RoutingError::RightsRoutingError(err) => err.into(),

            RoutingError::CapabilityFromComponentManagerNotFound { .. }
            | RoutingError::OfferFromComponentManagerNotFound { .. }
            | RoutingError::RegisterFromComponentManagerNotFound { .. }
            | RoutingError::UseFromComponentManagerNotFound { .. } => {
                ExtendedMoniker::ComponentManager
            }
        }
    }
}

impl From<RoutingError> for RouterError {
    fn from(value: RoutingError) -> Self {
        Self::NotFound(Arc::new(value))
    }
}

impl From<RouterError> for RoutingError {
    fn from(value: RouterError) -> Self {
        match value {
            RouterError::NotFound(arc_dyn_explain) => {
                arc_dyn_explain.downcast_for_test::<Self>().clone()
            }
            err => panic!("Cannot downcast {err} to RoutingError!"),
        }
    }
}

impl RoutingError {
    /// Convert this error into its approximate `fuchsia.component.Error` equivalent.
    pub fn as_fidl_error(&self) -> fcomponent::Error {
        fcomponent::Error::ResourceUnavailable
    }

    pub fn storage_from_child_expose_not_found(
        child_moniker: &ChildName,
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::StorageFromChildExposeNotFound {
            child_moniker: child_moniker.clone(),
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn use_from_component_manager_not_found(capability_id: impl Into<String>) -> Self {
        Self::UseFromComponentManagerNotFound { capability_id: capability_id.into() }
    }

    pub fn register_from_component_manager_not_found(capability_id: impl Into<String>) -> Self {
        Self::RegisterFromComponentManagerNotFound { capability_id: capability_id.into() }
    }

    pub fn offer_from_component_manager_not_found(capability_id: impl Into<String>) -> Self {
        Self::OfferFromComponentManagerNotFound { capability_id: capability_id.into() }
    }

    pub fn use_from_parent_not_found(moniker: &Moniker, capability_id: impl Into<String>) -> Self {
        Self::UseFromParentNotFound {
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn use_from_self_not_found(moniker: &Moniker, capability_id: impl Into<String>) -> Self {
        Self::UseFromSelfNotFound { moniker: moniker.clone(), capability_id: capability_id.into() }
    }

    pub fn use_from_child_instance_not_found(
        child_moniker: &ChildName,
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::UseFromChildInstanceNotFound {
            child_moniker: child_moniker.clone(),
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn use_from_environment_not_found(
        moniker: &Moniker,
        capability_type: impl Into<String>,
        capability_name: &Name,
    ) -> Self {
        Self::UseFromEnvironmentNotFound {
            moniker: moniker.clone(),
            capability_type: capability_type.into(),
            capability_name: capability_name.clone(),
        }
    }

    pub fn offer_from_parent_not_found(
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::OfferFromParentNotFound {
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn offer_from_self_not_found(moniker: &Moniker, capability_id: impl Into<String>) -> Self {
        Self::OfferFromSelfNotFound {
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn storage_from_parent_not_found(
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::StorageFromParentNotFound {
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn offer_from_child_instance_not_found(
        child_moniker: &ChildName,
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::OfferFromChildInstanceNotFound {
            child_moniker: child_moniker.clone(),
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn offer_from_child_expose_not_found(
        child_moniker: &ChildName,
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::OfferFromChildExposeNotFound {
            child_moniker: child_moniker.clone(),
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn use_from_child_expose_not_found(
        child_moniker: &ChildName,
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::UseFromChildExposeNotFound {
            child_moniker: child_moniker.clone(),
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn expose_from_self_not_found(moniker: &Moniker, capability_id: impl Into<String>) -> Self {
        Self::ExposeFromSelfNotFound {
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn expose_from_child_instance_not_found(
        child_moniker: &ChildName,
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::ExposeFromChildInstanceNotFound {
            child_moniker: child_moniker.clone(),
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn expose_from_child_expose_not_found(
        child_moniker: &ChildName,
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::ExposeFromChildExposeNotFound {
            child_moniker: child_moniker.clone(),
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn capability_from_framework_not_found(
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::CapabilityFromFrameworkNotFound {
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn capability_from_capability_not_found(
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::CapabilityFromCapabilityNotFound {
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn capability_from_component_manager_not_found(capability_id: impl Into<String>) -> Self {
        Self::CapabilityFromComponentManagerNotFound { capability_id: capability_id.into() }
    }

    pub fn expose_from_framework_not_found(
        moniker: &Moniker,
        capability_id: impl Into<String>,
    ) -> Self {
        Self::ExposeFromFrameworkNotFound {
            moniker: moniker.clone(),
            capability_id: capability_id.into(),
        }
    }

    pub fn unsupported_route_source(
        moniker: impl Into<ExtendedMoniker>,
        source: impl Into<String>,
    ) -> Self {
        Self::UnsupportedRouteSource { source_type: source.into(), moniker: moniker.into() }
    }

    pub fn unsupported_capability_type(
        moniker: impl Into<ExtendedMoniker>,
        type_name: impl Into<CapabilityTypeName>,
    ) -> Self {
        Self::UnsupportedCapabilityType { type_name: type_name.into(), moniker: moniker.into() }
    }
}

/// Errors produced during routing specific to events.
#[cfg_attr(feature = "serde", derive(Deserialize, Serialize), serde(rename_all = "snake_case"))]
#[derive(Error, Debug, Clone, PartialEq)]
pub enum EventsRoutingError {
    #[error("filter is not a subset at `{moniker}`")]
    InvalidFilter { moniker: ExtendedMoniker },

    #[error("event routes must end at source with a filter declaration at `{moniker}`")]
    MissingFilter { moniker: ExtendedMoniker },
}

impl From<EventsRoutingError> for ExtendedMoniker {
    fn from(err: EventsRoutingError) -> ExtendedMoniker {
        match err {
            EventsRoutingError::InvalidFilter { moniker }
            | EventsRoutingError::MissingFilter { moniker } => moniker,
        }
    }
}

#[cfg_attr(feature = "serde", derive(Deserialize, Serialize), serde(rename_all = "snake_case"))]
#[derive(Debug, Error, Clone, PartialEq)]
pub enum RightsRoutingError {
    #[error(
        "requested rights ({requested}) greater than provided rights ({provided}) at \"{moniker}\""
    )]
    Invalid { moniker: ExtendedMoniker, requested: Rights, provided: Rights },

    #[error("directory routes must end at source with a rights declaration, it's missing at \"{moniker}\"")]
    MissingRightsSource { moniker: ExtendedMoniker },
}

impl RightsRoutingError {
    /// Convert this error into its approximate `zx::Status` equivalent.
    pub fn as_zx_status(&self) -> zx::Status {
        match self {
            RightsRoutingError::Invalid { .. } => zx::Status::ACCESS_DENIED,
            RightsRoutingError::MissingRightsSource { .. } => zx::Status::NOT_FOUND,
        }
    }
}

impl From<RightsRoutingError> for ExtendedMoniker {
    fn from(err: RightsRoutingError) -> ExtendedMoniker {
        match err {
            RightsRoutingError::Invalid { moniker, .. }
            | RightsRoutingError::MissingRightsSource { moniker } => moniker,
        }
    }
}

#[cfg_attr(feature = "serde", derive(Deserialize, Serialize), serde(rename_all = "snake_case"))]
#[derive(Debug, Error, Clone, PartialEq)]
pub enum AvailabilityRoutingError {
    #[error(
        "availability requested by the target has stronger guarantees than what \
    is being provided at the source at `{moniker}`"
    )]
    TargetHasStrongerAvailability { moniker: ExtendedMoniker },

    #[error("offer uses void source, but target requires the capability at `{moniker}`")]
    OfferFromVoidToRequiredTarget { moniker: ExtendedMoniker },

    #[error("expose uses void source, but target requires the capability at `{moniker}`")]
    ExposeFromVoidToRequiredTarget { moniker: ExtendedMoniker },
}

impl From<availability::TargetHasStrongerAvailability> for AvailabilityRoutingError {
    fn from(value: availability::TargetHasStrongerAvailability) -> Self {
        let availability::TargetHasStrongerAvailability { moniker } = value;
        AvailabilityRoutingError::TargetHasStrongerAvailability { moniker }
    }
}

impl From<AvailabilityRoutingError> for ExtendedMoniker {
    fn from(err: AvailabilityRoutingError) -> ExtendedMoniker {
        match err {
            AvailabilityRoutingError::ExposeFromVoidToRequiredTarget { moniker }
            | AvailabilityRoutingError::OfferFromVoidToRequiredTarget { moniker }
            | AvailabilityRoutingError::TargetHasStrongerAvailability { moniker } => moniker,
        }
    }
}

// Implements error reporting upon routing failure. For example, component
// manager logs the error.
#[async_trait]
pub trait ErrorReporter: Clone + Send + Sync + 'static {
    async fn report(&self, request: &RouteRequestErrorInfo, err: &RouterError);
}

/// What to print in an error if a route request fails.
pub struct RouteRequestErrorInfo {
    capability_type: cm_rust::CapabilityTypeName,
    name: cm_types::Name,
    availability: cm_rust::Availability,
}

impl RouteRequestErrorInfo {
    pub fn availability(&self) -> cm_rust::Availability {
        self.availability.clone()
    }
}

impl From<&cm_rust::UseDecl> for RouteRequestErrorInfo {
    fn from(value: &cm_rust::UseDecl) -> Self {
        RouteRequestErrorInfo {
            capability_type: value.into(),
            name: value.source_name().clone(),
            availability: value.availability().clone(),
        }
    }
}

impl From<&cm_rust::UseConfigurationDecl> for RouteRequestErrorInfo {
    fn from(value: &cm_rust::UseConfigurationDecl) -> Self {
        RouteRequestErrorInfo {
            capability_type: CapabilityTypeName::Config,
            name: value.source_name().clone(),
            availability: value.availability().clone(),
        }
    }
}

impl From<&cm_rust::ExposeDecl> for RouteRequestErrorInfo {
    fn from(value: &cm_rust::ExposeDecl) -> Self {
        RouteRequestErrorInfo {
            capability_type: value.into(),
            name: value.target_name().clone(),
            availability: value.availability().clone(),
        }
    }
}

impl From<&cm_rust::OfferDecl> for RouteRequestErrorInfo {
    fn from(value: &cm_rust::OfferDecl) -> Self {
        RouteRequestErrorInfo {
            capability_type: value.into(),
            name: value.target_name().clone(),
            availability: value.availability().clone(),
        }
    }
}

impl std::fmt::Display for RouteRequestErrorInfo {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{} `{}`", self.capability_type, self.name)
    }
}