patina_dxe_core 20.1.2

A pure rust implementation of the UEFI DXE Core.
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
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
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
//! DXE Core
//!
//! A pure rust implementation of the UEFI DXE Core. Please review the getting started documentation at
//! <https://OpenDevicePartnership.github.io/patina/> for more information.
//!
//! ## Examples
//!
//! ```rust
//! # use core::ffi::c_void;
//! # use patina_dxe_core::*;
//! # use patina_ffs_extractors::NullSectionExtractor;
//! # #[derive(Default)]
//! # struct ExampleComponent;
//! # #[patina::component::component]
//! # impl ExampleComponent {
//! #     fn entry_point(self) -> patina::error::Result<()> { Ok(()) }
//! # }
//! struct ExamplePlatform;
//!
//! impl ComponentInfo for ExamplePlatform {
//!   fn configs(mut add: Add<Config>) {
//!     add.config(32u32);
//!     add.config(true);
//!   }
//!
//!   fn components(mut add: Add<Component>) {
//!     add.component(ExampleComponent::default());
//!   }
//! }
//!
//! impl MemoryInfo for ExamplePlatform {
//!   fn prioritize_32_bit_memory() -> bool {
//!     true
//!   }
//! }
//!
//! impl CpuInfo for ExamplePlatform {
//!   #[cfg(target_arch = "aarch64")]
//!   fn gic_bases() -> GicBases {
//!     /// SAFETY: gicd and gicr bases correctly point to the register spaces.
//!     /// SAFETY: Access to these registers is exclusive to this struct instance.
//!     unsafe { GicBases::new(0x0, 0x0) }
//!   }
//! }
//!
//! impl PlatformInfo for ExamplePlatform {
//!   type MemoryInfo = Self;
//!   type CpuInfo = Self;
//!   type ComponentInfo = Self;
//!   type Extractor = NullSectionExtractor;
//! }
//!
//! static CORE: Core<ExamplePlatform> = Core::new(NullSectionExtractor);
//! ```
//!
//! ## License
//!
//! Copyright (c) Microsoft Corporation.
//!
//! SPDX-License-Identifier: Apache-2.0
//!
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
#![feature(alloc_error_handler)]
#![feature(c_variadic)]
#![feature(allocator_api)]
#![feature(coverage_attribute)]

extern crate alloc;

use alloc::boxed::Box;

mod allocator;
mod component_dispatcher;
mod config_tables;
mod cpu;
#[cfg(feature = "debugger_reload")]
mod debugger_reload;
mod decompress;
mod driver_services;
mod dxe_services;
mod event_db;
mod events;
mod filesystems;
mod gcd;
mod memory_attributes_protocol;
mod memory_manager;
mod misc_boot_services;
mod pecoff;
mod pi_dispatcher;
mod protocol_db;
mod protocols;
mod runtime;
mod systemtables;
mod tpl_mutex;

#[cfg(test)]
pub use {component_dispatcher::MockComponentInfo, cpu::MockCpuInfo};

pub use component_dispatcher::{Add, Component, ComponentInfo, Config, Service};
pub use cpu::{CpuInfo, GicBases};

use spin::Once;

#[cfg(test)]
#[macro_use]
#[coverage(off)]
pub mod test_support;

#[coverage(off)]
mod core_patina_tests;

use core::{
    ffi::c_void,
    num::NonZeroUsize,
    ptr::{self, NonNull},
};

use gcd::SpinLockedGcd;
use memory_manager::CoreMemoryManager;
use patina::{
    boot_services::StandardBootServices,
    component::IntoComponent,
    error::{self, Result},
    pi::{
        hob::{HobList, get_pi_hob_list_size},
        protocols::{bds, status_code},
        status_code::{EFI_PROGRESS_CODE, EFI_SOFTWARE_DXE_CORE, EFI_SW_DXE_CORE_PC_HANDOFF_TO_NEXT},
    },
    runtime_services::StandardRuntimeServices,
};
use patina_ffs::section::SectionExtractor;
use protocols::PROTOCOL_DB;
use r_efi::efi;

