2021-01-02 22:34:28 +00:00
using Ryujinx.Common.Logging ;
2020-08-18 20:24:54 +01:00
using Ryujinx.Cpu ;
using Ryujinx.HLE.HOS.Kernel.Threading ;
using Ryujinx.HLE.HOS.Services.Account.Acc.AsyncContext ;
using System.Threading ;
using System.Threading.Tasks ;
2018-02-10 00:14:55 +00:00
2021-01-02 22:34:28 +00:00
namespace Ryujinx.HLE.HOS.Services.Account.Acc.AccountService
2018-02-10 00:14:55 +00:00
{
2021-01-02 22:34:28 +00:00
class ManagerServer
2018-02-10 00:14:55 +00:00
{
2020-08-18 20:24:54 +01:00
// TODO: Determine where and how NetworkServiceAccountId is set.
private const long NetworkServiceAccountId = 0xcafe ;
2021-01-02 22:34:28 +00:00
private UserId _userId ;
2018-10-14 00:16:02 +01:00
2021-01-02 22:34:28 +00:00
public ManagerServer ( UserId userId )
2018-02-10 00:14:55 +00:00
{
2021-01-02 22:34:28 +00:00
_userId = userId ;
2018-02-10 00:14:55 +00:00
}
2019-07-14 20:04:38 +01:00
public ResultCode CheckAvailability ( ServiceCtx context )
2018-04-17 01:24:42 +01:00
{
2020-08-18 20:24:54 +01:00
// NOTE: This opens the file at "su/baas/USERID_IN_UUID_STRING.dat" where USERID_IN_UUID_STRING is formatted as "%08x-%04x-%04x-%02x%02x-%08x%04x".
// Then it searches the Availability of Online Services related to the UserId in this file and returns it.
2020-08-04 00:32:53 +01:00
Logger . Stub ? . PrintStub ( LogClass . ServiceAcc ) ;
2018-04-17 01:24:42 +01:00
2020-08-18 20:24:54 +01:00
// NOTE: Even if we try to return different error codes here, the guest still needs other calls.
2019-07-14 20:04:38 +01:00
return ResultCode . Success ;
2018-02-10 00:14:55 +00:00
}
2019-07-14 20:04:38 +01:00
public ResultCode GetAccountId ( ServiceCtx context )
2018-02-10 00:14:55 +00:00
{
2020-12-12 03:06:20 +00:00
// NOTE: This opens the file at "su/baas/USERID_IN_UUID_STRING.dat" (where USERID_IN_UUID_STRING is formatted
2020-08-18 20:24:54 +01:00
// as "%08x-%04x-%04x-%02x%02x-%08x%04x") in the account:/ savedata.
// Then it searches the NetworkServiceAccountId related to the UserId in this file and returns it.
2020-08-04 00:32:53 +01:00
Logger . Stub ? . PrintStub ( LogClass . ServiceAcc , new { NetworkServiceAccountId } ) ;
2020-03-02 14:07:27 +00:00
context . ResponseData . Write ( NetworkServiceAccountId ) ;
return ResultCode . Success ;
}
2021-01-02 22:34:28 +00:00
public ResultCode EnsureIdTokenCacheAsync ( ServiceCtx context , out IAsyncContext asyncContext )
2020-08-18 20:24:54 +01:00
{
KEvent asyncEvent = new KEvent ( context . Device . System . KernelContext ) ;
AsyncExecution asyncExecution = new AsyncExecution ( asyncEvent ) ;
asyncExecution . Initialize ( 1000 , EnsureIdTokenCacheAsyncImpl ) ;
2021-01-02 22:34:28 +00:00
asyncContext = new IAsyncContext ( asyncExecution ) ;
2020-08-18 20:24:54 +01:00
// return ResultCode.NullObject if the IAsyncContext pointer is null. Doesn't occur in our case.
return ResultCode . Success ;
}
private async Task EnsureIdTokenCacheAsyncImpl ( CancellationToken token )
{
// NOTE: This open the file at "su/baas/USERID_IN_UUID_STRING.dat" (where USERID_IN_UUID_STRING is formatted as "%08x-%04x-%04x-%02x%02x-%08x%04x")
// in the "account:/" savedata.
// Then its read data, use dauth API with this data to get the Token Id and probably store the dauth response
// in "su/cache/USERID_IN_UUID_STRING.dat" (where USERID_IN_UUID_STRING is formatted as "%08x-%04x-%04x-%02x%02x-%08x%04x") in the "account:/" savedata.
// Since we don't support online services, we can stub it.
Logger . Stub ? . PrintStub ( LogClass . ServiceAcc ) ;
// TODO: Use a real function instead, with the CancellationToken.
await Task . CompletedTask ;
}
public ResultCode LoadIdTokenCache ( ServiceCtx context )
{
2021-04-24 11:16:01 +01:00
ulong bufferPosition = context . Request . ReceiveBuff [ 0 ] . Position ;
ulong bufferSize = context . Request . ReceiveBuff [ 0 ] . Size ;
2020-08-18 20:24:54 +01:00
// NOTE: This opens the file at "su/cache/USERID_IN_UUID_STRING.dat" (where USERID_IN_UUID_STRING is formatted as "%08x-%04x-%04x-%02x%02x-%08x%04x")
// in the "account:/" savedata and writes some data in the buffer.
// Since we don't support online services, we can stub it.
Logger . Stub ? . PrintStub ( LogClass . ServiceAcc ) ;
/ *
if ( internal_object ! = null )
{
if ( bufferSize > 0xC00 )
{
return ResultCode . InvalidIdTokenCacheBufferSize ;
}
}
* /
int idTokenCacheSize = 0 ;
MemoryHelper . FillWithZeros ( context . Memory , bufferPosition , ( int ) bufferSize ) ;
context . ResponseData . Write ( idTokenCacheSize ) ;
return ResultCode . Success ;
}
2020-03-02 14:07:27 +00:00
public ResultCode GetNintendoAccountUserResourceCacheForApplication ( ServiceCtx context )
{
2020-08-04 00:32:53 +01:00
Logger . Stub ? . PrintStub ( LogClass . ServiceAcc , new { NetworkServiceAccountId } ) ;
2018-10-14 00:16:02 +01:00
2020-03-02 14:07:27 +00:00
context . ResponseData . Write ( NetworkServiceAccountId ) ;
2018-04-17 01:24:42 +01:00
2020-12-12 11:10:12 +00:00
// TODO: determine and fill the output IPC buffer.
2018-02-10 00:14:55 +00:00
2019-07-14 20:04:38 +01:00
return ResultCode . Success ;
2018-02-10 00:14:55 +00:00
}
2020-09-21 04:45:30 +01:00
public ResultCode StoreOpenContext ( ServiceCtx context )
{
Logger . Stub ? . PrintStub ( LogClass . ServiceAcc ) ;
return ResultCode . Success ;
}
2018-02-10 00:14:55 +00:00
}
}