summaryrefslogtreecommitdiff
path: root/plat/nvidia/tegra/common/aarch64/tegra_helpers.S
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2023-04-27 13:46:41 +0100
committerAndre Przywara <andre.przywara@arm.com>2023-05-03 17:00:31 +0100
commit8a6d0d262ae03db0a0bedd047a2df6f95e8823f6 (patch)
treeaf8aaa9515ce7858e9668e47bf2cf9e6b2971bd0 /plat/nvidia/tegra/common/aarch64/tegra_helpers.S
parent48a65ec31aa7b5c28f2b0e8d3441bca6f264ee2e (diff)
downloadarm-trusted-firmware-8a6d0d262ae03db0a0bedd047a2df6f95e8823f6.tar.gz
fix(psci): do not panic on illegal MPIDR
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>
Diffstat (limited to 'plat/nvidia/tegra/common/aarch64/tegra_helpers.S')
0 files changed, 0 insertions, 0 deletions