use crate::{
    component_dispatcher::ComponentDispatcher, config_tables::memory_attributes_table, pi_dispatcher::PiDispatcher,
    tpl_mutex::TplMutex,
};

#[doc(hidden)]
#[macro_export]
macro_rules! ensure {
    ($condition:expr, $err:expr) => {{
        if !($condition) {
            error!($err);
        }
    }};
}

#[doc(hidden)]
#[macro_export]
macro_rules! error {
    ($err:expr) => {{
        return Err($err.into()).into();
    }};
}

pub(crate) static GCD: SpinLockedGcd = SpinLockedGcd::new(Some(events::gcd_map_change));

/// Useful for offline inspection (like debugging) to determine core version.
#[used]
static DXE_CORE_VERSION: &str = env!("CARGO_PKG_VERSION");

/// A trait to be implemented by the platform to provide configuration values and types related to memory management
/// to be used directly by the Patina DXE Core.
///
/// ## Example
///
/// ```rust
/// use patina_dxe_core::*;
///
/// struct ExamplePlatform;
///
/// impl MemoryInfo for ExamplePlatform {
///   fn prioritize_32_bit_memory() -> bool {
///     true
///   }
/// }
#[cfg_attr(test, mockall::automock)]
pub trait MemoryInfo {
    /// Informs the core that it should prioritize allocating 32-bit memory when not otherwise specified.
    ///
    /// This should only be used as a workaround in environments where address width bugs exist in uncontrollable
    /// dependent software. For example, when booting to an OS that erroneously stores UEFI allocated addresses
    /// greater than 32-bits in a 32-bit variable.
    #[inline(always)]
    fn prioritize_32_bit_memory() -> bool {
        false
    }
}

/// A trait to be implemented by the platform to provide configuration values and types to be used directly by the
/// Patina DXE Core.
///
/// ## Example
///
/// ```rust
/// use patina_dxe_core::*;
///
/// struct ExamplePlatform;
///
/// // An example of using all default implementations.
/// impl PlatformInfo for ExamplePlatform {
///   type MemoryInfo = Self;
///   type CpuInfo = Self;
///   type ComponentInfo = Self;
///   type Extractor = patina_ffs_extractors::NullSectionExtractor;
/// }
///
/// impl ComponentInfo for ExamplePlatform {}
/// impl MemoryInfo for ExamplePlatform {}
///
/// impl CpuInfo for ExamplePlatform {
///   #[cfg(target_arch = "aarch64")]
///   fn gic_bases() -> GicBases {
///     unsafe { GicBases::new(0x1E000000, 0x1E010000) }
///   }
/// }
/// ```
#[cfg_attr(test, mockall::automock(
    type Extractor = patina_ffs_extractors::NullSectionExtractor;
    type ComponentInfo = MockComponentInfo;
    type MemoryInfo = MockMemoryInfo;
    type CpuInfo = MockCpuInfo;
))]
pub trait PlatformInfo: 'static {
    /// The platform's memory information and configuration.
    type MemoryInfo: MemoryInfo;

    /// The platform's CPU information and configuration.
    type CpuInfo: CpuInfo;

    /// The platform's component information and configuration.
    type ComponentInfo: ComponentInfo;

    /// The platform's section extractor type, used when extracting sections from firmware volumes.
    type Extractor: SectionExtractor;
}

/// Static reference to the DXE Core instance in the compiled binary.
///
/// This is set during the `entry_point` call of the DXE Core and is used to provide static access to the core for use
/// only in efiapi functions where no reference to the core is otherwise available.
static __SELF: Once<NonZeroUsize> = Once::new();

#[cfg(test)]
type MockCore = Core<MockPlatformInfo>;

