]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
fix(psci): do not panic on illegal MPIDR
authorAndre Przywara <andre.przywara@arm.com>
Thu, 27 Apr 2023 12:46:41 +0000 (13:46 +0100)
committerAndre Przywara <andre.przywara@arm.com>
Wed, 3 May 2023 16:00:31 +0000 (17:00 +0100)
Commit 66327414fb1e ("fix(psci): potential array overflow with cpu on")
changed an assert in the PSCI library's psci_cpu_on_start() function to
a runtime error message, followed by a panic. This does not seem right
for two reasons:
- We must not panic() triggered by conditions influenced by lower EL
  callers. If non-secure world provides illegal arguments to a PSCI
  call, we can easily detect this and return -PSCI_E_INVALID_PARAMS, as
  the PSCI spec demands. In fact this is done already, which brings us
  to the next reason:
- psci_cpu_on_start() is effectively a function private to the PSCI
  library: its prototype is in psci_private.h. It's just not static
  because it lives in a different code file from the main PSCI code.
  We check for illegal MPID values already in psci_cpu_on(), and return
  an error value to the caller, as we should. This function is the ONLY
  caller of psci_cpu_on_start(), so there is no way we get an illegal
  target_cpu argument into this function. An assert() is thus the proper
  way to check for this.

Mostly revert the patch mentioned above, just extending the assert so
that it does also check for not exceeding the array boundaries.
To harden the code, add a check against PLATFORM_MAX_CORE_COUNT in
psci_validate_mpidr(), and return with the proper PSCI error code if
this number is exceeded.

This also fixes the sun50i_a64 build with DEBUG=1, which exceeded an
SRAM limit due to the error message.

Change-Id: I48fc58d96b0173da5b934750f4cadf7884ef5e42
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
lib/psci/psci_common.c
lib/psci/psci_on.c

index ebeb10be990952d1e79a58ee460c4a50eccd01d8..c89347659fd6ef7aabd41451c8e4785ce421489d 100644 (file)
@@ -829,8 +829,11 @@ void psci_release_pwr_domain_locks(unsigned int end_pwrlvl,
  ******************************************************************************/
 int psci_validate_mpidr(u_register_t mpidr)
 {
-       if (plat_core_pos_by_mpidr(mpidr) < 0)
+       int pos = plat_core_pos_by_mpidr(mpidr);
+
+       if ((pos < 0) || ((unsigned int)pos >= PLATFORM_CORE_COUNT)) {
                return PSCI_E_INVALID_PARAMS;
+       }
 
        return PSCI_E_SUCCESS;
 }
index 6c6b23c5a8d4b02f097db748d00aab562351767c..76eb50ce5bc19d88ca5b7a44f6e8da3a7f3e4d6d 100644 (file)
@@ -65,13 +65,10 @@ int psci_cpu_on_start(u_register_t target_cpu,
        unsigned int target_idx;
 
        /* Calling function must supply valid input arguments */
+       assert(ret >= 0);
+       assert((unsigned int)ret < PLATFORM_CORE_COUNT);
        assert(ep != NULL);
 
-       if ((ret < 0) || (ret >= (int)PLATFORM_CORE_COUNT)) {
-               ERROR("Unexpected core index.\n");
-               panic();
-       }
-
        target_idx = (unsigned int)ret;
 
        /*