2020-04-15 20:06:41 -04:00
/*
2020-07-03 05:31:22 -04:00
* services . c
2020-04-15 20:06:41 -04:00
*
2020-12-23 14:48:57 -03:00
* Copyright ( c ) 2020 - 2021 , DarkMatterCore < pabloacurielz @ gmail . com > .
2020-07-03 05:31:22 -04:00
*
* This file is part of nxdumptool ( https : //github.com/DarkMatterCore/nxdumptool).
*
* nxdumptool is free software ; you can redistribute it and / or modify it
2020-04-15 20:06:41 -04:00
* under the terms and conditions of the GNU General Public License ,
* version 2 , as published by the Free Software Foundation .
*
2020-07-03 05:31:22 -04:00
* nxdumptool is distributed in the hope it will be useful , but WITHOUT
2020-04-15 20:06:41 -04:00
* 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/>.
*/
2020-07-07 11:51:33 -04:00
# include "utils.h"
2020-04-15 16:50:07 -04:00
# include "services.h"
# include "es.h"
/* Type definitions. */
2020-08-15 17:22:49 -04:00
typedef bool ( * ServiceCondFunction ) ( void * arg ) ; /* Used to perform a runtime condition check (e.g. system version) before initializing the service. */
typedef Result ( * ServiceInitFunction ) ( void ) ; /* Used to initialize the service. */
typedef void ( * ServiceCloseFunction ) ( void ) ; /* Used to close the service. */
2020-04-15 16:50:07 -04:00
2020-08-15 17:22:49 -04:00
typedef struct {
2020-04-15 16:50:07 -04:00
bool initialized ;
char name [ 8 ] ;
ServiceCondFunction cond_func ;
ServiceInitFunction init_func ;
ServiceCloseFunction close_func ;
2020-08-15 17:22:49 -04:00
} ServiceInfo ;
2020-04-15 16:50:07 -04:00
/* Function prototypes. */
2021-02-25 00:36:53 -03:00
static Result smAtmosphereHasService ( bool * out , SmServiceName name ) ;
2020-08-15 17:22:49 -04:00
2020-04-15 16:50:07 -04:00
static Result servicesNifmUserInitialize ( void ) ;
static bool servicesClkGetServiceType ( void * arg ) ;
static bool servicesSplCryptoCheckAvailability ( void * arg ) ;
/* Global variables. */
2020-08-15 17:22:49 -04:00
static ServiceInfo g_serviceInfo [ ] = {
2020-04-15 16:50:07 -04:00
{ false , " ncm " , NULL , & ncmInitialize , & ncmExit } ,
{ false , " ns " , NULL , & nsInitialize , & nsExit } ,
{ false , " csrng " , NULL , & csrngInitialize , & csrngExit } ,
2020-08-15 17:22:49 -04:00
{ false , " spl: " , NULL , & splInitialize , & splExit } ,
2020-07-05 20:10:07 -04:00
{ false , " spl:mig " , & servicesSplCryptoCheckAvailability , & splCryptoInitialize , & splCryptoExit } , /* Checks if spl:mig is really available (e.g. avoid calling splInitialize twice). */
2020-04-15 16:50:07 -04:00
{ false , " pm:dmnt " , NULL , & pmdmntInitialize , & pmdmntExit } ,
{ false , " psm " , NULL , & psmInitialize , & psmExit } ,
{ false , " nifm:u " , NULL , & servicesNifmUserInitialize , & nifmExit } ,
2020-07-05 20:10:07 -04:00
{ false , " clk " , & servicesClkGetServiceType , NULL , NULL } , /* Placeholder for pcv / clkrst. */
2020-04-15 16:50:07 -04:00
{ false , " es " , NULL , & esInitialize , & esExit } ,
2020-05-05 11:22:16 -04:00
{ false , " set:cal " , NULL , & setcalInitialize , & setcalExit }
2020-04-15 16:50:07 -04:00
} ;
static const u32 g_serviceInfoCount = MAX_ELEMENTS ( g_serviceInfo ) ;
static bool g_clkSvcUsePcv = false ;
static ClkrstSession g_clkrstCpuSession = { 0 } , g_clkrstMemSession = { 0 } ;
2020-05-02 19:40:50 -04:00
static Mutex g_servicesMutex = 0 ;
2020-04-15 16:50:07 -04:00
bool servicesInitialize ( void )
{
2020-05-02 19:40:50 -04:00
mutexLock ( & g_servicesMutex ) ;
2020-04-15 16:50:07 -04:00
Result rc = 0 ;
bool ret = true ;
for ( u32 i = 0 ; i < g_serviceInfoCount ; i + + )
{
2020-08-15 17:22:49 -04:00
ServiceInfo * service_info = & ( g_serviceInfo [ i ] ) ;
2020-07-05 20:10:07 -04:00
/* Check if this service has been already initialized or if it actually has a valid initialize function. */
2020-08-15 17:22:49 -04:00
if ( service_info - > initialized | | service_info - > init_func = = NULL ) continue ;
2020-04-15 16:50:07 -04:00
2020-07-05 20:10:07 -04:00
/* Check if this service depends on a condition function. */
2020-08-15 17:22:49 -04:00
if ( service_info - > cond_func ! = NULL )
2020-04-15 16:50:07 -04:00
{
2020-07-05 20:10:07 -04:00
/* Run the condition function - it will update the current service member. */
/* Skip this service if the required conditions aren't met. */
2020-08-15 17:22:49 -04:00
if ( ! service_info - > cond_func ( service_info ) ) continue ;
2020-04-15 16:50:07 -04:00
}
2020-07-05 20:10:07 -04:00
/* Initialize service. */
2020-08-15 17:22:49 -04:00
rc = service_info - > init_func ( ) ;
2020-04-15 16:50:07 -04:00
if ( R_FAILED ( rc ) )
{
2021-03-07 20:22:49 -03:00
LOG_MSG ( " Failed to initialize %s service! (0x%08X). " , service_info - > name , rc ) ;
2020-04-15 16:50:07 -04:00
ret = false ;
break ;
}
2020-07-05 20:10:07 -04:00
/* Update initialized flag. */
2020-08-15 17:22:49 -04:00
service_info - > initialized = true ;
2020-04-15 16:50:07 -04:00
}
2020-05-02 19:40:50 -04:00
mutexUnlock ( & g_servicesMutex ) ;
2020-04-15 16:50:07 -04:00
return ret ;
}
void servicesClose ( void )
{
2020-05-02 19:40:50 -04:00
mutexLock ( & g_servicesMutex ) ;
2020-04-15 16:50:07 -04:00
for ( u32 i = 0 ; i < g_serviceInfoCount ; i + + )
{
2020-08-15 17:22:49 -04:00
ServiceInfo * service_info = & ( g_serviceInfo [ i ] ) ;
2020-07-05 20:10:07 -04:00
/* Check if this service has not been initialized, or if it doesn't have a valid close function. */
2020-08-15 17:22:49 -04:00
if ( ! service_info - > initialized | | service_info - > close_func = = NULL ) continue ;
2020-04-15 16:50:07 -04:00
2020-07-05 20:10:07 -04:00
/* Close service. */
2020-08-15 17:22:49 -04:00
service_info - > close_func ( ) ;
/* Update initialized flag. */
service_info - > initialized = false ;
2020-04-15 16:50:07 -04:00
}
2020-05-02 19:40:50 -04:00
mutexUnlock ( & g_servicesMutex ) ;
2020-04-15 16:50:07 -04:00
}
bool servicesCheckRunningServiceByName ( const char * name )
{
2020-10-14 21:06:53 -03:00
if ( ! name | | ! * name ) return false ;
2020-04-15 16:50:07 -04:00
2020-08-15 17:22:49 -04:00
Result rc = 0 ;
2020-04-19 18:44:22 -04:00
Handle handle = INVALID_HANDLE ;
2020-04-15 16:50:07 -04:00
SmServiceName service_name = smEncodeName ( name ) ;
2020-08-15 17:22:49 -04:00
bool running = false ;
2020-04-15 16:50:07 -04:00
2020-08-15 17:22:49 -04:00
rc = smRegisterService ( & handle , service_name , false , 1 ) ;
2021-03-07 20:22:49 -03:00
if ( R_FAILED ( rc ) ) LOG_MSG ( " smRegisterService failed for \" %s \" ! (0x%08X). " , name , rc ) ;
2020-08-15 17:22:49 -04:00
running = R_FAILED ( rc ) ;
2020-04-15 16:50:07 -04:00
2020-08-15 17:22:49 -04:00
if ( handle ! = INVALID_HANDLE ) svcCloseHandle ( handle ) ;
2020-04-15 16:50:07 -04:00
if ( ! running ) smUnregisterService ( service_name ) ;
return running ;
}
bool servicesCheckInitializedServiceByName ( const char * name )
{
2020-05-02 19:40:50 -04:00
mutexLock ( & g_servicesMutex ) ;
2020-04-15 16:50:07 -04:00
bool ret = false ;
2020-05-02 19:40:50 -04:00
2020-10-14 21:06:53 -03:00
if ( ! name | | ! * name ) goto end ;
2020-05-02 19:40:50 -04:00
2020-04-15 16:50:07 -04:00
for ( u32 i = 0 ; i < g_serviceInfoCount ; i + + )
{
2020-08-15 17:22:49 -04:00
ServiceInfo * service_info = & ( g_serviceInfo [ i ] ) ;
2021-03-07 20:22:49 -03:00
if ( ! strcmp ( service_info - > name , name ) )
2020-04-15 16:50:07 -04:00
{
2020-08-15 17:22:49 -04:00
ret = service_info - > initialized ;
2020-04-15 16:50:07 -04:00
break ;
}
}
2020-07-13 02:36:17 -04:00
end :
2020-05-02 19:40:50 -04:00
mutexUnlock ( & g_servicesMutex ) ;
2020-04-15 16:50:07 -04:00
return ret ;
}
void servicesChangeHardwareClockRates ( u32 cpu_rate , u32 mem_rate )
{
2020-05-02 19:40:50 -04:00
mutexLock ( & g_servicesMutex ) ;
2020-04-15 16:50:07 -04:00
if ( g_clkSvcUsePcv )
{
pcvSetClockRate ( PcvModule_CpuBus , cpu_rate ) ;
pcvSetClockRate ( PcvModule_EMC , mem_rate ) ;
} else {
clkrstSetClockRate ( & g_clkrstCpuSession , cpu_rate ) ;
clkrstSetClockRate ( & g_clkrstMemSession , mem_rate ) ;
}
2020-05-02 19:40:50 -04:00
mutexUnlock ( & g_servicesMutex ) ;
2020-04-15 16:50:07 -04:00
}
2021-02-25 00:36:53 -03:00
Result servicesHasService ( bool * out , const char * name )
2020-08-15 17:22:49 -04:00
{
2021-02-25 00:36:53 -03:00
if ( ! out | | ! name | | ! * name )
2020-08-15 17:22:49 -04:00
{
2021-03-07 20:22:49 -03:00
LOG_MSG ( " Invalid parameters! " ) ;
2020-08-15 17:22:49 -04:00
return MAKERESULT ( Module_Libnx , LibnxError_IoError ) ;
}
2021-02-25 00:36:53 -03:00
* out = false ;
Result rc = 0 ;
2020-08-15 17:22:49 -04:00
SmServiceName service_name = smEncodeName ( name ) ;
2021-02-25 00:36:53 -03:00
rc = smAtmosphereHasService ( out , service_name ) ;
2021-03-07 20:22:49 -03:00
if ( R_FAILED ( rc ) ) LOG_MSG ( " smAtmosphereHasService failed for \" %s \" ! (0x%08X). " , name , rc ) ;
2020-08-15 17:22:49 -04:00
return rc ;
}
2021-02-25 00:36:53 -03:00
/* SM API extension available in Atmosphère and Atmosphère-based CFWs. */
static Result smAtmosphereHasService ( bool * out , SmServiceName name )
2020-08-15 17:22:49 -04:00
{
u8 tmp = 0 ;
Result rc = serviceDispatchInOut ( smGetServiceSession ( ) , 65100 , name , tmp ) ;
2021-02-25 00:36:53 -03:00
if ( R_SUCCEEDED ( rc ) & & out ) * out = tmp ;
2020-08-15 17:22:49 -04:00
return rc ;
}
2020-04-15 16:50:07 -04:00
static Result servicesNifmUserInitialize ( void )
{
return nifmInitialize ( NifmServiceType_User ) ;
}
static Result servicesClkrstInitialize ( void )
{
Result rc = 0 ;
2020-07-05 20:10:07 -04:00
/* Open clkrst service handle. */
2020-04-15 16:50:07 -04:00
rc = clkrstInitialize ( ) ;
if ( R_FAILED ( rc ) ) return rc ;
2020-07-05 20:10:07 -04:00
/* Initialize CPU and MEM clkrst sessions. */
2020-04-15 16:50:07 -04:00
memset ( & g_clkrstCpuSession , 0 , sizeof ( ClkrstSession ) ) ;
memset ( & g_clkrstMemSession , 0 , sizeof ( ClkrstSession ) ) ;
rc = clkrstOpenSession ( & g_clkrstCpuSession , PcvModuleId_CpuBus , 3 ) ;
if ( R_FAILED ( rc ) )
{
clkrstExit ( ) ;
return rc ;
}
rc = clkrstOpenSession ( & g_clkrstMemSession , PcvModuleId_EMC , 3 ) ;
if ( R_FAILED ( rc ) )
{
clkrstCloseSession ( & g_clkrstCpuSession ) ;
clkrstExit ( ) ;
}
return rc ;
}
static void servicesClkrstExit ( void )
{
2020-07-05 20:10:07 -04:00
/* Close CPU and MEM clkrst sessions. */
2020-04-15 16:50:07 -04:00
clkrstCloseSession ( & g_clkrstMemSession ) ;
clkrstCloseSession ( & g_clkrstCpuSession ) ;
2020-07-05 20:10:07 -04:00
/* Close clkrst service handle. */
2020-04-15 16:50:07 -04:00
clkrstExit ( ) ;
}
static bool servicesClkGetServiceType ( void * arg )
{
if ( ! arg ) return false ;
2020-08-15 17:22:49 -04:00
ServiceInfo * info = ( ServiceInfo * ) arg ;
2021-03-07 20:22:49 -03:00
if ( strcmp ( info - > name , " clk " ) ! = 0 | | info - > init_func ! = NULL | | info - > close_func ! = NULL ) return false ;
2020-04-15 16:50:07 -04:00
2020-07-05 20:10:07 -04:00
/* Determine which service needs to be used to control hardware clock rates, depending on the system version. */
/* This may either be pcv (sysver lower than 8.0.0) or clkrst (sysver equal to or greater than 8.0.0). */
2020-04-15 16:50:07 -04:00
g_clkSvcUsePcv = hosversionBefore ( 8 , 0 , 0 ) ;
2020-07-05 20:10:07 -04:00
/* Fill service info. */
2020-04-15 16:50:07 -04:00
sprintf ( info - > name , " %s " , ( g_clkSvcUsePcv ? " pcv " : " clkrst " ) ) ;
info - > init_func = ( g_clkSvcUsePcv ? & pcvInitialize : & servicesClkrstInitialize ) ;
info - > close_func = ( g_clkSvcUsePcv ? & pcvExit : & servicesClkrstExit ) ;
return true ;
}
static bool servicesSplCryptoCheckAvailability ( void * arg )
{
if ( ! arg ) return false ;
2020-08-15 17:22:49 -04:00
ServiceInfo * info = ( ServiceInfo * ) arg ;
2021-03-07 20:22:49 -03:00
if ( strcmp ( info - > name , " spl:mig " ) ! = 0 | | info - > init_func = = NULL | | info - > close_func = = NULL ) return false ;
2020-04-15 16:50:07 -04:00
2020-07-05 20:10:07 -04:00
/* Check if spl:mig is available (sysver equal to or greater than 4.0.0). */
2020-04-15 16:50:07 -04:00
return ! hosversionBefore ( 4 , 0 , 0 ) ;
}