/// Platform configured DXE Core responsible for the DXE phase of UEFI booting.
///
/// This struct is generic over the [PlatformInfo] trait, which is used to provide platform-specific configuration to
/// the core. The [PlatformInfo] trait is composed of multiple sub-traits that configure the different subsystems of
/// the Patina DXE Core. Review the [PlatformInfo] trait documentation and each type alias within the trait for more
/// information on the different configurations available to the platform.
///
/// To properly use this struct, the platform must implement the [PlatformInfo] on a type and then create a static
/// instance of the [Core] struct with the platform types as generic parameters (See example below). From there, simply
/// call the [entry_point](Core::entry_point) method within the main function to start the DXE Core.
///
/// ## Examples
///
/// ```rust
/// # use core::ffi::c_void;
/// # use patina_dxe_core::*;
/// # use patina_ffs_extractors::NullSectionExtractor;
/// # #[derive(Default)]
/// # struct ExampleComponent;
/// # #[patina::component::component]
/// # impl ExampleComponent {
/// #     fn entry_point(self) -> patina::error::Result<()> { Ok(()) }
/// # }
/// struct ExamplePlatform;
///
/// impl ComponentInfo for ExamplePlatform {
///   fn configs(mut add: Add<Config>) {
///     add.config(32u32);
///     add.config(true);
///   }
///
///   fn components(mut add: Add<Component>) {
///     add.component(ExampleComponent::default());
///   }
/// }
///
/// impl MemoryInfo for ExamplePlatform {
///   fn prioritize_32_bit_memory() -> bool { true }
/// }
///
/// impl CpuInfo for ExamplePlatform {
///   #[cfg(target_arch = "aarch64")]
///   fn gic_bases() -> GicBases {
///     /// SAFETY: gicd and gicr bases correctly point to the register spaces.
///     /// SAFETY: Access to these registers is exclusive to this struct instance.
///     unsafe { GicBases::new(0x0, 0x0) }
///   }
/// }
///
/// impl PlatformInfo for ExamplePlatform {
///   type MemoryInfo = Self;
///   type CpuInfo = Self;
///   type ComponentInfo = Self;
///   type Extractor = NullSectionExtractor;
/// }
///
/// static CORE: Core<ExamplePlatform> = Core::new(NullSectionExtractor);
/// ```
pub struct Core<P: PlatformInfo> {
    /// A parsed and heap-allocated list of HOBs provided by [Self::entry_point].
    hob_list: Once<HobList<'static>>,
    /// The subsystem responsible for data management and dispatch of Patina components.
    component_dispatcher: TplMutex<ComponentDispatcher>,
    /// The subsystem responsible for fv management and dispatch of PI specification compliant UEFI drivers.
    pi_dispatcher: PiDispatcher<P>,
}

#[coverage(off)]
impl<P: PlatformInfo> Core<P> {
    /// Creates a new instance of the DXE Core in the NoAlloc phase.
    pub const fn new(section_extractor: P::Extractor) -> Self {
        Self {
            hob_list: Once::new(),
            component_dispatcher: ComponentDispatcher::new_locked(),
            pi_dispatcher: PiDispatcher::new(section_extractor),
        }
    }

    /// Sets the static DXE Core instance for global access.
    ///
    /// Returns true if the address of self is the same as the stored address, false otherwise.
    #[must_use]
    fn set_instance(&'static self) -> bool {
        let physical_address = NonNull::from_ref(self).expose_provenance();
        &physical_address == __SELF.call_once(|| physical_address)
    }

    /// Sets the static DXE Core instance for global access regardless of prior initialization.
    ///
    /// This is only to be used in tests where the instance needs to be overridden for tests.
    #[cfg(test)]
    fn override_instance(&'static self) {
        let physical_address = NonNull::from_ref(self).expose_provenance();
        if __SELF.is_completed() {
            // SAFETY: The pointer is valid as `__SELF.is_completed` returned true and there is no casting involved.
            unsafe {
                __SELF.as_mut_ptr().write(physical_address);
            }
        } else {
            __SELF.call_once(|| physical_address);
        }
    }

    /// Gets the static DXE Core instance for global access.
    ///
    /// This should only be used in efiapi functions where no reference to the core is otherwise available.
    #[allow(unused)]
    pub(crate) fn instance<'a>() -> &'a Self {
        // SAFETY: The pointer is guaranteed to be set to a valid reference of this `Self` implementation as the atomic
        // compare_exchange guarantees only one initialization has occurred. If the pointer was already set during the
        // `set_instance` call of another `CORE` it would have returned a failure and then panicked before reaching this point.
        unsafe {
            NonNull::<Self>::with_exposed_provenance(*__SELF.get().expect("DXE Core is already initialized.")).as_ref()
        }
    }

