2019-10-17 08:17:44 +02:00
|
|
|
|
using LibHac.FsSystem.NcaUtils;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
using Ryujinx.HLE.FileSystem;
|
|
|
|
|
using Ryujinx.HLE.FileSystem.Content;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
using static Ryujinx.HLE.Utilities.StringUtils;
|
|
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ncm.Lr.LocationResolverManager
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
|
|
|
|
class ILocationResolver : IpcService
|
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
private StorageId _storageId;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public ILocationResolver(StorageId storageId)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
_storageId = storageId;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(0)]
|
|
|
|
|
// ResolveProgramPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode ResolveProgramPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
if (ResolvePath(context, titleId, NcaContentType.Program))
|
2019-07-12 03:13:43 +02:00
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.ProgramLocationEntryNotFound;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(1)]
|
|
|
|
|
// RedirectProgramPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode RedirectProgramPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
RedirectPath(context, titleId, 0, NcaContentType.Program);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(2)]
|
|
|
|
|
// ResolveApplicationControlPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode ResolveApplicationControlPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
if (ResolvePath(context, titleId, NcaContentType.Control))
|
2019-07-12 03:13:43 +02:00
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.AccessDenied;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(3)]
|
|
|
|
|
// ResolveApplicationHtmlDocumentPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode ResolveApplicationHtmlDocumentPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
if (ResolvePath(context, titleId, NcaContentType.Manual))
|
2019-07-12 03:13:43 +02:00
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.AccessDenied;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(4)]
|
|
|
|
|
// ResolveDataPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode ResolveDataPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
if (ResolvePath(context, titleId, NcaContentType.Data) || ResolvePath(context, titleId, NcaContentType.PublicData))
|
2019-07-12 03:13:43 +02:00
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.AccessDenied;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(5)]
|
2018-11-18 20:37:41 +01:00
|
|
|
|
// RedirectApplicationControlPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode RedirectApplicationControlPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
RedirectPath(context, titleId, 1, NcaContentType.Control);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(6)]
|
2018-11-18 20:37:41 +01:00
|
|
|
|
// RedirectApplicationHtmlDocumentPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode RedirectApplicationHtmlDocumentPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
RedirectPath(context, titleId, 1, NcaContentType.Manual);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(7)]
|
|
|
|
|
// ResolveApplicationLegalInformationPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode ResolveApplicationLegalInformationPath(ServiceCtx context)
|
2019-07-12 03:13:43 +02:00
|
|
|
|
{
|
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
if (ResolvePath(context, titleId, NcaContentType.Manual))
|
2019-07-12 03:13:43 +02:00
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.AccessDenied;
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Command(8)]
|
2018-11-18 20:37:41 +01:00
|
|
|
|
// RedirectApplicationLegalInformationPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode RedirectApplicationLegalInformationPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
RedirectPath(context, titleId, 1, NcaContentType.Manual);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(9)]
|
|
|
|
|
// Refresh()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode Refresh(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2019-07-12 03:13:43 +02:00
|
|
|
|
context.Device.System.ContentManager.RefreshEntries(_storageId, 1);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(10)]
|
|
|
|
|
// SetProgramNcaPath2()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode SetProgramNcaPath2(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
RedirectPath(context, titleId, 1, NcaContentType.Program);
|
2019-07-12 03:13:43 +02:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(11)]
|
|
|
|
|
// ClearLocationResolver2()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode ClearLocationResolver2(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2019-07-12 03:13:43 +02:00
|
|
|
|
context.Device.System.ContentManager.RefreshEntries(_storageId, 1);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(12)]
|
|
|
|
|
// DeleteProgramNcaPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode DeleteProgramNcaPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
DeleteContentPath(context, titleId, NcaContentType.Program);
|
2019-07-12 03:13:43 +02:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(13)]
|
|
|
|
|
// DeleteControlNcaPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode DeleteControlNcaPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
DeleteContentPath(context, titleId, NcaContentType.Control);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(14)]
|
|
|
|
|
// DeleteDocHtmlNcaPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode DeleteDocHtmlNcaPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2019-07-12 03:13:43 +02:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
DeleteContentPath(context, titleId, NcaContentType.Manual);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
|
[Command(15)]
|
|
|
|
|
// DeleteInfoHtmlNcaPath()
|
2019-07-14 21:04:38 +02:00
|
|
|
|
public ResultCode DeleteInfoHtmlNcaPath(ServiceCtx context)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long titleId = context.RequestData.ReadInt64();
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
DeleteContentPath(context, titleId, NcaContentType.Manual);
|
2019-07-12 03:13:43 +02:00
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
|
return ResultCode.Success;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
private void RedirectPath(ServiceCtx context, long titleId, int flag, NcaContentType contentType)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
string contentPath = ReadUtf8String(context);
|
|
|
|
|
LocationEntry newLocation = new LocationEntry(contentPath, flag, titleId, contentType);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
context.Device.System.ContentManager.RedirectLocation(newLocation, _storageId);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
private bool ResolvePath(ServiceCtx context, long titleId, NcaContentType contentType)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
ContentManager contentManager = context.Device.System.ContentManager;
|
2019-10-17 08:17:44 +02:00
|
|
|
|
string contentPath = contentManager.GetInstalledContentPath(titleId, _storageId, NcaContentType.Program);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(contentPath))
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
long position = context.Request.RecvListBuff[0].Position;
|
|
|
|
|
long size = context.Request.RecvListBuff[0].Size;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
byte[] contentPathBuffer = Encoding.UTF8.GetBytes(contentPath);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2020-05-04 00:54:50 +02:00
|
|
|
|
context.Memory.Write((ulong)position, contentPathBuffer);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
private void DeleteContentPath(ServiceCtx context, long titleId, NcaContentType contentType)
|
2018-11-18 20:37:41 +01:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
ContentManager contentManager = context.Device.System.ContentManager;
|
2019-10-17 08:17:44 +02:00
|
|
|
|
string contentPath = contentManager.GetInstalledContentPath(titleId, _storageId, NcaContentType.Manual);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
|
contentManager.ClearEntry(titleId, NcaContentType.Manual, _storageId);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|