2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-02-26 06:59:48 +00:00
|
|
|
#include <stdatomic.h>
|
2018-02-17 23:48:34 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "utils.h"
|
2018-02-25 02:34:15 +00:00
|
|
|
#include "memory_map.h"
|
|
|
|
|
2018-02-19 08:41:19 +00:00
|
|
|
#include "configitem.h"
|
2018-02-18 02:50:39 +00:00
|
|
|
#include "cpu_context.h"
|
2018-03-02 22:32:50 +00:00
|
|
|
#include "synchronization.h"
|
2018-02-23 13:41:26 +00:00
|
|
|
#include "masterkey.h"
|
2018-02-23 09:12:38 +00:00
|
|
|
#include "mc.h"
|
2018-02-24 16:13:42 +00:00
|
|
|
#include "memory_map.h"
|
2018-02-23 13:41:26 +00:00
|
|
|
#include "pmc.h"
|
|
|
|
#include "randomcache.h"
|
|
|
|
#include "sealedkeys.h"
|
2018-02-17 23:48:34 +00:00
|
|
|
#include "smc_api.h"
|
2018-02-18 00:34:31 +00:00
|
|
|
#include "smc_user.h"
|
2019-01-20 01:31:35 +00:00
|
|
|
#include "smc_ams.h"
|
2018-02-18 00:00:53 +00:00
|
|
|
#include "se.h"
|
2018-02-20 04:18:53 +00:00
|
|
|
#include "userpage.h"
|
2018-02-20 05:47:11 +00:00
|
|
|
#include "titlekey.h"
|
2018-12-17 19:30:59 +00:00
|
|
|
#include "sc7.h"
|
2018-03-25 22:05:08 +01:00
|
|
|
#include "exocfg.h"
|
2018-02-17 23:48:34 +00:00
|
|
|
|
|
|
|
#define SMC_USER_HANDLERS 0x13
|
|
|
|
#define SMC_PRIV_HANDLERS 0x9
|
|
|
|
|
2019-01-20 01:31:35 +00:00
|
|
|
#define SMC_AMS_HANDLERS 0x2
|
|
|
|
|
2018-06-01 07:46:05 +01:00
|
|
|
#define DEBUG_LOG_SMCS 0
|
2018-08-21 03:31:15 +01:00
|
|
|
#define DEBUG_PANIC_ON_FAILURE 0
|
2018-06-01 07:46:05 +01:00
|
|
|
|
2018-02-17 23:48:34 +00:00
|
|
|
/* User SMC prototypes */
|
2018-11-30 11:10:27 +00:00
|
|
|
uint32_t smc_set_config_user(smc_args_t *args);
|
|
|
|
uint32_t smc_get_config_user(smc_args_t *args);
|
2018-02-17 23:48:34 +00:00
|
|
|
uint32_t smc_check_status(smc_args_t *args);
|
|
|
|
uint32_t smc_get_result(smc_args_t *args);
|
|
|
|
uint32_t smc_exp_mod(smc_args_t *args);
|
|
|
|
uint32_t smc_get_random_bytes_for_user(smc_args_t *args);
|
|
|
|
uint32_t smc_generate_aes_kek(smc_args_t *args);
|
|
|
|
uint32_t smc_load_aes_key(smc_args_t *args);
|
|
|
|
uint32_t smc_crypt_aes(smc_args_t *args);
|
|
|
|
uint32_t smc_generate_specific_aes_key(smc_args_t *args);
|
|
|
|
uint32_t smc_compute_cmac(smc_args_t *args);
|
|
|
|
uint32_t smc_load_rsa_oaep_key(smc_args_t *args);
|
2018-02-21 02:47:58 +00:00
|
|
|
uint32_t smc_decrypt_rsa_private_key(smc_args_t *args);
|
|
|
|
uint32_t smc_load_secure_exp_mod_key(smc_args_t *args);
|
|
|
|
uint32_t smc_secure_exp_mod(smc_args_t *args);
|
|
|
|
uint32_t smc_unwrap_rsa_oaep_wrapped_titlekey(smc_args_t *args);
|
2018-02-17 23:48:34 +00:00
|
|
|
uint32_t smc_load_titlekey(smc_args_t *args);
|
|
|
|
uint32_t smc_unwrap_aes_wrapped_titlekey(smc_args_t *args);
|
|
|
|
|
2018-03-25 22:05:08 +01:00
|
|
|
/* 5.x SMC prototypes. */
|
|
|
|
uint32_t smc_encrypt_rsa_key_for_import(smc_args_t *args);
|
|
|
|
uint32_t smc_decrypt_or_import_rsa_key(smc_args_t *args);
|
|
|
|
|
2018-02-17 23:48:34 +00:00
|
|
|
/* Privileged SMC prototypes */
|
|
|
|
uint32_t smc_cpu_suspend(smc_args_t *args);
|
|
|
|
uint32_t smc_cpu_off(smc_args_t *args);
|
|
|
|
uint32_t smc_cpu_on(smc_args_t *args);
|
2018-11-30 11:10:27 +00:00
|
|
|
uint32_t smc_get_config_priv(smc_args_t *args);
|
2018-02-17 23:48:34 +00:00
|
|
|
uint32_t smc_get_random_bytes_for_priv(smc_args_t *args);
|
|
|
|
uint32_t smc_panic(smc_args_t *args);
|
|
|
|
uint32_t smc_configure_carveout(smc_args_t *args);
|
|
|
|
uint32_t smc_read_write_register(smc_args_t *args);
|
|
|
|
|
2019-01-20 01:31:35 +00:00
|
|
|
/* Atmosphere SMC prototypes */
|
|
|
|
uint32_t smc_ams_iram_copy(smc_args_t *args);
|
|
|
|
|
2018-02-17 23:48:34 +00:00
|
|
|
typedef struct {
|
|
|
|
uint32_t id;
|
|
|
|
uint32_t (*handler)(smc_args_t *args);
|
|
|
|
} smc_table_entry_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
smc_table_entry_t *handlers;
|
|
|
|
uint32_t num_handlers;
|
|
|
|
} smc_table_t;
|
|
|
|
|
2018-02-26 08:42:21 +00:00
|
|
|
static smc_table_entry_t g_smc_user_table[SMC_USER_HANDLERS] = {
|
2018-02-17 23:48:34 +00:00
|
|
|
{0, NULL},
|
2018-11-30 11:10:27 +00:00
|
|
|
{0xC3000401, smc_set_config_user},
|
|
|
|
{0xC3000002, smc_get_config_user},
|
2018-02-17 23:48:34 +00:00
|
|
|
{0xC3000003, smc_check_status},
|
|
|
|
{0xC3000404, smc_get_result},
|
|
|
|
{0xC3000E05, smc_exp_mod},
|
|
|
|
{0xC3000006, smc_get_random_bytes_for_user},
|
|
|
|
{0xC3000007, smc_generate_aes_kek},
|
|
|
|
{0xC3000008, smc_load_aes_key},
|
|
|
|
{0xC3000009, smc_crypt_aes},
|
|
|
|
{0xC300000A, smc_generate_specific_aes_key},
|
|
|
|
{0xC300040B, smc_compute_cmac},
|
2018-02-21 02:47:58 +00:00
|
|
|
{0xC300100C, smc_load_rsa_oaep_key},
|
2018-02-17 23:48:34 +00:00
|
|
|
{0xC300100D, smc_decrypt_rsa_private_key},
|
2018-02-21 02:47:58 +00:00
|
|
|
{0xC300100E, smc_load_secure_exp_mod_key},
|
|
|
|
{0xC300060F, smc_secure_exp_mod},
|
|
|
|
{0xC3000610, smc_unwrap_rsa_oaep_wrapped_titlekey},
|
2018-02-17 23:48:34 +00:00
|
|
|
{0xC3000011, smc_load_titlekey},
|
|
|
|
{0xC3000012, smc_unwrap_aes_wrapped_titlekey}
|
|
|
|
};
|
|
|
|
|
2018-02-26 08:42:21 +00:00
|
|
|
static smc_table_entry_t g_smc_priv_table[SMC_PRIV_HANDLERS] = {
|
2018-02-17 23:48:34 +00:00
|
|
|
{0, NULL},
|
|
|
|
{0xC4000001, smc_cpu_suspend},
|
|
|
|
{0x84000002, smc_cpu_off},
|
|
|
|
{0xC4000003, smc_cpu_on},
|
2018-11-30 11:10:27 +00:00
|
|
|
{0xC3000004, smc_get_config_priv},
|
2018-02-17 23:48:34 +00:00
|
|
|
{0xC3000005, smc_get_random_bytes_for_priv},
|
|
|
|
{0xC3000006, smc_panic},
|
|
|
|
{0xC3000007, smc_configure_carveout},
|
|
|
|
{0xC3000008, smc_read_write_register}
|
|
|
|
};
|
|
|
|
|
2019-01-20 01:31:35 +00:00
|
|
|
/* This is a table used for atmosphere-specific SMCs. */
|
|
|
|
static smc_table_entry_t g_smc_ams_table[SMC_AMS_HANDLERS] = {
|
|
|
|
{0, NULL},
|
|
|
|
{0xF0000201, smc_ams_iram_copy},
|
|
|
|
};
|
|
|
|
|
|
|
|
static smc_table_t g_smc_tables[SMC_HANDLER_COUNT + 1] = {
|
2018-02-17 23:48:34 +00:00
|
|
|
{ /* SMC_HANDLER_USER */
|
|
|
|
g_smc_user_table,
|
|
|
|
SMC_USER_HANDLERS
|
|
|
|
},
|
|
|
|
{ /* SMC_HANDLER_PRIV */
|
|
|
|
g_smc_priv_table,
|
|
|
|
SMC_PRIV_HANDLERS
|
2019-01-20 01:31:35 +00:00
|
|
|
},
|
|
|
|
{ /* SMC_HANDLER_AMS */
|
|
|
|
g_smc_ams_table,
|
|
|
|
SMC_AMS_HANDLERS
|
2018-02-17 23:48:34 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-26 06:59:48 +00:00
|
|
|
static atomic_flag g_is_user_smc_in_progress = ATOMIC_FLAG_INIT;
|
|
|
|
static atomic_flag g_is_priv_smc_in_progress = ATOMIC_FLAG_INIT;
|
2018-02-24 14:20:45 +00:00
|
|
|
|
2018-02-27 01:41:31 +00:00
|
|
|
/* Global for smc_configure_carveout. */
|
|
|
|
static bool g_configured_carveouts[2] = {false, false};
|
|
|
|
|
2018-08-17 02:45:38 +01:00
|
|
|
static bool g_has_suspended = false;
|
|
|
|
void set_suspend_for_debug(void) {
|
|
|
|
g_has_suspended = true;
|
|
|
|
}
|
|
|
|
|
2018-03-25 22:05:08 +01:00
|
|
|
void set_version_specific_smcs(void) {
|
|
|
|
switch (exosphere_get_target_firmware()) {
|
2018-12-17 20:39:35 +00:00
|
|
|
case ATMOSPHERE_TARGET_FIRMWARE_100:
|
2018-03-25 22:05:08 +01:00
|
|
|
/* 1.0.0 doesn't have ConfigureCarveout or ReadWriteRegister. */
|
|
|
|
g_smc_priv_table[7].handler = NULL;
|
|
|
|
g_smc_priv_table[8].handler = NULL;
|
|
|
|
/* 1.0.0 doesn't have UnwrapAesWrappedTitlekey. */
|
|
|
|
g_smc_user_table[0x12].handler = NULL;
|
|
|
|
break;
|
2018-12-17 20:39:35 +00:00
|
|
|
case ATMOSPHERE_TARGET_FIRMWARE_200:
|
|
|
|
case ATMOSPHERE_TARGET_FIRMWARE_300:
|
|
|
|
case ATMOSPHERE_TARGET_FIRMWARE_400:
|
2018-03-25 22:05:08 +01:00
|
|
|
/* Do nothing. */
|
|
|
|
break;
|
2018-12-17 20:39:35 +00:00
|
|
|
case ATMOSPHERE_TARGET_FIRMWARE_500:
|
|
|
|
case ATMOSPHERE_TARGET_FIRMWARE_600:
|
|
|
|
case ATMOSPHERE_TARGET_FIRMWARE_620:
|
2019-01-31 06:37:26 +00:00
|
|
|
case ATMOSPHERE_TARGET_FIRMWARE_700:
|
2018-03-25 22:05:08 +01:00
|
|
|
/* No more LoadSecureExpModKey. */
|
|
|
|
g_smc_user_table[0xE].handler = NULL;
|
|
|
|
g_smc_user_table[0xC].id = 0xC300D60C;
|
|
|
|
g_smc_user_table[0xC].handler = smc_encrypt_rsa_key_for_import;
|
|
|
|
g_smc_user_table[0xD].handler = smc_decrypt_or_import_rsa_key;
|
|
|
|
break;
|
|
|
|
default:
|
2018-06-01 07:46:05 +01:00
|
|
|
panic_predefined(0xA);
|
2018-03-25 22:05:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-27 01:41:31 +00:00
|
|
|
|
2018-02-25 02:34:15 +00:00
|
|
|
uintptr_t get_smc_core012_stack_address(void) {
|
2018-02-26 21:09:35 +00:00
|
|
|
return TZRAM_GET_SEGMENT_ADDRESS(TZRAM_SEGMENT_ID_CORE012_STACK) + 0x1000;
|
2018-02-25 02:34:15 +00:00
|
|
|
}
|
|
|
|
|
2018-02-25 19:00:50 +00:00
|
|
|
uintptr_t get_exception_entry_stack_address(unsigned int core_id) {
|
2018-02-25 02:34:15 +00:00
|
|
|
/* For core3, this is also the smc stack */
|
|
|
|
if (core_id == 3) {
|
2018-02-26 21:09:35 +00:00
|
|
|
return TZRAM_GET_SEGMENT_ADDRESS(TZRAM_SEGMENT_ID_CORE3_STACK) + 0x1000;
|
2018-02-25 02:34:15 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-02-26 21:09:35 +00:00
|
|
|
return TZRAM_GET_SEGMENT_ADDRESS(TZRAM_SEGEMENT_ID_SECMON_EVT) + 0x80 * (core_id + 1);
|
2018-02-25 02:34:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 20:07:09 +00:00
|
|
|
bool try_set_user_smc_in_progress(void) {
|
|
|
|
return lock_try_acquire(&g_is_user_smc_in_progress);
|
|
|
|
}
|
2018-03-04 20:57:25 +00:00
|
|
|
void set_user_smc_in_progress(void) {
|
|
|
|
lock_acquire(&g_is_user_smc_in_progress);
|
|
|
|
}
|
|
|
|
void clear_user_smc_in_progress(void) {
|
|
|
|
lock_release(&g_is_user_smc_in_progress);
|
|
|
|
}
|
|
|
|
|
2018-02-24 14:20:45 +00:00
|
|
|
/* Privileged SMC lock must be available to exceptions.s. */
|
|
|
|
void set_priv_smc_in_progress(void) {
|
|
|
|
lock_acquire(&g_is_priv_smc_in_progress);
|
|
|
|
}
|
|
|
|
void clear_priv_smc_in_progress(void) {
|
|
|
|
lock_release(&g_is_priv_smc_in_progress);
|
|
|
|
}
|
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
uint32_t (*g_smc_callback)(void *, uint64_t) = NULL;
|
2018-02-18 00:00:53 +00:00
|
|
|
uint64_t g_smc_callback_key = 0;
|
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
uint64_t try_set_smc_callback(uint32_t (*callback)(void *, uint64_t)) {
|
2018-02-18 00:00:53 +00:00
|
|
|
uint64_t key;
|
|
|
|
if (g_smc_callback_key) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-20 07:41:27 +00:00
|
|
|
se_generate_random(KEYSLOT_SWITCH_RNGKEY, &key, sizeof(uint64_t));
|
2018-02-18 00:00:53 +00:00
|
|
|
g_smc_callback_key = key;
|
|
|
|
g_smc_callback = callback;
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear_smc_callback(uint64_t key) {
|
|
|
|
if (g_smc_callback_key == key) {
|
|
|
|
g_smc_callback_key = 0;
|
|
|
|
}
|
|
|
|
}
|
2018-02-17 23:48:34 +00:00
|
|
|
|
2018-06-01 07:46:05 +01:00
|
|
|
_Atomic uint64_t num_smcs_called = 0;
|
|
|
|
|
2018-02-17 23:48:34 +00:00
|
|
|
void call_smc_handler(uint32_t handler_id, smc_args_t *args) {
|
2019-01-20 01:31:35 +00:00
|
|
|
unsigned char smc_id, call_range;
|
2018-02-17 23:48:34 +00:00
|
|
|
unsigned int result;
|
|
|
|
unsigned int (*smc_handler)(smc_args_t *args);
|
2018-08-17 02:45:38 +01:00
|
|
|
|
2018-02-17 23:48:34 +00:00
|
|
|
/* Validate top-level handler. */
|
2019-01-20 01:31:35 +00:00
|
|
|
if (handler_id >= SMC_HANDLER_COUNT) {
|
2018-02-24 14:20:45 +00:00
|
|
|
generic_panic();
|
2018-02-17 23:48:34 +00:00
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2019-01-20 01:31:35 +00:00
|
|
|
/* If user-handler, detect if talking to Atmosphere/validate calling core. */
|
|
|
|
if (handler_id == SMC_HANDLER_USER) {
|
|
|
|
if ((call_range = (unsigned char)((args->X[0] >> 24) & 0x3F)) == SMC_CALL_RANGE_TRUSTED_APP) {
|
|
|
|
/* Nintendo's SMCs are all OEM-specific. */
|
|
|
|
/* Pending a reason not to, we will treat Trusted Application SMCs as intended to talk to Atmosphere. */
|
|
|
|
handler_id = SMC_HANDLER_AMS;
|
|
|
|
} else if (get_core_id() != 3) {
|
|
|
|
/* USER SMCs must be called via svcCallSecureMonitor on core 3 (where spl runs) */
|
|
|
|
generic_panic();
|
|
|
|
}
|
2018-02-19 08:41:19 +00:00
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-17 23:48:34 +00:00
|
|
|
/* Validate sub-handler index */
|
|
|
|
if ((smc_id = (unsigned char)args->X[0]) >= g_smc_tables[handler_id].num_handlers) {
|
2018-02-24 14:20:45 +00:00
|
|
|
generic_panic();
|
2018-02-17 23:48:34 +00:00
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-17 23:48:34 +00:00
|
|
|
/* Validate sub-handler */
|
|
|
|
if (g_smc_tables[handler_id].handlers[smc_id].id != args->X[0]) {
|
2018-02-24 14:20:45 +00:00
|
|
|
generic_panic();
|
2018-02-17 23:48:34 +00:00
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-17 23:48:34 +00:00
|
|
|
/* Validate handler. */
|
|
|
|
if ((smc_handler = g_smc_tables[handler_id].handlers[smc_id].handler) == NULL) {
|
2018-02-24 14:20:45 +00:00
|
|
|
generic_panic();
|
2018-02-17 23:48:34 +00:00
|
|
|
}
|
2018-06-02 05:20:04 +01:00
|
|
|
|
|
|
|
bool is_aes_kek = handler_id == SMC_HANDLER_USER && args->X[0] == 0xC3000007;
|
2018-06-01 07:46:05 +01:00
|
|
|
|
2018-06-02 05:20:04 +01:00
|
|
|
#if DEBUG_LOG_SMCS
|
|
|
|
uint64_t num;
|
2018-06-01 07:46:05 +01:00
|
|
|
if (handler_id == SMC_HANDLER_USER) {
|
2018-06-02 05:20:04 +01:00
|
|
|
num = atomic_fetch_add(&num_smcs_called, 1);
|
|
|
|
*(volatile smc_args_t *)(get_iram_address_for_debug() + 0x100 + ((0x80 * num) & 0x3FFF)) = *args;
|
2018-06-01 07:46:05 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-02-17 23:48:34 +00:00
|
|
|
/* Call function. */
|
|
|
|
args->X[0] = smc_handler(args);
|
2018-06-02 05:20:04 +01:00
|
|
|
#if DEBUG_LOG_SMCS
|
|
|
|
if (handler_id == SMC_HANDLER_USER) {
|
|
|
|
*(volatile smc_args_t *)(get_iram_address_for_debug() + 0x100 + ((0x80 * num + 0x40) & 0x3FFF)) = *args;
|
|
|
|
/*if (num >= 0x69) {
|
|
|
|
panic(PANIC_REBOOT);
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-08-21 03:31:15 +01:00
|
|
|
#if DEBUG_PANIC_ON_FAILURE
|
2018-12-17 20:39:35 +00:00
|
|
|
if (args->X[0] && (!is_aes_kek || args->X[3] <= ATMOSPHERE_TARGET_FIRMWARE_DEFAULT_FOR_DEBUG))
|
2018-03-09 03:48:35 +00:00
|
|
|
{
|
|
|
|
MAKE_REG32(get_iram_address_for_debug() + 0x4FF0) = handler_id;
|
|
|
|
MAKE_REG32(get_iram_address_for_debug() + 0x4FF4) = smc_id;
|
|
|
|
MAKE_REG32(get_iram_address_for_debug() + 0x4FF8) = get_core_id();
|
|
|
|
*(volatile smc_args_t *)(get_iram_address_for_debug() + 0x4F00) = *args;
|
|
|
|
panic(PANIC_REBOOT);
|
|
|
|
}
|
2018-08-21 03:31:15 +01:00
|
|
|
#else
|
|
|
|
(void)(is_aes_kek);
|
|
|
|
#endif
|
2018-02-25 19:00:50 +00:00
|
|
|
(void)result; /* FIXME: result unused */
|
2018-02-17 23:48:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t smc_wrapper_sync(smc_args_t *args, uint32_t (*handler)(smc_args_t *)) {
|
|
|
|
uint32_t result;
|
2018-03-05 20:07:09 +00:00
|
|
|
if (!try_set_user_smc_in_progress()) {
|
2018-02-17 23:48:34 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
result = handler(args);
|
2018-03-04 20:57:25 +00:00
|
|
|
clear_user_smc_in_progress();
|
2018-02-17 23:48:34 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
uint32_t smc_wrapper_async(smc_args_t *args, uint32_t (*handler)(smc_args_t *), uint32_t (*callback)(void *, uint64_t)) {
|
2018-02-18 00:00:53 +00:00
|
|
|
uint32_t result;
|
|
|
|
uint64_t key;
|
2018-03-05 20:07:09 +00:00
|
|
|
if (!try_set_user_smc_in_progress()) {
|
2018-02-18 00:00:53 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
if ((key = try_set_smc_callback(callback)) != 0) {
|
|
|
|
result = handler(args);
|
|
|
|
if (result == 0) {
|
|
|
|
/* Pass the status check key back to userland. */
|
|
|
|
args->X[1] = key;
|
2018-02-24 14:20:45 +00:00
|
|
|
/* Early return, leaving g_is_user_smc_in_progress locked */
|
2018-02-19 21:26:37 +00:00
|
|
|
return result;
|
2018-02-18 00:00:53 +00:00
|
|
|
} else {
|
|
|
|
/* No status to check. */
|
|
|
|
clear_smc_callback(key);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* smcCheckStatus needs to be called. */
|
|
|
|
result = 3;
|
|
|
|
}
|
2018-03-04 20:57:25 +00:00
|
|
|
clear_user_smc_in_progress();
|
2018-02-18 00:00:53 +00:00
|
|
|
return result;
|
2018-02-18 00:34:31 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 11:10:27 +00:00
|
|
|
uint32_t smc_set_config_user(smc_args_t *args) {
|
2018-02-19 08:41:19 +00:00
|
|
|
/* Actual value presumed in X3 on hardware. */
|
2018-11-30 11:10:27 +00:00
|
|
|
return configitem_set(false, (ConfigItem)args->X[1], args->X[3]);
|
2018-02-19 08:41:19 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 11:10:27 +00:00
|
|
|
uint32_t smc_get_config_user(smc_args_t *args) {
|
2018-02-19 08:41:19 +00:00
|
|
|
uint64_t out_item = 0;
|
|
|
|
uint32_t result;
|
2018-11-30 11:10:27 +00:00
|
|
|
result = configitem_get(false, (ConfigItem)args->X[1], &out_item);
|
2018-02-19 08:41:19 +00:00
|
|
|
args->X[1] = out_item;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
uint32_t smc_check_status(smc_args_t *args) {
|
|
|
|
if (g_smc_callback_key == 0) {
|
|
|
|
return 4;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
if (args->X[1] != g_smc_callback_key) {
|
|
|
|
return 5;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
args->X[1] = g_smc_callback(NULL, 0);
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
g_smc_callback_key = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-23 13:41:26 +00:00
|
|
|
uint32_t smc_get_result(smc_args_t *args) {
|
2018-02-18 00:34:31 +00:00
|
|
|
uint32_t status;
|
|
|
|
unsigned char result_buf[0x400];
|
2018-02-20 04:18:53 +00:00
|
|
|
upage_ref_t page_ref;
|
2018-02-25 19:00:50 +00:00
|
|
|
|
2018-02-20 04:18:53 +00:00
|
|
|
void *user_address = (void *)args->X[2];
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
if (g_smc_callback_key == 0) {
|
|
|
|
return 4;
|
|
|
|
}
|
2018-02-25 19:00:50 +00:00
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
if (args->X[1] != g_smc_callback_key) {
|
|
|
|
return 5;
|
|
|
|
}
|
2018-02-25 19:00:50 +00:00
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
/* Check result size */
|
|
|
|
if (args->X[3] > 0x400) {
|
|
|
|
return 2;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
args->X[1] = g_smc_callback(result_buf, args->X[3]);
|
|
|
|
g_smc_callback_key = 0;
|
2018-02-25 19:00:50 +00:00
|
|
|
|
2018-02-20 04:18:53 +00:00
|
|
|
/* Initialize page reference. */
|
|
|
|
if (upage_init(&page_ref, user_address) == 0) {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy result output back to user. */
|
|
|
|
if (secure_copy_to_user(&page_ref, user_address, result_buf, (size_t)args->X[3]) == 0) {
|
|
|
|
return 2;
|
|
|
|
}
|
2018-02-25 19:00:50 +00:00
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
return 0;
|
2018-02-25 19:00:50 +00:00
|
|
|
(void)status; /* FIXME: status unused */
|
2018-02-18 00:34:31 +00:00
|
|
|
}
|
|
|
|
|
2018-02-20 04:56:12 +00:00
|
|
|
uint32_t smc_exp_mod_get_result(void *buf, uint64_t size) {
|
|
|
|
if (get_exp_mod_done() != 1) {
|
|
|
|
return 3;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-20 04:56:12 +00:00
|
|
|
if (size != 0x100) {
|
|
|
|
return 2;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-20 04:56:12 +00:00
|
|
|
se_get_exp_mod_output(buf, 0x100);
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-20 04:56:12 +00:00
|
|
|
/* smc_exp_mod is done now. */
|
2018-03-04 20:57:25 +00:00
|
|
|
clear_user_smc_in_progress();
|
2018-02-20 04:56:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t smc_exp_mod(smc_args_t *args) {
|
|
|
|
return smc_wrapper_async(args, user_exp_mod, smc_exp_mod_get_result);
|
|
|
|
}
|
|
|
|
|
2018-02-20 11:19:35 +00:00
|
|
|
uint32_t smc_get_random_bytes_for_user(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_get_random_bytes);
|
|
|
|
}
|
|
|
|
|
2018-02-20 09:02:01 +00:00
|
|
|
uint32_t smc_generate_aes_kek(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_generate_aes_kek);
|
|
|
|
}
|
|
|
|
|
2018-02-18 00:34:31 +00:00
|
|
|
uint32_t smc_load_aes_key(smc_args_t *args) {
|
2018-02-18 02:50:39 +00:00
|
|
|
return smc_wrapper_sync(args, user_load_aes_key);
|
|
|
|
}
|
|
|
|
|
2018-02-19 21:26:37 +00:00
|
|
|
uint32_t smc_crypt_aes_status_check(void *buf, uint64_t size) {
|
|
|
|
/* Buf and size are unused. */
|
2018-02-20 04:56:12 +00:00
|
|
|
if (get_crypt_aes_done() != 1) {
|
2018-02-19 21:26:37 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
/* smc_crypt_aes is done now. */
|
2018-03-04 20:57:25 +00:00
|
|
|
clear_user_smc_in_progress();
|
2018-02-19 21:26:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t smc_crypt_aes(smc_args_t *args) {
|
|
|
|
return smc_wrapper_async(args, user_crypt_aes, smc_crypt_aes_status_check);
|
|
|
|
}
|
|
|
|
|
2018-02-20 21:25:57 +00:00
|
|
|
uint32_t smc_generate_specific_aes_key(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_generate_specific_aes_key);
|
|
|
|
}
|
|
|
|
|
2018-02-20 04:28:37 +00:00
|
|
|
uint32_t smc_compute_cmac(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_compute_cmac);
|
|
|
|
}
|
|
|
|
|
2018-02-21 02:47:58 +00:00
|
|
|
uint32_t smc_load_rsa_oaep_key(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_load_rsa_oaep_key);
|
2018-02-20 21:25:57 +00:00
|
|
|
}
|
|
|
|
|
2018-02-20 20:56:41 +00:00
|
|
|
uint32_t smc_decrypt_rsa_private_key(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_decrypt_rsa_private_key);
|
|
|
|
}
|
|
|
|
|
2018-02-21 02:47:58 +00:00
|
|
|
uint32_t smc_load_secure_exp_mod_key(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_load_secure_exp_mod_key);
|
2018-02-20 21:25:57 +00:00
|
|
|
}
|
|
|
|
|
2018-02-21 02:47:58 +00:00
|
|
|
uint32_t smc_secure_exp_mod(smc_args_t *args) {
|
|
|
|
return smc_wrapper_async(args, user_secure_exp_mod, smc_exp_mod_get_result);
|
2018-02-20 05:09:53 +00:00
|
|
|
}
|
|
|
|
|
2018-02-21 02:47:58 +00:00
|
|
|
uint32_t smc_unwrap_rsa_oaep_wrapped_titlekey_get_result(void *buf, uint64_t size) {
|
2018-02-20 05:47:11 +00:00
|
|
|
uint64_t *p_sealed_key = (uint64_t *)buf;
|
|
|
|
uint8_t rsa_wrapped_titlekey[0x100];
|
|
|
|
uint8_t aes_wrapped_titlekey[0x10];
|
|
|
|
uint8_t titlekey[0x10];
|
|
|
|
uint64_t sealed_titlekey[2];
|
|
|
|
if (get_exp_mod_done() != 1) {
|
|
|
|
return 3;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-20 05:47:11 +00:00
|
|
|
if (size != 0x10) {
|
|
|
|
return 2;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-23 13:41:26 +00:00
|
|
|
se_get_exp_mod_output(rsa_wrapped_titlekey, 0x100);
|
2018-02-21 02:47:58 +00:00
|
|
|
if (tkey_rsa_oaep_unwrap(aes_wrapped_titlekey, 0x10, rsa_wrapped_titlekey, 0x100) != 0x10) {
|
|
|
|
/* Failed to extract RSA OAEP wrapped key. */
|
2018-03-04 20:57:25 +00:00
|
|
|
clear_user_smc_in_progress();
|
2018-02-20 05:47:11 +00:00
|
|
|
return 2;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-20 05:47:11 +00:00
|
|
|
tkey_aes_unwrap(titlekey, 0x10, aes_wrapped_titlekey, 0x10);
|
2018-02-20 09:02:01 +00:00
|
|
|
seal_titlekey(sealed_titlekey, 0x10, titlekey, 0x10);
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-20 05:47:11 +00:00
|
|
|
p_sealed_key[0] = sealed_titlekey[0];
|
|
|
|
p_sealed_key[1] = sealed_titlekey[1];
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-21 02:47:58 +00:00
|
|
|
/* smc_unwrap_rsa_oaep_wrapped_titlekey is done now. */
|
2018-03-04 20:57:25 +00:00
|
|
|
clear_user_smc_in_progress();
|
2018-02-20 05:47:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-02-19 21:26:37 +00:00
|
|
|
|
2018-02-21 02:47:58 +00:00
|
|
|
uint32_t smc_unwrap_rsa_oaep_wrapped_titlekey(smc_args_t *args) {
|
|
|
|
return smc_wrapper_async(args, user_unwrap_rsa_oaep_wrapped_titlekey, smc_unwrap_rsa_oaep_wrapped_titlekey_get_result);
|
2018-02-20 05:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t smc_load_titlekey(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_load_titlekey);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t smc_unwrap_aes_wrapped_titlekey(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_unwrap_aes_wrapped_titlekey);
|
|
|
|
}
|
2018-02-18 02:50:39 +00:00
|
|
|
|
2018-03-25 22:05:08 +01:00
|
|
|
uint32_t smc_encrypt_rsa_key_for_import(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_encrypt_rsa_key_for_import);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t smc_decrypt_or_import_rsa_key(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, user_decrypt_or_import_rsa_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-18 02:50:39 +00:00
|
|
|
uint32_t smc_cpu_on(smc_args_t *args) {
|
|
|
|
return cpu_on((uint32_t)args->X[1], args->X[2], args->X[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t smc_cpu_off(smc_args_t *args) {
|
|
|
|
return cpu_off();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wrapper for cpu_suspend */
|
|
|
|
uint32_t cpu_suspend_wrapper(smc_args_t *args) {
|
|
|
|
return cpu_suspend(args->X[1], args->X[2], args->X[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t smc_cpu_suspend(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, cpu_suspend_wrapper);
|
2018-02-20 11:19:35 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 11:10:27 +00:00
|
|
|
uint32_t smc_get_config_priv(smc_args_t *args) {
|
|
|
|
uint64_t out_item = 0;
|
|
|
|
uint32_t result;
|
|
|
|
result = configitem_get(true, (ConfigItem)args->X[1], &out_item);
|
|
|
|
args->X[1] = out_item;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-02-20 11:19:35 +00:00
|
|
|
uint32_t smc_get_random_bytes_for_priv(smc_args_t *args) {
|
|
|
|
/* This is an interesting SMC. */
|
|
|
|
/* The kernel must NEVER be unable to get random bytes, if it needs them */
|
|
|
|
/* As such: */
|
2018-02-23 03:58:39 +00:00
|
|
|
|
2018-02-20 11:19:35 +00:00
|
|
|
uint32_t result;
|
2018-02-23 03:58:39 +00:00
|
|
|
|
2018-03-05 20:07:09 +00:00
|
|
|
if (!try_set_user_smc_in_progress()) {
|
2018-02-20 11:19:35 +00:00
|
|
|
if (args->X[1] > 0x38) {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
/* Retrieve bytes from the cache. */
|
|
|
|
size_t num_bytes = (size_t)args->X[1];
|
|
|
|
randomcache_getbytes(&args->X[1], num_bytes);
|
|
|
|
result = 0;
|
2018-02-23 03:58:39 +00:00
|
|
|
} else {
|
|
|
|
/* If the kernel isn't denied service by a usermode SMC, generate fresh random bytes. */
|
|
|
|
result = user_get_random_bytes(args);
|
|
|
|
/* Also, refill our cache while we have the chance in case we get denied later. */
|
|
|
|
randomcache_refill();
|
2018-03-04 20:57:25 +00:00
|
|
|
clear_user_smc_in_progress();
|
2018-02-20 11:19:35 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2018-02-23 08:20:36 +00:00
|
|
|
|
|
|
|
uint32_t smc_read_write_register(smc_args_t *args) {
|
|
|
|
uint64_t address = args->X[1];
|
|
|
|
uint32_t mask = (uint32_t)(args->X[2]);
|
|
|
|
uint32_t value = (uint32_t)(args->X[3]);
|
|
|
|
volatile uint32_t *p_mmio = NULL;
|
|
|
|
/* Address must be aligned. */
|
|
|
|
if (address & 3) {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
/* Check for PMC registers. */
|
2018-02-25 19:00:50 +00:00
|
|
|
if (0x7000E400 <= address && address <= 0x7000EFFF) {
|
|
|
|
const uint8_t pmc_whitelist[0x28] = {
|
|
|
|
0xB9, 0xF9, 0x07, 0x00, 0x00, 0x00, 0x80, 0x03,
|
|
|
|
0x00, 0x00, 0x00, 0x17, 0x00, 0xC4, 0x07, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x20, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x40, 0x00
|
|
|
|
};
|
2018-02-23 08:20:36 +00:00
|
|
|
/* Offset = Address - PMC_BASE */
|
2018-02-25 19:00:50 +00:00
|
|
|
uint32_t offset = (uint32_t)(address - 0x7000E400);
|
2018-02-23 08:20:36 +00:00
|
|
|
uint32_t wl_ind = (offset >> 5);
|
|
|
|
/* If address is whitelisted, allow write. */
|
|
|
|
if (wl_ind < sizeof(pmc_whitelist) && (pmc_whitelist[wl_ind] & (1 << ((offset >> 2) & 0x7)))) {
|
|
|
|
p_mmio = (volatile uint32_t *)(PMC_BASE + offset);
|
|
|
|
} else {
|
|
|
|
return 2;
|
|
|
|
}
|
2018-12-17 20:39:35 +00:00
|
|
|
} else if (exosphere_get_target_firmware() >= ATMOSPHERE_TARGET_FIRMWARE_400 && MMIO_GET_DEVICE_PA(MMIO_DEVID_MC) <= address &&
|
2018-02-26 21:09:35 +00:00
|
|
|
address < MMIO_GET_DEVICE_PA(MMIO_DEVID_MC) + MMIO_GET_DEVICE_SIZE(MMIO_DEVID_MC)) {
|
2018-02-23 08:20:36 +00:00
|
|
|
/* Memory Controller RW supported only on 4.0.0+ */
|
2018-02-26 21:09:35 +00:00
|
|
|
const uint8_t mc_whitelist[0x68] = {
|
2018-02-25 19:00:50 +00:00
|
|
|
0x9F, 0x31, 0x30, 0x00, 0xF0, 0xFF, 0xF7, 0x01,
|
|
|
|
0xCD, 0xFE, 0xC0, 0xFE, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x03, 0x40, 0x73, 0x3E, 0x2F, 0x00, 0x00, 0x6E,
|
|
|
|
0x30, 0x05, 0x06, 0xB0, 0x71, 0xC8, 0x43, 0x04,
|
|
|
|
0x80, 0x1F, 0x08, 0x80, 0x03, 0x00, 0x0E, 0x00,
|
|
|
|
0x08, 0x00, 0xE0, 0x00, 0x0E, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x30, 0xF0, 0x03, 0x03, 0x30,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x31, 0x00, 0x40, 0x00, 0x00,
|
|
|
|
0x00, 0x03, 0x00, 0x00, 0xE4, 0xFF, 0xFF, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0xFE, 0x0F,
|
|
|
|
0x01, 0x00, 0x80, 0x00, 0x00, 0x08, 0x00, 0x00
|
|
|
|
};
|
|
|
|
uint32_t offset = (uint32_t)(address - 0x70019000);
|
2018-02-23 08:20:36 +00:00
|
|
|
uint32_t wl_ind = (offset >> 5);
|
|
|
|
/* If address is whitelisted, allow write. */
|
|
|
|
if (wl_ind < sizeof(mc_whitelist) && (mc_whitelist[wl_ind] & (1 << ((offset >> 2) & 0x7)))) {
|
2018-02-26 21:09:35 +00:00
|
|
|
p_mmio = (volatile uint32_t *)(MMIO_GET_DEVICE_ADDRESS(MMIO_DEVID_MC) + offset);
|
2018-02-23 08:20:36 +00:00
|
|
|
} else {
|
|
|
|
/* These addresses are not allowed by the whitelist. */
|
|
|
|
/* They correspond to SMMU DISABLE for the BPMP, and for APB-DMA. */
|
|
|
|
/* However, smcReadWriteRegister returns 0 for these addresses despite not actually performing the write. */
|
|
|
|
/* This is "probably" to fuck with hackers who got access to smcReadWriteRegister and are trying to get */
|
|
|
|
/* control of the BPMP for jamais vu etc., since there's no other reason to return 0 despite failure. */
|
|
|
|
if (address == 0x7001923C || address == 0x70019298) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-23 08:20:36 +00:00
|
|
|
/* Perform actual write. */
|
|
|
|
if (p_mmio != NULL) {
|
|
|
|
uint32_t old_value;
|
|
|
|
/* Write whole value. */
|
|
|
|
if (mask == 0xFFFFFFFF) {
|
|
|
|
old_value = 0;
|
|
|
|
} else {
|
|
|
|
old_value = *p_mmio;
|
|
|
|
}
|
|
|
|
if (mask) {
|
|
|
|
*p_mmio = (old_value & ~mask) | (value & mask);
|
|
|
|
}
|
|
|
|
/* Return old value. */
|
|
|
|
args->X[1] = old_value;
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-23 08:20:36 +00:00
|
|
|
return 2;
|
|
|
|
}
|
2018-02-23 09:12:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
uint32_t smc_configure_carveout(smc_args_t *args) {
|
|
|
|
unsigned int carveout_id = (unsigned int)args->X[1];
|
|
|
|
uint64_t address = args->X[2];
|
|
|
|
uint64_t size = args->X[3];
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-23 09:12:38 +00:00
|
|
|
/* Ensure carveout isn't too big. */
|
|
|
|
if (size > KERNEL_CARVEOUT_SIZE_MAX) {
|
|
|
|
return 2;
|
|
|
|
}
|
2018-02-27 01:41:31 +00:00
|
|
|
|
|
|
|
/* Ensure validity of carveout index. */
|
|
|
|
if (carveout_id > 1) {
|
|
|
|
return 2;
|
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-23 09:12:38 +00:00
|
|
|
/* Configuration is one-shot, and cannot be done multiple times. */
|
2018-12-17 20:39:35 +00:00
|
|
|
if (exosphere_get_target_firmware() < ATMOSPHERE_TARGET_FIRMWARE_300) {
|
2018-08-21 03:31:15 +01:00
|
|
|
if (g_configured_carveouts[carveout_id]) {
|
|
|
|
return 2;
|
|
|
|
}
|
2018-02-23 09:12:38 +00:00
|
|
|
}
|
2018-02-26 21:09:35 +00:00
|
|
|
|
2018-02-23 09:12:38 +00:00
|
|
|
configure_kernel_carveout(carveout_id + 4, address, size);
|
2018-02-27 01:41:31 +00:00
|
|
|
g_configured_carveouts[carveout_id] = true;
|
2018-02-23 09:12:38 +00:00
|
|
|
return 0;
|
2018-02-24 16:13:42 +00:00
|
|
|
}
|
2018-02-25 19:00:50 +00:00
|
|
|
|
|
|
|
uint32_t smc_panic(smc_args_t *args) {
|
2018-02-28 03:43:07 +00:00
|
|
|
/* Swap RGB values from args. */
|
|
|
|
uint32_t color = ((args->X[1] & 0xF) << 8) | ((args->X[1] & 0xF0)) | ((args->X[1] & 0xF00) >> 8);
|
|
|
|
panic((color << 20) | 0x40);
|
2018-02-25 19:00:50 +00:00
|
|
|
}
|
2019-01-20 01:31:35 +00:00
|
|
|
|
|
|
|
uint32_t smc_ams_iram_copy(smc_args_t *args) {
|
|
|
|
return smc_wrapper_sync(args, ams_iram_copy);
|
|
|
|
}
|