    /// The entry point for the Patina DXE Core.
    pub fn entry_point(&'static self, physical_hob_list: *const c_void) -> ! {
        if !self.set_instance() {
            panic!("DXE Core instance was already set!");
        }

        if physical_hob_list.is_null() {
            panic!("DXE Core entry point called with null HOB list pointer!");
        }

        let relocated_hob_list = self.init_memory(physical_hob_list);

        if let Err(err) = self.start_dispatcher(relocated_hob_list) {
            log::error!("DXE Core failed to start: {err:?}");
        }

        call_bds();
    }

    /// Attempts to set the HOB list for the DXE Core.
    ///
    /// Returns an `EfiError::AlreadyStarted` if the HOB list has already been set.
    fn set_hob_list(&self, hob_list: HobList<'static>) -> Result<&HobList<'static>> {
        match self.hob_list.is_completed() {
            true => Err(error::EfiError::AlreadyStarted),
            false => Ok(self.hob_list.call_once(|| hob_list)),
        }
    }

    /// Returns a reference to the HOB list.
    ///
    /// Must not be called until `set_hob_list` has been called successfully.
    fn hob_list(&self) -> &HobList<'static> {
        self.hob_list.get().expect("HOB list should have been initialized already.")
    }

    /// Initializes the core with the given configuration, including GCD initialization, enabling allocations.
    ///
    /// Returns the relocated HOB list pointer that should be used for all subsequent operations.
    fn init_memory(&self, physical_hob_list: *const c_void) -> *mut c_void {
        log::info!("DXE Core Crate v{DXE_CORE_VERSION}");

        GCD.prioritize_32_bit_memory(P::MemoryInfo::prioritize_32_bit_memory());

        let (cpu, mut interrupt_manager) =
            cpu::initialize_cpu_subsystem().expect("Failed to initialize CPU subsystem!");

        // For early debugging, the "no_alloc" feature must be enabled in the debugger crate.
        // patina_debugger::initialize(&mut interrupt_manager);

        gcd::init_gcd(physical_hob_list);

        log::trace!("Initial GCD:\n{GCD}");

        // After this point Rust Heap usage is permitted (since GCD is initialized with a single known-free region).
        // Relocate the hobs from the input list pointer into a Vec.
        let mut hob_list = HobList::new();
        hob_list.discover_hobs(physical_hob_list);

        log::trace!("HOB list discovered is:");
        log::trace!("{:#x?}", hob_list);

        //make sure that well-known handles exist.
        PROTOCOL_DB.init_protocol_db();
        // Initialize full allocation support.
        allocator::init_memory_support(&hob_list);

        // Relocate the PI Spec HOB list
        //
        // SAFETY: physical_hob_list is checked for null when it is accepted at the DXE core entry point.
        let pi_hob_list_size = unsafe { get_pi_hob_list_size(physical_hob_list) };

        // SAFETY: Creating a slice from the original PI HOB list pointer with the calculated size.
        let pi_hob_slice = unsafe { core::slice::from_raw_parts(physical_hob_list as *const u8, pi_hob_list_size) };

        // Leak a DXE allocated PI HOB list so it is available throughout the DXE phase.
        let relocated_hob_list = Box::leak(pi_hob_slice.to_vec().into_boxed_slice()).as_mut_ptr().cast::<c_void>();

        // Relocate the Rust HOB list
        //
        // we have to relocate HOBs after memory services are initialized as we are going to allocate memory and
        // the initial free memory may not be enough to contain the HOB list. We need to relocate the HOBs because
        // the initial HOB list is not in mapped memory as passed from pre-DXE.
        hob_list.relocate_hobs();
        if self.set_hob_list(hob_list).is_err() {
            panic!("HOB list was already set!");
        }

        // Add custom monitor commands to the debugger before initializing so that
        // they are available in the initial breakpoint.
        patina_debugger::add_monitor_command("gcd", "Prints the GCD", |_, out| {
            let _ = write!(out, "GCD -\n{GCD}");
        });

        #[cfg(feature = "debugger_reload")]
        debugger_reload::initialize_debugger_reload(physical_hob_list);

        // Initialize the debugger if it is enabled.
        patina_debugger::initialize(
            &mut interrupt_manager,
            Some(Box::leak(Box::new(cpu::PerfTimer::with_frequency(P::CpuInfo::perf_timer_frequency().unwrap_or(0))))),
        );

        #[cfg(feature = "debugger_reload")]
        debugger_reload::tear_down_debugger_reload();

        log::info!("GCD - After memory init:\n{GCD}");

        let mut component_dispatcher = self.component_dispatcher.lock();
        component_dispatcher.add_service(cpu);
        component_dispatcher.add_service(interrupt_manager);
        component_dispatcher.add_service(CoreMemoryManager);
        component_dispatcher
            .add_service(cpu::PerfTimer::with_frequency(P::CpuInfo::perf_timer_frequency().unwrap_or(0)));

        relocated_hob_list
    }

