2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.SystemState;
|
2018-10-07 13:13:46 +00:00
|
|
|
using Ryujinx.HLE.Utilities;
|
2018-02-25 04:34:16 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Acc
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-09-01 22:04:20 +00:00
|
|
|
class IAccountService : IpcService
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2018-09-01 22:04:20 +00:00
|
|
|
public IAccountService()
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-04-24 18:57:39 +00:00
|
|
|
{ 0, GetUserCount },
|
2018-06-10 04:36:07 +00:00
|
|
|
{ 1, GetUserExistence },
|
|
|
|
{ 2, ListAllUsers },
|
2018-04-24 18:57:39 +00:00
|
|
|
{ 3, ListOpenUsers },
|
2018-06-02 22:46:09 +00:00
|
|
|
{ 4, GetLastOpenedUser },
|
2018-04-24 18:57:39 +00:00
|
|
|
{ 5, GetProfile },
|
2018-10-13 23:16:02 +00:00
|
|
|
{ 50, IsUserRegistrationRequestPermitted },
|
|
|
|
{ 51, TrySelectUserWithoutInteraction },
|
2018-02-25 04:34:16 +00:00
|
|
|
{ 100, InitializeApplicationInfo },
|
|
|
|
{ 101, GetBaasAccountManagerForApplication }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-13 23:16:02 +00:00
|
|
|
// GetUserCount() -> i32
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetUserCount(ServiceCtx context)
|
2018-04-17 16:41:14 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(context.Device.System.State.GetUserCount());
|
2018-04-17 16:41:14 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-06-11 00:46:42 +00:00
|
|
|
|
2018-10-13 23:16:02 +00:00
|
|
|
// GetUserExistence(nn::account::Uid) -> bool
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetUserExistence(ServiceCtx context)
|
2018-06-10 04:36:07 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
UInt128 uuid = new UInt128(
|
|
|
|
context.RequestData.ReadInt64(),
|
|
|
|
context.RequestData.ReadInt64());
|
2018-06-10 04:36:07 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(context.Device.System.State.TryGetUser(uuid, out _));
|
2018-06-10 04:36:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-04-17 16:41:14 +00:00
|
|
|
|
2018-10-13 23:16:02 +00:00
|
|
|
// ListAllUsers() -> array<nn::account::Uid, 0xa>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long ListAllUsers(ServiceCtx context)
|
2018-06-10 04:36:07 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return WriteUserList(context, context.Device.System.State.GetAllUsers());
|
2018-06-10 04:36:07 +00:00
|
|
|
}
|
2018-06-11 00:46:42 +00:00
|
|
|
|
2018-10-13 23:16:02 +00:00
|
|
|
// ListOpenUsers() -> array<nn::account::Uid, 0xa>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long ListOpenUsers(ServiceCtx context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return WriteUserList(context, context.Device.System.State.GetOpenUsers());
|
2018-08-14 22:02:42 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
private long WriteUserList(ServiceCtx context, IEnumerable<UserProfile> profiles)
|
2018-08-14 22:02:42 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long outputPosition = context.Request.RecvListBuff[0].Position;
|
|
|
|
long outputSize = context.Request.RecvListBuff[0].Size;
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
long offset = 0;
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
foreach (UserProfile profile in profiles)
|
2018-08-14 22:02:42 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
if ((ulong)offset + 16 > (ulong)outputSize)
|
2018-08-14 22:02:42 +00:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Memory.WriteInt64(outputPosition, profile.Uuid.Low);
|
|
|
|
context.Memory.WriteInt64(outputPosition + 8, profile.Uuid.High);
|
2018-08-14 22:02:42 +00:00
|
|
|
}
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-02-25 04:34:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-13 23:16:02 +00:00
|
|
|
// GetLastOpenedUser() -> nn::account::Uid
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetLastOpenedUser(ServiceCtx context)
|
2018-06-02 22:46:09 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
UserProfile lastOpened = context.Device.System.State.LastOpenUser;
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
lastOpened.Uuid.Write(context.ResponseData);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-13 23:16:02 +00:00
|
|
|
// GetProfile(nn::account::Uid) -> object<nn::account::profile::IProfile>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetProfile(ServiceCtx context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
UInt128 uuid = new UInt128(
|
|
|
|
context.RequestData.ReadInt64(),
|
|
|
|
context.RequestData.ReadInt64());
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (!context.Device.System.State.TryGetUser(uuid, out UserProfile profile))
|
2018-08-14 22:02:42 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
Logger.PrintWarning(LogClass.ServiceAcc, $"User 0x{uuid} not found!");
|
2018-08-14 22:02:42 +00:00
|
|
|
|
|
|
|
return MakeError(ErrorModule.Account, AccErr.UserNotFound);
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new IProfile(profile));
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-13 23:16:02 +00:00
|
|
|
// IsUserRegistrationRequestPermitted(u64, pid) -> bool
|
2018-12-06 11:16:24 +00:00
|
|
|
public long IsUserRegistrationRequestPermitted(ServiceCtx context)
|
2018-10-13 23:16:02 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long unknown = context.RequestData.ReadInt64();
|
2018-10-13 23:16:02 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAcc, new { unknown });
|
2018-10-13 23:16:02 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(false);
|
2018-10-13 23:16:02 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TrySelectUserWithoutInteraction(bool) -> nn::account::Uid
|
2018-12-06 11:16:24 +00:00
|
|
|
public long TrySelectUserWithoutInteraction(ServiceCtx context)
|
2018-10-13 23:16:02 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
bool unknown = context.RequestData.ReadBoolean();
|
2018-10-13 23:16:02 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAcc, new { unknown });
|
2018-10-13 23:16:02 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
UserProfile profile = context.Device.System.State.LastOpenUser;
|
2018-10-13 23:16:02 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
profile.Uuid.Write(context.ResponseData);
|
2018-10-13 23:16:02 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// InitializeApplicationInfo(u64, pid)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long InitializeApplicationInfo(ServiceCtx context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long unknown = context.RequestData.ReadInt64();
|
2018-10-13 23:16:02 +00:00
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceAcc, new { unknown });
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2018-02-25 04:34:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-13 23:16:02 +00:00
|
|
|
// GetBaasAccountManagerForApplication(nn::account::Uid) -> object<nn::account::baas::IManagerForApplication>
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetBaasAccountManagerForApplication(ServiceCtx context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
UInt128 uuid = new UInt128(
|
|
|
|
context.RequestData.ReadInt64(),
|
|
|
|
context.RequestData.ReadInt64());
|
2018-10-13 23:16:02 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new IManagerForApplication(uuid));
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2018-04-17 16:41:14 +00:00
|
|
|
}
|