2020-04-16 01:06:41 +01:00
/*
2021-03-26 04:35:14 +00:00
* nxdt_utils . c
2020-04-16 01:06:41 +01:00
*
2020-12-23 17:48:57 +00:00
* Copyright ( c ) 2020 - 2021 , DarkMatterCore < pabloacurielz @ gmail . com > .
2020-07-03 10:31:22 +01:00
*
* This file is part of nxdumptool ( https : //github.com/DarkMatterCore/nxdumptool).
*
2021-03-25 19:26:58 +00:00
* nxdumptool is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
2020-04-16 01:06:41 +01:00
*
2021-03-25 19:26:58 +00:00
* nxdumptool is distributed in the hope that 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 .
2020-04-16 01:06:41 +01:00
*
* You should have received a copy of the GNU General Public License
2021-03-25 19:26:58 +00:00
* along with this program . If not , see < https : //www.gnu.org/licenses/>.
2020-04-16 01:06:41 +01:00
*/
2020-12-02 06:28:35 +00:00
# include <sys/statvfs.h>
2020-11-08 19:08:30 +00:00
2021-03-26 04:35:14 +00:00
# include "nxdt_utils.h"
2020-04-16 11:13:11 +01:00
# include "keys.h"
2020-04-15 21:50:07 +01:00
# include "gamecard.h"
2020-04-16 11:13:11 +01:00
# include "services.h"
2020-04-21 11:23:33 +01:00
# include "nca.h"
2020-05-05 16:22:16 +01:00
# include "usb.h"
2020-07-25 06:56:35 +01:00
# include "title.h"
2020-10-14 14:23:49 +01:00
# include "bfttf.h"
2021-06-23 19:27:06 +01:00
# include "nxdt_bfsar.h"
2020-04-17 22:59:05 +01:00
# include "fatfs/ff.h"
2020-04-15 21:50:07 +01:00
2021-06-01 02:12:15 +01:00
/* Reference: https://docs.microsoft.com/en-us/windows/win32/fileio/filesystem-functionality-comparison#limits. */
# define NT_MAX_FILENAME_LENGTH 255
2020-04-15 21:50:07 +01:00
/* Global variables. */
2021-05-18 13:32:43 +01:00
static bool g_resourcesInit = false ;
2020-05-03 00:40:50 +01:00
static Mutex g_resourcesMutex = 0 ;
static FsFileSystem * g_sdCardFileSystem = NULL ;
2021-05-18 13:32:43 +01:00
static const char * g_appLaunchPath = NULL ;
2020-05-03 00:40:50 +01:00
2020-04-16 11:13:11 +01:00
static u8 g_customFirmwareType = UtilsCustomFirmwareType_Unknown ;
2021-05-18 13:32:43 +01:00
static bool g_isDevUnit = false ;
static AppletType g_programAppletType = AppletType_None ;
static FsStorage g_emmcBisSystemPartitionStorage = { 0 } ;
static FATFS * g_emmcBisSystemPartitionFatFsObj = NULL ;
2020-04-15 21:50:07 +01:00
static AppletHookCookie g_systemOverclockCookie = { 0 } ;
2021-05-18 13:32:43 +01:00
static bool g_homeButtonBlocked = false ;
2021-03-30 20:30:10 +01:00
static int g_nxLinkSocketFd = - 1 ;
2020-07-26 05:57:12 +01:00
static const char * g_sizeSuffixes [ ] = { " B " , " KiB " , " MiB " , " GiB " } ;
static const u32 g_sizeSuffixesCount = MAX_ELEMENTS ( g_sizeSuffixes ) ;
2021-05-11 07:00:33 +01:00
static const char g_illegalFileSystemChars [ ] = " \\ /:*? \" <>| " ;
static const size_t g_illegalFileSystemCharsLength = ( MAX_ELEMENTS ( g_illegalFileSystemChars ) - 1 ) ;
2021-02-12 20:35:23 +00:00
2020-04-15 21:50:07 +01:00
/* Function prototypes. */
2021-05-18 13:32:43 +01:00
static void _utilsGetLaunchPath ( int program_argc , const char * * program_argv ) ;
2021-02-25 03:36:53 +00:00
static void _utilsGetCustomFirmwareType ( void ) ;
2020-08-15 22:22:49 +01:00
static bool _utilsIsDevelopmentUnit ( void ) ;
2021-05-18 13:32:43 +01:00
static bool _utilsAppletModeCheck ( void ) ;
2020-05-03 00:40:50 +01:00
static bool utilsMountEmmcBisSystemPartitionStorage ( void ) ;
static void utilsUnmountEmmcBisSystemPartitionStorage ( void ) ;
2020-04-15 21:50:07 +01:00
static void utilsOverclockSystemAppletHook ( AppletHookType hook , void * param ) ;
2021-03-08 14:44:11 +00:00
static void utilsPrintConsoleError ( void ) ;
2021-06-01 02:12:15 +01:00
static size_t utilsGetUtf8CodepointCount ( const char * str , size_t str_size , size_t cp_limit , size_t * last_cp_pos ) ;
2021-05-18 13:32:43 +01:00
bool utilsInitializeResources ( const int program_argc , const char * * program_argv )
2020-05-03 00:40:50 +01:00
{
2021-03-30 20:30:10 +01:00
Result rc = 0 ;
2021-06-23 19:27:06 +01:00
bool ret = false , flag = false ;
2021-03-30 20:30:10 +01:00
2021-05-18 13:32:43 +01:00
SCOPED_LOCK ( & g_resourcesMutex )
2021-03-08 11:11:28 +00:00
{
2021-05-18 13:32:43 +01:00
ret = g_resourcesInit ;
if ( ret ) break ;
/* Retrieve pointer to the application launch path. */
_utilsGetLaunchPath ( program_argc , program_argv ) ;
/* Retrieve pointer to the SD card FsFileSystem element. */
if ( ! ( g_sdCardFileSystem = fsdevGetDeviceFileSystem ( " sdmc: " ) ) )
2021-03-08 11:11:28 +00:00
{
2021-05-18 13:32:43 +01:00
LOG_MSG ( " Failed to retrieve FsFileSystem object for the SD card! " ) ;
break ;
2021-03-08 11:11:28 +00:00
}
2021-05-18 13:32:43 +01:00
/* Create logfile. */
logWriteStringToLogFile ( " ________________________________________________________________ \r \n " ) ;
2021-06-23 19:27:06 +01:00
LOG_MSG ( APP_TITLE " v%u.%u.%u starting ( " GIT_REV " ). Built on " __DATE__ " - " __TIME__ " . " , VERSION_MAJOR , VERSION_MINOR , VERSION_MICRO ) ;
2021-05-18 13:32:43 +01:00
if ( g_appLaunchPath ) LOG_MSG ( " Launch path: \" %s \" . " , g_appLaunchPath ) ;
/* Log Horizon OS version. */
u32 hos_version = hosversionGet ( ) ;
LOG_MSG ( " Horizon OS version: %u.%u.%u. " , HOSVER_MAJOR ( hos_version ) , HOSVER_MINOR ( hos_version ) , HOSVER_MICRO ( hos_version ) ) ;
/* Initialize needed services. */
if ( ! servicesInitialize ( ) ) break ;
/* Retrieve custom firmware type. */
_utilsGetCustomFirmwareType ( ) ;
if ( g_customFirmwareType ! = UtilsCustomFirmwareType_Unknown ) LOG_MSG ( " Detected %s CFW. " , ( g_customFirmwareType = = UtilsCustomFirmwareType_Atmosphere ? " Atmosphère " : \
( g_customFirmwareType = = UtilsCustomFirmwareType_SXOS ? " SX OS " : " ReiNX " ) ) ) ;
/* Check if we're not running under a development unit. */
if ( ! _utilsIsDevelopmentUnit ( ) ) break ;
LOG_MSG ( " Running under %s unit. " , g_isDevUnit ? " development " : " retail " ) ;
/* Get applet type. */
g_programAppletType = appletGetAppletType ( ) ;
LOG_MSG ( " Running under %s mode. " , _utilsAppletModeCheck ( ) ? " applet " : " title override " ) ;
/* Initialize USB interface. */
if ( ! usbInitialize ( ) ) break ;
/* Initialize USB Mass Storage interface. */
if ( ! umsInitialize ( ) ) break ;
2021-05-22 09:45:40 +01:00
/* Load keyset. */
if ( ! keysLoadKeyset ( ) ) break ;
2021-05-18 13:32:43 +01:00
/* Allocate NCA crypto buffer. */
if ( ! ncaAllocateCryptoBuffer ( ) )
{
LOG_MSG ( " Unable to allocate memory for NCA crypto buffer! " ) ;
break ;
}
/* Initialize gamecard interface. */
if ( ! gamecardInitialize ( ) ) break ;
/* Initialize title interface. */
if ( ! titleInitialize ( ) ) break ;
/* Initialize BFTTF interface. */
if ( ! bfttfInitialize ( ) ) break ;
2021-06-23 19:27:06 +01:00
/* Initialize BFSAR interface. */
//if (!bfsarInitialize()) break;
2021-05-18 13:32:43 +01:00
/* Mount eMMC BIS System partition. */
if ( ! utilsMountEmmcBisSystemPartitionStorage ( ) ) break ;
2021-06-23 19:27:06 +01:00
/* Enable video recording. */
rc = appletIsGamePlayRecordingSupported ( & flag ) ;
if ( R_SUCCEEDED ( rc ) & & flag ) appletInitializeGamePlayRecording ( ) ;
2021-05-18 13:32:43 +01:00
/* Disable screen dimming and auto sleep. */
2021-06-23 19:27:06 +01:00
/* TODO: only use this function right before starting a dump procedure - make sure to handle power button presses as well. */
2021-05-18 13:32:43 +01:00
appletSetMediaPlaybackState ( true ) ;
/* Overclock system. */
utilsOverclockSystem ( true ) ;
/* Setup an applet hook to change the hardware clocks after a system mode change (docked <-> undocked). */
appletHook ( & g_systemOverclockCookie , utilsOverclockSystemAppletHook , NULL ) ;
/* Mount application RomFS. */
romfsInit ( ) ;
/* Redirect stdout and stderr over network to nxlink. */
rc = socketInitializeDefault ( ) ;
if ( R_SUCCEEDED ( rc ) ) g_nxLinkSocketFd = nxlinkConnectToHost ( true , true ) ;
/* Update flags. */
ret = g_resourcesInit = true ;
2021-03-08 11:11:28 +00:00
}
2021-03-08 14:44:11 +00:00
if ( ! ret ) utilsPrintConsoleError ( ) ;
2020-05-03 00:40:50 +01:00
return ret ;
}
void utilsCloseResources ( void )
{
2021-05-18 13:32:43 +01:00
SCOPED_LOCK ( & g_resourcesMutex )
2021-03-30 20:30:10 +01:00
{
2021-05-18 13:32:43 +01:00
/* Close nxlink socket. */
if ( g_nxLinkSocketFd > = 0 )
{
close ( g_nxLinkSocketFd ) ;
g_nxLinkSocketFd = - 1 ;
}
socketExit ( ) ;
/* Unmount application RomFS. */
romfsExit ( ) ;
/* Unset our overclock applet hook. */
appletUnhook ( & g_systemOverclockCookie ) ;
/* Restore hardware clocks. */
utilsOverclockSystem ( false ) ;
/* Enable screen dimming and auto sleep. */
appletSetMediaPlaybackState ( false ) ;
/* Unblock HOME button presses. */
utilsChangeHomeButtonBlockStatus ( false ) ;
/* Unmount eMMC BIS System partition. */
utilsUnmountEmmcBisSystemPartitionStorage ( ) ;
2021-06-23 19:27:06 +01:00
/* Deinitialize BFSAR interface. */
bfsarExit ( ) ;
2021-05-18 13:32:43 +01:00
/* Deinitialize BFTTF interface. */
bfttfExit ( ) ;
/* Deinitialize title interface. */
titleExit ( ) ;
/* Deinitialize gamecard interface. */
gamecardExit ( ) ;
/* Free NCA crypto buffer. */
ncaFreeCryptoBuffer ( ) ;
/* Close USB Mass Storage interface. */
umsExit ( ) ;
/* Close USB interface. */
usbExit ( ) ;
/* Close initialized services. */
servicesClose ( ) ;
/* Close logfile. */
logCloseLogFile ( ) ;
g_resourcesInit = false ;
}
}
const char * utilsGetLaunchPath ( void )
{
return g_appLaunchPath ;
}
FsFileSystem * utilsGetSdCardFileSystemObject ( void )
{
return g_sdCardFileSystem ;
}
bool utilsCommitSdCardFileSystemChanges ( void )
{
return ( g_sdCardFileSystem ? R_SUCCEEDED ( fsFsCommit ( g_sdCardFileSystem ) ) : false ) ;
}
u8 utilsGetCustomFirmwareType ( void )
{
return g_customFirmwareType ;
}
bool utilsIsDevelopmentUnit ( void )
{
return g_isDevUnit ;
}
bool utilsAppletModeCheck ( void )
{
return _utilsAppletModeCheck ( ) ;
}
FsStorage * utilsGetEmmcBisSystemPartitionStorage ( void )
{
return & g_emmcBisSystemPartitionStorage ;
}
void utilsOverclockSystem ( bool overclock )
{
u32 cpu_rate = ( ( overclock ? CPU_CLKRT_OVERCLOCKED : CPU_CLKRT_NORMAL ) * 1000000 ) ;
u32 mem_rate = ( ( overclock ? MEM_CLKRT_OVERCLOCKED : MEM_CLKRT_NORMAL ) * 1000000 ) ;
servicesChangeHardwareClockRates ( cpu_rate , mem_rate ) ;
}
void utilsChangeHomeButtonBlockStatus ( bool block )
{
SCOPED_LOCK ( & g_resourcesMutex )
{
/* Only change HOME button blocking status if we're running as a regular application or a system application, and if its current blocking status is different than the requested one. */
if ( _utilsAppletModeCheck ( ) | | block = = g_homeButtonBlocked ) break ;
if ( block )
{
appletBeginBlockingHomeButtonShortAndLongPressed ( 0 ) ;
} else {
appletEndBlockingHomeButtonShortAndLongPressed ( ) ;
}
g_homeButtonBlocked = block ;
2021-03-30 20:30:10 +01:00
}
2020-05-03 00:40:50 +01:00
}
2020-04-17 22:59:05 +01:00
2020-08-18 06:04:13 +01:00
bool utilsCreateThread ( Thread * out_thread , ThreadFunc func , void * arg , int cpu_id )
{
/* Core 3 is reserved for HOS, so we can only use cores 0, 1 and 2. */
/* -2 can be provided to use the default process core. */
if ( ! out_thread | | ! func | | ( cpu_id < 0 & & cpu_id ! = - 2 ) | | cpu_id > 2 )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Invalid parameters! " ) ;
2020-08-18 06:04:13 +01:00
return false ;
}
Result rc = 0 ;
u64 core_mask = 0 ;
size_t stack_size = 0x20000 ; /* Same value as libnx's newlib. */
bool success = false ;
memset ( out_thread , 0 , sizeof ( Thread ) ) ;
/* Get process core mask. */
rc = svcGetInfo ( & core_mask , InfoType_CoreMask , CUR_PROCESS_HANDLE , 0 ) ;
if ( R_FAILED ( rc ) )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " svcGetInfo failed! (0x%08X). " , rc ) ;
2020-08-18 06:04:13 +01:00
goto end ;
}
/* Create thread. */
/* Enable preemptive multithreading by using priority 0x3B. */
rc = threadCreate ( out_thread , func , arg , NULL , stack_size , 0x3B , cpu_id ) ;
if ( R_FAILED ( rc ) )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " threadCreate failed! (0x%08X). " , rc ) ;
2020-08-18 06:04:13 +01:00
goto end ;
}
/* Set thread core mask. */
rc = svcSetThreadCoreMask ( out_thread - > handle , cpu_id = = - 2 ? - 1 : cpu_id , core_mask ) ;
if ( R_FAILED ( rc ) )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " svcSetThreadCoreMask failed! (0x%08X). " , rc ) ;
2020-08-18 06:04:13 +01:00
goto end ;
}
/* Start thread. */
rc = threadStart ( out_thread ) ;
if ( R_FAILED ( rc ) )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " threadStart failed! (0x%08X). " , rc ) ;
2020-08-18 06:04:13 +01:00
goto end ;
}
success = true ;
end :
if ( ! success & & out_thread - > handle ! = INVALID_HANDLE ) threadClose ( out_thread ) ;
return success ;
}
void utilsJoinThread ( Thread * thread )
{
if ( ! thread | | thread - > handle = = INVALID_HANDLE )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Invalid parameters! " ) ;
2020-08-18 06:04:13 +01:00
return ;
}
Result rc = threadWaitForExit ( thread ) ;
if ( R_FAILED ( rc ) )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " threadWaitForExit failed! (0x%08X). " , rc ) ;
2020-08-18 06:04:13 +01:00
return ;
}
threadClose ( thread ) ;
memset ( thread , 0 , sizeof ( Thread ) ) ;
}
2021-03-29 19:27:35 +01:00
__attribute__ ( ( format ( printf , 3 , 4 ) ) ) bool utilsAppendFormattedStringToBuffer ( char * * dst , size_t * dst_size , const char * fmt , . . . )
2020-10-02 10:53:58 +01:00
{
2021-03-07 23:22:49 +00:00
if ( ! dst | | ! dst_size | | ( ! * dst & & * dst_size ) | | ( * dst & & ! * dst_size ) | | ! fmt | | ! * fmt )
2020-10-02 10:53:58 +01:00
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Invalid parameters! " ) ;
2020-10-02 10:53:58 +01:00
return false ;
}
va_list args ;
2021-03-08 11:11:28 +00:00
int formatted_str_len = 0 ;
size_t formatted_str_len_cast = 0 ;
2021-03-07 23:22:49 +00:00
char * dst_ptr = * dst , * tmp_str = NULL ;
size_t dst_cur_size = * dst_size , dst_str_len = ( dst_ptr ? strlen ( dst_ptr ) : 0 ) ;
2020-10-02 10:53:58 +01:00
bool success = false ;
2021-03-08 11:11:28 +00:00
if ( dst_cur_size & & dst_str_len > = dst_cur_size )
2020-10-02 10:53:58 +01:00
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " String length is equal to or greater than the provided buffer size! (0x%lX >= 0x%lX). " , dst_str_len , dst_cur_size ) ;
return false ;
2020-10-02 10:53:58 +01:00
}
2021-03-07 23:22:49 +00:00
va_start ( args , fmt ) ;
/* Get formatted string length. */
2020-10-02 10:53:58 +01:00
formatted_str_len = vsnprintf ( NULL , 0 , fmt , args ) ;
2021-03-08 11:11:28 +00:00
if ( formatted_str_len < = 0 )
2020-10-02 10:53:58 +01:00
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Failed to retrieve formatted string length! " ) ;
2020-10-02 10:53:58 +01:00
goto end ;
}
2021-03-08 11:11:28 +00:00
formatted_str_len_cast = ( size_t ) ( formatted_str_len + 1 ) ;
2021-03-07 23:22:49 +00:00
2021-03-08 11:11:28 +00:00
if ( ! dst_cur_size | | formatted_str_len_cast > ( dst_cur_size - dst_str_len ) )
2020-10-02 10:53:58 +01:00
{
2021-03-07 23:22:49 +00:00
/* Update buffer size. */
2021-03-08 11:11:28 +00:00
dst_cur_size = ( dst_str_len + formatted_str_len_cast ) ;
2021-03-07 23:22:49 +00:00
/* Reallocate buffer. */
tmp_str = realloc ( dst_ptr , dst_cur_size ) ;
if ( ! tmp_str )
2020-10-02 10:53:58 +01:00
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Failed to resize buffer to 0x%lX byte(s). " , dst_cur_size ) ;
2020-10-02 10:53:58 +01:00
goto end ;
}
2021-03-07 23:22:49 +00:00
dst_ptr = tmp_str ;
tmp_str = NULL ;
2020-10-02 10:53:58 +01:00
2021-03-07 23:22:49 +00:00
/* Clear allocated area. */
2021-03-08 11:11:28 +00:00
memset ( dst_ptr + dst_str_len , 0 , formatted_str_len_cast ) ;
2020-10-02 10:53:58 +01:00
2021-03-07 23:22:49 +00:00
/* Update pointers. */
* dst = dst_ptr ;
* dst_size = dst_cur_size ;
2020-10-02 10:53:58 +01:00
}
2021-03-07 23:22:49 +00:00
/* Generate formatted string. */
vsprintf ( dst_ptr + dst_str_len , fmt , args ) ;
2020-10-02 10:53:58 +01:00
success = true ;
end :
va_end ( args ) ;
return success ;
}
2020-05-05 19:04:23 +01:00
void utilsReplaceIllegalCharacters ( char * str , bool ascii_only )
2020-05-03 00:40:50 +01:00
{
2021-06-01 02:12:15 +01:00
size_t str_size = 0 , cur_pos = 0 ;
2020-04-16 11:13:11 +01:00
2021-06-01 02:12:15 +01:00
if ( ! str | | ! ( str_size = strlen ( str ) ) ) return ;
u8 * ptr1 = ( u8 * ) str , * ptr2 = ptr1 ;
ssize_t units = 0 ;
u32 code = 0 ;
2020-04-15 21:50:07 +01:00
2021-06-01 02:12:15 +01:00
while ( cur_pos < str_size )
2020-04-21 11:23:33 +01:00
{
2021-06-01 02:12:15 +01:00
units = decode_utf8 ( & code , ptr1 ) ;
if ( units < 0 ) break ;
if ( memchr ( g_illegalFileSystemChars , ( int ) code , g_illegalFileSystemCharsLength ) | | code < 0x20 | | ( ! ascii_only & & code = = 0x7F ) | | ( ascii_only & & code > = 0x7F ) )
{
* ptr2 + + = ' _ ' ;
} else {
if ( ptr2 ! = ptr1 ) memmove ( ptr2 , ptr1 , ( size_t ) units ) ;
ptr2 + = units ;
}
ptr1 + = units ;
cur_pos + = ( size_t ) units ;
2020-04-21 11:23:33 +01:00
}
2021-06-01 02:12:15 +01:00
* ptr2 = ' \0 ' ;
2020-04-15 21:50:07 +01:00
}
2020-05-03 00:40:50 +01:00
void utilsTrimString ( char * str )
2020-04-15 21:50:07 +01:00
{
2020-05-03 00:40:50 +01:00
size_t strsize = 0 ;
char * start = NULL , * end = NULL ;
2020-04-15 21:50:07 +01:00
2020-05-03 00:40:50 +01:00
if ( ! str | | ! ( strsize = strlen ( str ) ) ) return ;
2020-04-15 21:50:07 +01:00
2020-05-03 00:40:50 +01:00
start = str ;
end = ( start + strsize ) ;
2020-04-15 21:50:07 +01:00
2020-05-03 00:40:50 +01:00
while ( - - end > = start )
{
if ( ! isspace ( ( unsigned char ) * end ) ) break ;
}
2020-04-17 22:59:05 +01:00
2020-05-03 00:40:50 +01:00
* ( + + end ) = ' \0 ' ;
2020-04-17 22:59:05 +01:00
2020-05-03 00:40:50 +01:00
while ( isspace ( ( unsigned char ) * start ) ) start + + ;
2020-04-21 11:23:33 +01:00
2020-05-03 00:40:50 +01:00
if ( start ! = str ) memmove ( str , start , end - start + 1 ) ;
2020-04-16 11:13:11 +01:00
}
2021-05-11 23:36:15 +01:00
void utilsGenerateHexStringFromData ( char * dst , size_t dst_size , const void * src , size_t src_size , bool uppercase )
2020-04-17 22:59:05 +01:00
{
if ( ! src | | ! src_size | | ! dst | | dst_size < ( ( src_size * 2 ) + 1 ) ) return ;
size_t i , j ;
const u8 * src_u8 = ( const u8 * ) src ;
for ( i = 0 , j = 0 ; i < src_size ; i + + )
{
2020-04-19 23:44:22 +01:00
char h_nib = ( ( src_u8 [ i ] > > 4 ) & 0xF ) ;
char l_nib = ( src_u8 [ i ] & 0xF ) ;
2020-04-17 22:59:05 +01:00
2021-05-11 23:36:15 +01:00
dst [ j + + ] = ( h_nib + ( h_nib < 0xA ? 0x30 : ( uppercase ? 0x37 : 0x57 ) ) ) ;
dst [ j + + ] = ( l_nib + ( l_nib < 0xA ? 0x30 : ( uppercase ? 0x37 : 0x57 ) ) ) ;
2020-04-17 22:59:05 +01:00
}
dst [ j ] = ' \0 ' ;
}
2020-07-26 05:57:12 +01:00
void utilsGenerateFormattedSizeString ( u64 size , char * dst , size_t dst_size )
{
if ( ! dst | | dst_size < 2 ) return ;
double converted_size = ( double ) size ;
for ( u32 i = 0 ; i < g_sizeSuffixesCount ; i + + )
{
if ( converted_size > = pow ( 1024.0 , i + 1 ) & & ( i + 1 ) < g_sizeSuffixesCount ) continue ;
converted_size / = pow ( 1024.0 , i ) ;
snprintf ( dst , dst_size , " %.*f %s " , ( converted_size > = 100.0 ? 0 : ( converted_size > = 10.0 ? 1 : 2 ) ) , converted_size , g_sizeSuffixes [ i ] ) ;
break ;
}
}
2020-12-24 08:49:38 +00:00
bool utilsGetFileSystemStatsByPath ( const char * path , u64 * out_total , u64 * out_free )
2020-08-01 05:43:55 +01:00
{
2020-12-02 06:28:35 +00:00
char * name_end = NULL , stat_path [ 32 ] = { 0 } ;
struct statvfs info = { 0 } ;
int ret = - 1 ;
2020-12-24 08:49:38 +00:00
if ( ! path | | ! * path | | ! ( name_end = strchr ( path , ' : ' ) ) | | * ( name_end + 1 ) ! = ' / ' | | ( ! out_total & & ! out_free ) )
2020-12-02 06:28:35 +00:00
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Invalid parameters! " ) ;
2020-12-02 06:28:35 +00:00
return false ;
}
name_end + = 2 ;
sprintf ( stat_path , " %.*s " , ( int ) ( name_end - path ) , path ) ;
if ( ( ret = statvfs ( stat_path , & info ) ) ! = 0 )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " statvfs failed! (%d) (errno: %d). " , ret , errno ) ;
2020-12-02 06:28:35 +00:00
return false ;
}
2020-12-24 08:49:38 +00:00
if ( out_total ) * out_total = ( ( u64 ) info . f_blocks * ( u64 ) info . f_frsize ) ;
if ( out_free ) * out_free = ( ( u64 ) info . f_bfree * ( u64 ) info . f_frsize ) ;
2020-12-02 06:28:35 +00:00
return true ;
2020-08-01 05:43:55 +01:00
}
2020-05-03 00:40:50 +01:00
bool utilsCheckIfFileExists ( const char * path )
{
2020-10-15 01:06:53 +01:00
if ( ! path | | ! * path ) return false ;
2020-05-03 00:40:50 +01:00
FILE * chkfile = fopen ( path , " rb " ) ;
if ( chkfile )
2020-04-16 11:13:11 +01:00
{
2020-05-03 00:40:50 +01:00
fclose ( chkfile ) ;
return true ;
2020-04-16 11:13:11 +01:00
}
2020-05-03 00:40:50 +01:00
return false ;
2020-04-16 11:13:11 +01:00
}
2020-10-22 05:38:14 +01:00
void utilsRemoveConcatenationFile ( const char * path )
{
if ( ! path | | ! * path ) return ;
remove ( path ) ;
fsdevDeleteDirectoryRecursively ( path ) ;
}
2020-05-03 00:40:50 +01:00
bool utilsCreateConcatenationFile ( const char * path )
2020-04-15 21:50:07 +01:00
{
2020-10-15 01:06:53 +01:00
if ( ! path | | ! * path )
2020-05-03 00:40:50 +01:00
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Invalid parameters! " ) ;
2020-05-03 00:40:50 +01:00
return false ;
}
2020-04-15 21:50:07 +01:00
2021-06-01 02:12:15 +01:00
/* Safety measure: remove any existant file/directory at the destination path. */
2020-10-22 05:38:14 +01:00
utilsRemoveConcatenationFile ( path ) ;
2020-05-03 00:40:50 +01:00
2021-06-01 02:12:15 +01:00
/* Create ConcatenationFile. */
2020-07-06 01:10:07 +01:00
/* If the call succeeds, the caller function will be able to operate on this file using stdio calls. */
2020-08-01 05:43:55 +01:00
Result rc = fsdevCreateFile ( path , 0 , FsCreateOption_BigFile ) ;
2021-03-07 23:22:49 +00:00
if ( R_FAILED ( rc ) ) LOG_MSG ( " fsdevCreateFile failed for \" %s \" ! (0x%08X). " , path , rc ) ;
2020-05-03 00:40:50 +01:00
2020-08-01 05:43:55 +01:00
return R_SUCCEEDED ( rc ) ;
2020-05-03 00:40:50 +01:00
}
2020-07-29 22:02:21 +01:00
void utilsCreateDirectoryTree ( const char * path , bool create_last_element )
{
char * ptr = NULL , * tmp = NULL ;
size_t path_len = 0 ;
if ( ! path | | ! ( path_len = strlen ( path ) ) ) return ;
tmp = calloc ( path_len + 1 , sizeof ( char ) ) ;
if ( ! tmp ) return ;
ptr = strchr ( path , ' / ' ) ;
while ( ptr )
{
sprintf ( tmp , " %.*s " , ( int ) ( ptr - path ) , path ) ;
mkdir ( tmp , 0777 ) ;
ptr = strchr ( + + ptr , ' / ' ) ;
}
if ( create_last_element ) mkdir ( path , 0777 ) ;
free ( tmp ) ;
}
2020-10-21 05:27:48 +01:00
char * utilsGeneratePath ( const char * prefix , const char * filename , const char * extension )
{
2021-06-01 02:12:15 +01:00
if ( ! filename | | ! * filename )
2020-10-21 05:27:48 +01:00
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Invalid parameters! " ) ;
2020-10-21 05:27:48 +01:00
return NULL ;
}
2021-06-01 02:12:15 +01:00
bool use_prefix = ( prefix & & * prefix ) ;
size_t prefix_len = ( use_prefix ? strlen ( prefix ) : 0 ) ;
bool append_path_sep = ( use_prefix & & prefix [ prefix_len - 1 ] ! = ' / ' ) ;
bool use_extension = ( extension & & * extension ) ;
size_t extension_len = ( use_extension ? strlen ( extension ) : 0 ) ;
bool append_dot = ( use_extension & & * extension ! = ' . ' ) ;
2020-10-21 05:27:48 +01:00
2021-06-01 02:12:15 +01:00
size_t path_len = ( prefix_len + strlen ( filename ) + extension_len ) ;
if ( append_path_sep ) path_len + + ;
if ( append_dot ) path_len + + ;
char * path = NULL , * ptr1 = NULL , * ptr2 = NULL ;
bool filename_only = false , success = false ;
/* Allocate memory for the output path. */
if ( ! ( path = calloc ( path_len + 1 , sizeof ( char ) ) ) )
2020-10-21 05:27:48 +01:00
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Failed to allocate 0x%lX bytes for output path! " , path_len ) ;
2021-06-01 02:12:15 +01:00
goto end ;
2020-10-21 05:27:48 +01:00
}
2021-06-01 02:12:15 +01:00
/* Generate output path. */
if ( use_prefix ) strcat ( path , prefix ) ;
if ( append_path_sep ) strcat ( path , " / " ) ;
2020-10-26 06:39:33 +00:00
strcat ( path , filename ) ;
2021-06-01 02:12:15 +01:00
if ( append_dot ) strcat ( path , " . " ) ;
if ( use_extension ) strcat ( path , extension ) ;
/* Retrieve pointer to the first path separator. */
ptr1 = strchr ( path , ' / ' ) ;
if ( ! ptr1 )
{
filename_only = true ;
ptr1 = path ;
}
/* Make sure each path element doesn't exceed NT_MAX_FILENAME_LENGTH. */
while ( ptr1 )
{
/* End loop if we find a NULL terminator. */
if ( ! filename_only & & ! * ptr1 + + ) break ;
/* Get pointer to next path separator. */
ptr2 = strchr ( ptr1 , ' / ' ) ;
/* Get current path element size. */
size_t element_size = ( ptr2 ? ( size_t ) ( ptr2 - ptr1 ) : ( path_len - ( size_t ) ( ptr1 - path ) ) ) ;
/* Get UTF-8 codepoint count. */
/* Use NT_MAX_FILENAME_LENGTH as the codepoint count limit. */
size_t last_cp_pos = 0 ;
size_t cp_count = utilsGetUtf8CodepointCount ( ptr1 , element_size , NT_MAX_FILENAME_LENGTH , & last_cp_pos ) ;
if ( cp_count > NT_MAX_FILENAME_LENGTH )
{
if ( ptr2 )
{
/* Truncate current element by moving the rest of the path to the current position. */
memmove ( ptr1 + last_cp_pos , ptr2 , path_len - ( size_t ) ( ptr2 - path ) ) ;
/* Update pointer. */
ptr2 - = ( element_size - last_cp_pos ) ;
} else
if ( use_extension )
{
/* Truncate last element. Make sure to preserve the provided file extension. */
size_t diff = extension_len ;
if ( append_dot ) diff + + ;
if ( diff > = last_cp_pos )
{
LOG_MSG ( " File extension length is >= truncated filename length! (0x%lX >= 0x%lX) (#1). " , diff , last_cp_pos ) ;
goto end ;
}
memmove ( ptr1 + last_cp_pos - diff , ptr1 + element_size - diff , diff ) ;
}
path_len - = ( element_size - last_cp_pos ) ;
path [ path_len ] = ' \0 ' ;
}
ptr1 = ptr2 ;
}
/* Check if the full length for the generated path is >= FS_MAX_PATH. */
if ( path_len > = FS_MAX_PATH )
{
LOG_MSG ( " Generated path length is >= FS_MAX_PATH! (0x%lX). " , path_len ) ;
goto end ;
}
/* Update flag. */
success = true ;
end :
if ( ! success & & path )
{
free ( path ) ;
path = NULL ;
}
2020-10-21 05:27:48 +01:00
return path ;
}
2021-05-18 13:32:43 +01:00
static void _utilsGetLaunchPath ( int program_argc , const char * * program_argv )
2020-05-03 00:40:50 +01:00
{
2021-05-18 13:32:43 +01:00
if ( program_argc < = 0 | | ! program_argv ) return ;
2020-05-03 00:40:50 +01:00
2021-05-18 13:32:43 +01:00
for ( int i = 0 ; i < program_argc ; i + + )
2020-05-03 00:40:50 +01:00
{
2021-05-18 13:32:43 +01:00
if ( program_argv [ i ] & & ! strncmp ( program_argv [ i ] , " sdmc:/ " , 6 ) )
2020-05-03 00:40:50 +01:00
{
2021-05-18 13:32:43 +01:00
g_appLaunchPath = program_argv [ i ] ;
break ;
2020-05-03 00:40:50 +01:00
}
}
2020-04-15 21:50:07 +01:00
}
2020-04-17 22:59:05 +01:00
2021-02-25 03:36:53 +00:00
static void _utilsGetCustomFirmwareType ( void )
2020-08-15 22:22:49 +01:00
{
2021-04-20 23:43:37 +01:00
bool tx_srv = servicesCheckRunningServiceByName ( " tx " ) ;
bool rnx_srv = servicesCheckRunningServiceByName ( " rnx " ) ;
2020-08-15 22:22:49 +01:00
g_customFirmwareType = ( rnx_srv ? UtilsCustomFirmwareType_ReiNX : ( tx_srv ? UtilsCustomFirmwareType_SXOS : UtilsCustomFirmwareType_Atmosphere ) ) ;
}
static bool _utilsIsDevelopmentUnit ( void )
{
Result rc = 0 ;
bool tmp = false ;
rc = splIsDevelopment ( & tmp ) ;
if ( R_SUCCEEDED ( rc ) )
{
g_isDevUnit = tmp ;
} else {
2021-03-07 23:22:49 +00:00
LOG_MSG ( " splIsDevelopment failed! (0x%08X). " , rc ) ;
2020-08-15 22:22:49 +01:00
}
return R_SUCCEEDED ( rc ) ;
}
2021-05-18 13:32:43 +01:00
static bool _utilsAppletModeCheck ( void )
{
return ( g_programAppletType > AppletType_Application & & g_programAppletType < AppletType_SystemApplication ) ;
}
2020-04-17 22:59:05 +01:00
static bool utilsMountEmmcBisSystemPartitionStorage ( void )
{
Result rc = 0 ;
FRESULT fr = FR_OK ;
rc = fsOpenBisStorage ( & g_emmcBisSystemPartitionStorage , FsBisPartitionId_System ) ;
if ( R_FAILED ( rc ) )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Failed to open eMMC BIS System partition storage! (0x%08X). " , rc ) ;
2020-04-17 22:59:05 +01:00
return false ;
}
2020-04-19 23:44:22 +01:00
g_emmcBisSystemPartitionFatFsObj = calloc ( 1 , sizeof ( FATFS ) ) ;
if ( ! g_emmcBisSystemPartitionFatFsObj )
2020-04-17 22:59:05 +01:00
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Unable to allocate memory for FatFs element! " ) ;
2020-04-17 22:59:05 +01:00
return false ;
}
2020-11-28 06:38:01 +00:00
fr = f_mount ( g_emmcBisSystemPartitionFatFsObj , BIS_SYSTEM_PARTITION_MOUNT_NAME , 1 ) ;
2020-04-17 22:59:05 +01:00
if ( fr ! = FR_OK )
{
2021-03-07 23:22:49 +00:00
LOG_MSG ( " Failed to mount eMMC BIS System partition! (%u). " , fr ) ;
2020-04-17 22:59:05 +01:00
return false ;
}
return true ;
}
static void utilsUnmountEmmcBisSystemPartitionStorage ( void )
{
2020-04-19 23:44:22 +01:00
if ( g_emmcBisSystemPartitionFatFsObj )
2020-04-17 22:59:05 +01:00
{
2020-11-28 06:38:01 +00:00
f_unmount ( BIS_SYSTEM_PARTITION_MOUNT_NAME ) ;
2020-04-19 23:44:22 +01:00
free ( g_emmcBisSystemPartitionFatFsObj ) ;
g_emmcBisSystemPartitionFatFsObj = NULL ;
2020-04-17 22:59:05 +01:00
}
if ( serviceIsActive ( & ( g_emmcBisSystemPartitionStorage . s ) ) )
{
fsStorageClose ( & g_emmcBisSystemPartitionStorage ) ;
memset ( & g_emmcBisSystemPartitionStorage , 0 , sizeof ( FsStorage ) ) ;
}
}
2020-05-03 00:40:50 +01:00
static void utilsOverclockSystemAppletHook ( AppletHookType hook , void * param )
{
( void ) param ;
if ( hook ! = AppletHookType_OnOperationMode & & hook ! = AppletHookType_OnPerformanceMode ) return ;
2021-06-23 19:27:06 +01:00
/* TODO: read config here to actually know the value to use with utilsOverclockSystem. */
2021-05-11 07:00:33 +01:00
utilsOverclockSystem ( true ) ;
2020-05-03 00:40:50 +01:00
}
2021-03-08 14:44:11 +00:00
static void utilsPrintConsoleError ( void )
{
2021-03-30 20:30:10 +01:00
PadState pad = { 0 } ;
2021-03-08 14:44:11 +00:00
char msg [ 0x100 ] = { 0 } ;
2021-03-30 20:30:10 +01:00
/* Don't consider stick movement as button inputs. */
u64 flag = ~ ( HidNpadButton_StickLLeft | HidNpadButton_StickLRight | HidNpadButton_StickLUp | HidNpadButton_StickLDown | HidNpadButton_StickRLeft | HidNpadButton_StickRRight | \
HidNpadButton_StickRUp | HidNpadButton_StickRDown ) ;
/* Configure input. */
/* Up to 8 different, full controller inputs. */
/* Individual Joy-Cons not supported. */
padConfigureInput ( 8 , HidNpadStyleSet_NpadFullCtrl ) ;
padInitializeWithMask ( & pad , 0x1000000FFUL ) ;
/* Get last log message. */
2021-03-08 14:44:11 +00:00
logGetLastMessage ( msg , sizeof ( msg ) ) ;
consoleInit ( NULL ) ;
printf ( " An error occurred while initializing resources. \n \n " ) ;
if ( * msg ) printf ( " %s \n \n " , msg ) ;
printf ( " For more information, please check the logfile. Press any button to exit. " ) ;
consoleUpdate ( NULL ) ;
2021-03-30 20:30:10 +01:00
while ( appletMainLoop ( ) )
{
padUpdate ( & pad ) ;
if ( padGetButtonsDown ( & pad ) & flag ) break ;
}
2021-03-08 14:44:11 +00:00
consoleExit ( NULL ) ;
}
2021-06-01 02:12:15 +01:00
static size_t utilsGetUtf8CodepointCount ( const char * str , size_t str_size , size_t cp_limit , size_t * last_cp_pos )
{
if ( ! str | | ! * str | | ! str_size | | ( ! cp_limit & & last_cp_pos ) | | ( cp_limit & & ! last_cp_pos ) ) return 0 ;
u32 code = 0 ;
ssize_t units = 0 ;
size_t cur_pos = 0 , cp_count = 0 ;
const u8 * str_u8 = ( const u8 * ) str ;
while ( cur_pos < str_size )
{
units = decode_utf8 ( & code , str_u8 + cur_pos ) ;
size_t new_pos = ( cur_pos + ( size_t ) units ) ;
if ( units < 0 | | ! code | | new_pos > str_size ) break ;
cp_count + + ;
cur_pos = new_pos ;
if ( cp_limit & & last_cp_pos & & cp_count < cp_limit ) * last_cp_pos = cur_pos ;
}
return cp_count ;
}