    /// Performs a combined dispatch of Patina components and UEFI drivers.
    ///
    /// This function will continue to loop and perform dispatching until no components have been dispatched in a full
    /// iteration. The dispatching process involves a loop of two distinct dispatch phases:
    ///
    /// 1. A single iteration of dispatching Patina components, retaining those that were not dispatched.
    /// 2. A single iteration of dispatching UEFI drivers via the dispatcher module.
    fn core_dispatcher(&'static self) -> Result<()> {
        loop {
            // Patina component dispatch
            let dispatched = self.component_dispatcher.lock().dispatch();

            // UEFI driver dispatch
            let dispatched = dispatched
                || self
                    .pi_dispatcher
                    .dispatch()
                    .inspect_err(|err| log::error!("UEFI Driver Dispatch error: {err:?}"))?;

            if !dispatched {
                break;
            }
        }

        Ok(())
    }

    fn initialize_system_table(&self, physical_hob_list: *mut c_void) -> Result<()> {
        // Instantiate system table.
        systemtables::init_system_table();

        let mut st_guard = systemtables::SYSTEM_TABLE.lock();
        let st = st_guard.as_mut().expect("System Table not initialized!");

        allocator::install_memory_services(st);
        gcd::init_paging(self.hob_list());
        events::init_events_support(st);
        protocols::init_protocol_support(st);
        misc_boot_services::init_misc_boot_services_support(st);
        config_tables::init_config_tables_support(st);
        runtime::init_runtime_support();
        self.pi_dispatcher.init(self.hob_list(), st);
        self.install_dxe_services_table(st);
        driver_services::init_driver_services(st);

        memory_attributes_protocol::install_memory_attributes_protocol();

        // re-checksum the system tables after above initialization.
        st.checksum_all();

        // Install HobList configuration table
        config_tables::core_install_configuration_table(patina::guids::HOB_LIST.into_inner(), physical_hob_list, st)
            .expect("Unable to create configuration table due to invalid table entry.");

        // Install Memory Type Info configuration table.
        allocator::install_memory_type_info_table(st).expect("Unable to create Memory Type Info Table");

        memory_attributes_table::init_memory_attributes_table_support();

        // The component dispatcher has a TPL_APPLICATION TPLMutex, so we need to drop the TPL_NOTIFY st_guard before
        // attempting to unlock the component dispatcher to prevent TPL inversion
        let boot_services = StandardBootServices::new(st.boot_services().as_mut_ptr());
        let runtime_services = StandardRuntimeServices::new(st.runtime_services().as_mut_ptr());
        drop(st_guard);

        self.component_dispatcher.lock().set_boot_services(boot_services);
        self.component_dispatcher.lock().set_runtime_services(runtime_services);
        self.component_dispatcher.lock().set_image_handle(protocol_db::DXE_CORE_HANDLE);

        Ok(())
    }

