2019-07-04 15:14:17 +00:00
|
|
|
using Ryujinx.Common;
|
2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2020-08-02 00:20:44 +00:00
|
|
|
using Ryujinx.Common.Memory;
|
|
|
|
using Ryujinx.Common.Utilities;
|
2019-09-19 00:45:11 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Account.Acc;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService;
|
2020-08-02 00:20:44 +00:00
|
|
|
using System;
|
2019-07-04 15:14:17 +00:00
|
|
|
using System.IO;
|
2020-08-02 00:20:44 +00:00
|
|
|
using System.Runtime.CompilerServices;
|
2019-07-04 15:14:17 +00:00
|
|
|
using System.Runtime.InteropServices;
|
2020-08-02 00:20:44 +00:00
|
|
|
using System.Security.Cryptography;
|
2019-07-04 15:14:17 +00:00
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IFriendService : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-04 15:14:17 +00:00
|
|
|
private FriendServicePermissionLevel _permissionLevel;
|
|
|
|
|
|
|
|
public IFriendService(FriendServicePermissionLevel permissionLevel)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-04 15:14:17 +00:00
|
|
|
_permissionLevel = permissionLevel;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(10100)]
|
2020-02-02 03:24:17 +00:00
|
|
|
// nn::friends::GetFriendListIds(int offset, nn::account::Uid userId, nn::friends::detail::ipc::SizedFriendFilter friendFilter, ulong pidPlaceHolder, pid)
|
2019-07-12 01:13:43 +00:00
|
|
|
// -> int outCount, array<nn::account::NetworkServiceAccountId, 0xa>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetFriendListIds(ServiceCtx context)
|
2018-09-25 22:59:29 +00:00
|
|
|
{
|
2019-07-04 15:14:17 +00:00
|
|
|
int offset = context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
// Padding
|
|
|
|
context.RequestData.ReadInt32();
|
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
UserId userId = context.RequestData.ReadStruct<UserId>();
|
2019-07-04 15:14:17 +00:00
|
|
|
FriendFilter filter = context.RequestData.ReadStruct<FriendFilter>();
|
2018-09-25 22:59:29 +00:00
|
|
|
|
2019-07-04 15:14:17 +00:00
|
|
|
// Pid placeholder
|
|
|
|
context.RequestData.ReadInt64();
|
2018-09-25 22:59:29 +00:00
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
if (userId.IsNull)
|
2018-09-25 22:59:29 +00:00
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.InvalidArgument;
|
2019-07-04 15:14:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// There are no friends online, so we return 0 because the nn::account::NetworkServiceAccountId array is empty.
|
|
|
|
context.ResponseData.Write(0);
|
2018-09-25 22:59:29 +00:00
|
|
|
|
2019-07-04 15:14:17 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceFriend, new
|
|
|
|
{
|
2020-02-02 03:24:17 +00:00
|
|
|
UserId = userId.ToString(),
|
2019-07-04 15:14:17 +00:00
|
|
|
offset,
|
|
|
|
filter.PresenceStatus,
|
|
|
|
filter.IsFavoriteOnly,
|
|
|
|
filter.IsSameAppPresenceOnly,
|
|
|
|
filter.IsSameAppPlayedOnly,
|
|
|
|
filter.IsArbitraryAppPlayedOnly,
|
|
|
|
filter.PresenceGroupId,
|
|
|
|
});
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2019-07-04 15:14:17 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(10101)]
|
2020-02-02 03:24:17 +00:00
|
|
|
// nn::friends::GetFriendList(int offset, nn::account::Uid userId, nn::friends::detail::ipc::SizedFriendFilter friendFilter, ulong pidPlaceHolder, pid)
|
2019-07-12 01:13:43 +00:00
|
|
|
// -> int outCount, array<nn::friends::detail::FriendImpl, 0x6>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetFriendList(ServiceCtx context)
|
2019-07-04 15:14:17 +00:00
|
|
|
{
|
|
|
|
int offset = context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
// Padding
|
|
|
|
context.RequestData.ReadInt32();
|
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
UserId userId = context.RequestData.ReadStruct<UserId>();
|
2019-07-04 15:14:17 +00:00
|
|
|
FriendFilter filter = context.RequestData.ReadStruct<FriendFilter>();
|
|
|
|
|
|
|
|
// Pid placeholder
|
|
|
|
context.RequestData.ReadInt64();
|
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
if (userId.IsNull)
|
2019-07-04 15:14:17 +00:00
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.InvalidArgument;
|
2019-07-04 15:14:17 +00:00
|
|
|
}
|
2018-09-25 22:59:29 +00:00
|
|
|
|
|
|
|
// There are no friends online, so we return 0 because the nn::account::NetworkServiceAccountId array is empty.
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(0);
|
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceFriend, new {
|
2020-02-02 03:24:17 +00:00
|
|
|
UserId = userId.ToString(),
|
2019-07-04 15:14:17 +00:00
|
|
|
offset,
|
2019-01-11 00:11:46 +00:00
|
|
|
filter.PresenceStatus,
|
|
|
|
filter.IsFavoriteOnly,
|
|
|
|
filter.IsSameAppPresenceOnly,
|
|
|
|
filter.IsSameAppPlayedOnly,
|
|
|
|
filter.IsArbitraryAppPlayedOnly,
|
|
|
|
filter.PresenceGroupId,
|
|
|
|
});
|
2018-09-25 22:59:29 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-09-25 22:59:29 +00:00
|
|
|
}
|
|
|
|
|
2020-03-23 21:19:45 +00:00
|
|
|
[Command(10400)]
|
|
|
|
// nn::friends::GetBlockedUserListIds(int offset, nn::account::Uid userId) -> (u32, buffer<nn::account::NetworkServiceAccountId, 0xa>)
|
|
|
|
public ResultCode GetBlockedUserListIds(ServiceCtx context)
|
|
|
|
{
|
|
|
|
int offset = context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
// Padding
|
|
|
|
context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
UserId userId = context.RequestData.ReadStruct<UserId>();
|
|
|
|
|
|
|
|
// There are no friends blocked, so we return 0 because the nn::account::NetworkServiceAccountId array is empty.
|
|
|
|
context.ResponseData.Write(0);
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceFriend, new { offset, UserId = userId.ToString() });
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(10600)]
|
2020-02-02 03:24:17 +00:00
|
|
|
// nn::friends::DeclareOpenOnlinePlaySession(nn::account::Uid userId)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode DeclareOpenOnlinePlaySession(ServiceCtx context)
|
2019-04-25 13:03:00 +00:00
|
|
|
{
|
2020-02-02 03:24:17 +00:00
|
|
|
UserId userId = context.RequestData.ReadStruct<UserId>();
|
2019-07-04 15:14:17 +00:00
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
if (userId.IsNull)
|
2019-07-04 15:14:17 +00:00
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.InvalidArgument;
|
2019-07-04 15:14:17 +00:00
|
|
|
}
|
2019-04-25 13:03:00 +00:00
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
if (context.Device.System.State.Account.TryGetUser(userId, out UserProfile profile))
|
2019-04-25 13:03:00 +00:00
|
|
|
{
|
2019-06-15 22:35:38 +00:00
|
|
|
profile.OnlinePlayState = AccountState.Open;
|
2019-04-25 13:03:00 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceFriend, new { UserId = userId.ToString(), profile.OnlinePlayState });
|
2019-04-25 13:03:00 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2019-04-25 13:03:00 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(10601)]
|
2020-02-02 03:24:17 +00:00
|
|
|
// nn::friends::DeclareCloseOnlinePlaySession(nn::account::Uid userId)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode DeclareCloseOnlinePlaySession(ServiceCtx context)
|
2018-08-14 22:02:42 +00:00
|
|
|
{
|
2020-02-02 03:24:17 +00:00
|
|
|
UserId userId = context.RequestData.ReadStruct<UserId>();
|
2019-07-04 15:14:17 +00:00
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
if (userId.IsNull)
|
2019-07-04 15:14:17 +00:00
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.InvalidArgument;
|
2019-07-04 15:14:17 +00:00
|
|
|
}
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
if (context.Device.System.State.Account.TryGetUser(userId, out UserProfile profile))
|
2018-08-14 22:02:42 +00:00
|
|
|
{
|
2019-06-15 22:35:38 +00:00
|
|
|
profile.OnlinePlayState = AccountState.Closed;
|
2018-08-14 22:02:42 +00:00
|
|
|
}
|
|
|
|
|
2020-02-02 03:24:17 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceFriend, new { UserId = userId.ToString(), profile.OnlinePlayState });
|
2018-09-25 22:59:29 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-08-14 22:02:42 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(10610)]
|
2019-07-04 15:14:17 +00:00
|
|
|
// nn::friends::UpdateUserPresence(nn::account::Uid, u64, pid, buffer<nn::friends::detail::UserPresenceImpl, 0x19>)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode UpdateUserPresence(ServiceCtx context)
|
2018-08-14 22:02:42 +00:00
|
|
|
{
|
2020-02-02 03:24:17 +00:00
|
|
|
UserId uuid = context.RequestData.ReadStruct<UserId>();
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2019-07-04 15:14:17 +00:00
|
|
|
// Pid placeholder
|
|
|
|
context.RequestData.ReadInt64();
|
2018-09-25 22:59:29 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
long position = context.Request.PtrBuff[0].Position;
|
|
|
|
long size = context.Request.PtrBuff[0].Size;
|
2018-09-25 22:59:29 +00:00
|
|
|
|
2020-05-03 22:54:50 +00:00
|
|
|
byte[] bufferContent = new byte[size];
|
|
|
|
|
|
|
|
context.Memory.Read((ulong)position, bufferContent);
|
2018-09-25 22:59:29 +00:00
|
|
|
|
2019-07-04 15:14:17 +00:00
|
|
|
if (uuid.IsNull)
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.InvalidArgument;
|
2019-07-04 15:14:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int elementCount = bufferContent.Length / Marshal.SizeOf<UserPresence>();
|
|
|
|
|
|
|
|
using (BinaryReader bufferReader = new BinaryReader(new MemoryStream(bufferContent)))
|
|
|
|
{
|
|
|
|
UserPresence[] userPresenceInputArray = bufferReader.ReadStructArray<UserPresence>(elementCount);
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceFriend, new { UserId = uuid.ToString(), userPresenceInputArray });
|
|
|
|
}
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-08-14 22:02:42 +00:00
|
|
|
}
|
2020-08-02 00:20:44 +00:00
|
|
|
|
|
|
|
[Command(10700)]
|
|
|
|
// nn::friends::GetPlayHistoryRegistrationKey(b8 unknown, nn::account::Uid) -> buffer<nn::friends::PlayHistoryRegistrationKey, 0x1a>
|
|
|
|
public ResultCode GetPlayHistoryRegistrationKey(ServiceCtx context)
|
|
|
|
{
|
|
|
|
bool unknownBool = context.RequestData.ReadBoolean();
|
|
|
|
UserId userId = context.RequestData.ReadStruct<UserId>();
|
|
|
|
|
|
|
|
long bufferPosition = context.Request.RecvListBuff[0].Position;
|
|
|
|
|
|
|
|
if (userId.IsNull)
|
|
|
|
{
|
|
|
|
return ResultCode.InvalidArgument;
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: Calls nn::friends::detail::service::core::PlayHistoryManager::GetInstance and stores the instance.
|
|
|
|
|
|
|
|
byte[] randomBytes = new byte[8];
|
|
|
|
Random random = new Random();
|
|
|
|
|
|
|
|
random.NextBytes(randomBytes);
|
|
|
|
|
|
|
|
// NOTE: Calls nn::friends::detail::service::core::UuidManager::GetInstance and stores the instance.
|
|
|
|
// Then call nn::friends::detail::service::core::AccountStorageManager::GetInstance and store the instance.
|
|
|
|
// Then it checks if an Uuid is already stored for the UserId, if not it generates a random Uuid.
|
|
|
|
// And store it in the savedata 8000000000000080 in the friends:/uid.bin file.
|
|
|
|
|
|
|
|
Array16<byte> randomGuid = new Array16<byte>();
|
|
|
|
|
|
|
|
Guid.NewGuid().ToByteArray().AsSpan().CopyTo(randomGuid.ToSpan());
|
|
|
|
|
|
|
|
PlayHistoryRegistrationKey playHistoryRegistrationKey = new PlayHistoryRegistrationKey
|
|
|
|
{
|
|
|
|
Type = 0x101,
|
|
|
|
KeyIndex = (byte)(randomBytes[0] & 7),
|
|
|
|
UserIdBool = 0, // TODO: Find it.
|
|
|
|
UnknownBool = (byte)(unknownBool ? 1 : 0), // TODO: Find it.
|
|
|
|
Reserved = new Array11<byte>(),
|
|
|
|
Uuid = randomGuid
|
|
|
|
};
|
|
|
|
|
|
|
|
ReadOnlySpan<byte> playHistoryRegistrationKeyBuffer = SpanHelpers.AsByteSpan(ref playHistoryRegistrationKey);
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
NOTE: The service uses the KeyIndex to get a random key from a keys buffer (since the key index is stored in the returned buffer).
|
|
|
|
We currently don't support play history and online services so we can use a blank key for now.
|
|
|
|
Code for reference:
|
|
|
|
|
|
|
|
byte[] hmacKey = new byte[0x20];
|
|
|
|
|
|
|
|
HMACSHA256 hmacSha256 = new HMACSHA256(hmacKey);
|
|
|
|
byte[] hmacHash = hmacSha256.ComputeHash(playHistoryRegistrationKeyBuffer);
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
context.Memory.Write((ulong)bufferPosition, playHistoryRegistrationKeyBuffer);
|
|
|
|
context.Memory.Write((ulong)bufferPosition + 0x20, new byte[0x20]); // HmacHash
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
}
|