    /// Registers platform provided components, configurations, and services.
    #[inline(always)]
    fn apply_component_info(&self) {
        self.component_dispatcher.lock().apply_component_info::<P::ComponentInfo>();
    }

    /// Registers core provided components
    #[allow(clippy::default_constructed_unit_structs)]
    fn add_core_components(&self) {
        let mut dispatcher = self.component_dispatcher.lock();
        dispatcher.insert_component(0, decompress::DecompressProtocolInstaller::default().into_component());
        dispatcher.insert_component(0, systemtables::SystemTableChecksumInstaller::default().into_component());
        dispatcher.insert_component(0, cpu::CpuArchProtocolInstaller::default().into_component());
        #[cfg(all(target_os = "uefi", target_arch = "aarch64"))]
        dispatcher
            .insert_component(0, cpu::HwInterruptProtocolInstaller::new(P::CpuInfo::gic_bases()).into_component());
    }

    /// Starts the core, dispatching all drivers.
    fn start_dispatcher(&'static self, physical_hob_list: *mut c_void) -> Result<()> {
        log::info!("Registering platform components");
        self.apply_component_info();
        log::info!("Finished.");

        log::info!("Registering default components");
        self.add_core_components();
        log::info!("Finished.");

        log::info!("Initializing System Table");
        self.initialize_system_table(physical_hob_list)?;
        log::info!("Finished.");

        log::info!("Parsing HOB list for Guided HOBs.");
        self.component_dispatcher.lock().insert_hobs(self.hob_list());
        log::info!("Finished.");

        log::info!("Installing Firmware Volumes from HOB list.");
        self.pi_dispatcher.install_firmware_volumes_from_hoblist(self.hob_list())?;
        log::info!("Finished.");

        log::info!("Dispatching Drivers");
        self.core_dispatcher()?;
        self.component_dispatcher.lock().lock_configs();
        self.core_dispatcher()?;
        log::info!("Finished Dispatching Drivers");

        self.component_dispatcher.lock().display_not_dispatched();

        core_display_missing_arch_protocols();

        self.pi_dispatcher.display_discovered_not_dispatched();

        Ok(())
    }
}

const ARCH_PROTOCOLS: &[(uuid::Uuid, &str)] = &[
    (uuid::uuid!("a46423e3-4617-49f1-b9ff-d1bfa9115839"), "Security"),
    (uuid::uuid!("26baccb1-6f42-11d4-bce7-0080c73c8881"), "Cpu"),
    (uuid::uuid!("26baccb2-6f42-11d4-bce7-0080c73c8881"), "Metronome"),
    (uuid::uuid!("26baccb3-6f42-11d4-bce7-0080c73c8881"), "Timer"),
    (uuid::uuid!("665e3ff6-46cc-11d4-9a38-0090273fc14d"), "Bds"),
    (uuid::uuid!("665e3ff5-46cc-11d4-9a38-0090273fc14d"), "Watchdog"),
    (uuid::uuid!("b7dfb4e1-052f-449f-87be-9818fc91b733"), "Runtime"),
    (uuid::uuid!("1e5668e2-8481-11d4-bcf1-0080c73c8881"), "Variable"),
    (uuid::uuid!("6441f818-6362-4e44-b570-7dba31dd2453"), "Variable Write"),
    (uuid::uuid!("5053697e-2cbc-4819-90d9-0580deee5754"), "Capsule"),
    (uuid::uuid!("1da97072-bddc-4b30-99f1-72a0b56fff2a"), "Monotonic Counter"),
    (uuid::uuid!("27cfac88-46cc-11d4-9a38-0090273fc14d"), "Reset"),
    (uuid::uuid!("27cfac87-46cc-11d4-9a38-0090273fc14d"), "Real Time Clock"),
];

fn core_display_missing_arch_protocols() {
    for (uuid, name) in ARCH_PROTOCOLS {
        let guid = efi::Guid::from_bytes(&uuid.to_bytes_le());
        if protocols::PROTOCOL_DB.locate_protocol(guid).is_err() {
            log::warn!("Missing architectural protocol: {uuid:?}, {name:?}");
        }
    }
}

fn call_bds() -> ! {
    // Enable status code capability in Firmware Performance DXE.
    match protocols::PROTOCOL_DB.locate_protocol(status_code::PROTOCOL_GUID.into_inner()) {
        Ok(status_code_ptr) => {
            if let Some(status_code_protocol_ptr) = NonNull::new(status_code_ptr) {
                // SAFETY: Some(status_code_protocol_ptr) guarantees that the pointer is non-NULL
                let status_code_protocol = unsafe { status_code_protocol_ptr.cast::<status_code::Protocol>().as_ref() };
                let dxe_core_guid = patina::guids::DXE_CORE.into_inner();
                (status_code_protocol.report_status_code)(
                    EFI_PROGRESS_CODE,
                    EFI_SOFTWARE_DXE_CORE | EFI_SW_DXE_CORE_PC_HANDOFF_TO_NEXT,
                    0,
                    &dxe_core_guid,
                    ptr::null(),
                );
            } else {
                log::error!("status_code protocol pointer is NULL")
            }
        }
        Err(err) => log::error!("Unable to locate status code runtime protocol: {err:?}"),
    }

    match protocols::PROTOCOL_DB.locate_protocol(bds::PROTOCOL_GUID.into_inner()) {
        Ok(bds_ptr) => {
            if let Some(bds_protocol_ptr) = NonNull::new(bds_ptr) {
                let bds_protocol_ptr = bds_protocol_ptr.cast::<bds::Protocol>();
                // SAFETY: The BDS arch protocol is the valid C structure as defined by the UEFI specification. The entry
                // field of the protocol is a valid function pointer that conforms to the expected calling convention.
                // Some(bds_protocol_ptr) guarantees that the pointer is non-NULL
                unsafe {
                    (bds_protocol_ptr.as_ref().entry)(bds_protocol_ptr.as_ptr());
                }
            } else {
                log::error!("bds protocol pointer is NULL")
            }
        }
        Err(err) => log::error!("Unable to locate BDS arch protocol: {err:?}"),
    };

    unreachable!("BDS arch protocol should be found and should never return.");
}

#[cfg(test)]
#[coverage(off)]
mod tests {
    use crate::test_support::with_global_lock;

    use super::*;
    use core::{any::Any, sync::atomic::AtomicBool};

    #[test]
    fn test_cannot_set_instance_twice() {
        with_global_lock(|| {
            static CORE: Core<MockPlatformInfo> =
                Core::<MockPlatformInfo>::new(patina_ffs_extractors::NullSectionExtractor);
            static CORE2: Core<MockPlatformInfo> =
                Core::<MockPlatformInfo>::new(patina_ffs_extractors::NullSectionExtractor);

            // Set the first time. We will do `override_instance` to ensure we set it once. It may have been set by
            // other tests already.
            CORE.override_instance();

            if NonNull::from_ref(&CORE) != NonNull::from_ref(Core::<MockPlatformInfo>::instance()) {
                panic!("CORE instance mismatch");
            }

            // We return true because its the same address
            assert!(CORE.set_instance());
            // This should fail because CORE2 is a different instance
            assert!(!CORE2.set_instance());

            if NonNull::from_ref(&CORE) != NonNull::from_ref(Core::<MockPlatformInfo>::instance()) {
                panic!("CORE instance mismatch after second set_instance");
            }
        })
        .unwrap();
    }

    #[test]
    fn test_trait_defaults_do_not_change() {
        /// A simple test to acknowledge that the default implementations of the trait default implementations
        /// should not change without a conscious decision, which requires updating this test.
        struct TestPlatform;

        impl MemoryInfo for TestPlatform {}

        assert!(!<TestPlatform as MemoryInfo>::prioritize_32_bit_memory());
    }

    fn with_reset_global_state<F>(f: F) -> core::result::Result<(), Box<dyn Any + Send>>
    where
        F: Fn() + std::panic::RefUnwindSafe,
    {
        test_support::with_global_lock(|| {
            // SAFETY: init_test_protocol_db modifies global state. It is being called within a
            // lock to have exclusive mutable access to the protocol database.
            unsafe {
                test_support::init_test_protocol_db();
            }

            f()
        })
    }

    #[test]
    fn test_mock_call_bds_valid_non_null() {
        static BDS_CALLED: AtomicBool = AtomicBool::new(false);
        extern "efiapi" fn mock_bds(_this: *mut patina::pi::protocols::bds::Protocol) {
            BDS_CALLED.store(true, core::sync::atomic::Ordering::Relaxed)
        }

        assert!(
            with_reset_global_state(|| {
                let protocol = Box::leak(Box::new(patina::pi::protocols::bds::Protocol { entry: mock_bds }));

                protocols::core_install_protocol_interface(
                    None,
                    patina::pi::protocols::bds::PROTOCOL_GUID.into_inner(),
                    protocol as *mut _ as *mut c_void,
                )
                .unwrap();

                call_bds();
            })
            .is_err_and(|err| {
                err.downcast_ref::<&str>()
                    .unwrap()
                    .contains("BDS arch protocol should be found and should never return.")
            })
        );

        assert!(BDS_CALLED.load(core::sync::atomic::Ordering::Relaxed))
    }

    #[test]
    fn test_mock_call_bds_valid_null() {
        assert!(
            with_reset_global_state(|| {
                protocols::core_install_protocol_interface(
                    None,
                    patina::pi::protocols::bds::PROTOCOL_GUID.into_inner(),
                    core::ptr::null_mut(),
                )
                .unwrap();

                call_bds();
            })
            .is_err_and(|err| {
                err.downcast_ref::<&str>()
                    .unwrap()
                    .contains("BDS arch protocol should be found and should never return.")
            })
        );
    }

    #[test]
    fn test_mock_call_bds_invalid() {
        assert!(
            with_reset_global_state(|| {
                call_bds();
            })
            .is_err_and(|err| {
                err.downcast_ref::<&str>()
                    .unwrap()
                    .contains("BDS arch protocol should be found and should never return.")
            })
        );
    }

    #[test]
    fn test_mock_call_status_code_valid_non_null() {
        static STATUS_CODE_CALLED: AtomicBool = AtomicBool::new(false);
        extern "efiapi" fn mock_status_code(
            _: u32,
            _: u32,
            _: u32,
            _: *const efi::Guid,
            _: *const status_code::EfiStatusCodeData,
        ) -> efi::Status {
            STATUS_CODE_CALLED.store(true, core::sync::atomic::Ordering::Relaxed);
            efi::Status::SUCCESS
        }

        assert!(
            with_reset_global_state(|| {
                let protocol = Box::leak(Box::new(patina::pi::protocols::status_code::Protocol {
                    report_status_code: mock_status_code,
                }));

                protocols::core_install_protocol_interface(
                    None,
                    patina::pi::protocols::status_code::PROTOCOL_GUID.into_inner(),
                    protocol as *mut _ as *mut c_void,
                )
                .unwrap();

                call_bds();
            })
            .is_err_and(|err| {
                err.downcast_ref::<&str>()
                    .unwrap()
                    .contains("BDS arch protocol should be found and should never return.")
            })
        );

        assert!(STATUS_CODE_CALLED.load(core::sync::atomic::Ordering::Relaxed))
    }

    #[test]
    fn test_mock_call_status_code_valid_null() {
        assert!(
            with_reset_global_state(|| {
                protocols::core_install_protocol_interface(
                    None,
                    patina::pi::protocols::status_code::PROTOCOL_GUID.into_inner(),
                    core::ptr::null_mut(),
                )
                .unwrap();

                call_bds();
            })
            .is_err_and(|err| {
                err.downcast_ref::<&str>()
                    .unwrap()
                    .contains("BDS arch protocol should be found and should never return.")
            })
        );
    }

    #[test]
    fn test_mock_call_status_code_invalid() {
        assert!(
            with_reset_global_state(|| {
                call_bds();
            })
            .is_err_and(|err| {
                err.downcast_ref::<&str>()
                    .unwrap()
                    .contains("BDS arch protocol should be found and should never return.")
            })
        );
    }
}