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-04-26 00:52:22 +00:00
|
|
|
using System;
|
2018-03-01 20:23:55 +00:00
|
|
|
using System.Collections.Generic;
|
2018-04-21 23:04:43 +00:00
|
|
|
using System.IO;
|
|
|
|
using System.Text;
|
2018-11-18 19:37:41 +00:00
|
|
|
using LibHac;
|
|
|
|
using Ryujinx.HLE.FileSystem;
|
2018-03-01 20:23:55 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Set
|
2018-03-01 20:23:55 +00:00
|
|
|
{
|
2018-04-06 04:01:52 +00:00
|
|
|
class ISystemSettingsServer : IpcService
|
2018-03-01 20:23:55 +00:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-03-01 20:23:55 +00:00
|
|
|
|
2018-04-06 04:01:52 +00:00
|
|
|
public ISystemSettingsServer()
|
2018-03-01 20:23:55 +00:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-11-18 19:37:41 +00:00
|
|
|
{ 3, GetFirmwareVersion },
|
2018-04-26 00:52:22 +00:00
|
|
|
{ 4, GetFirmwareVersion2 },
|
|
|
|
{ 23, GetColorSetId },
|
|
|
|
{ 24, SetColorSetId },
|
|
|
|
{ 38, GetSettingsItemValue }
|
2018-03-01 20:23:55 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-11-18 19:37:41 +00:00
|
|
|
// GetFirmwareVersion() -> buffer<nn::settings::system::FirmwareVersion, 0x1a, 0x100>
|
|
|
|
public static long GetFirmwareVersion(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
return GetFirmwareVersion2(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetFirmwareVersion2() -> buffer<nn::settings::system::FirmwareVersion, 0x1a, 0x100>
|
2018-04-21 23:04:43 +00:00
|
|
|
public static long GetFirmwareVersion2(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
long ReplyPos = Context.Request.RecvListBuff[0].Position;
|
|
|
|
long ReplySize = Context.Request.RecvListBuff[0].Size;
|
|
|
|
|
2018-11-18 19:37:41 +00:00
|
|
|
byte[] FirmwareData = GetFirmwareData(Context.Device);
|
|
|
|
|
|
|
|
if (FirmwareData != null)
|
|
|
|
{
|
|
|
|
Context.Memory.WriteBytes(ReplyPos, FirmwareData);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-09 16:05:41 +00:00
|
|
|
const byte MajorFWVersion = 0x03;
|
|
|
|
const byte MinorFWVersion = 0x00;
|
|
|
|
const byte MicroFWVersion = 0x00;
|
|
|
|
const byte Unknown = 0x00; //Build?
|
2018-04-21 23:04:43 +00:00
|
|
|
|
2018-06-09 16:05:41 +00:00
|
|
|
const int RevisionNumber = 0x0A;
|
2018-04-21 23:04:43 +00:00
|
|
|
|
2018-06-09 16:05:41 +00:00
|
|
|
const string Platform = "NX";
|
|
|
|
const string UnknownHex = "7fbde2b0bba4d14107bf836e4643043d9f6c8e47";
|
|
|
|
const string Version = "3.0.0";
|
|
|
|
const string Build = "NintendoSDK Firmware for NX 3.0.0-10.0";
|
2018-04-21 23:04:43 +00:00
|
|
|
|
|
|
|
//http://switchbrew.org/index.php?title=System_Version_Title
|
|
|
|
using (MemoryStream MS = new MemoryStream(0x100))
|
|
|
|
{
|
|
|
|
BinaryWriter Writer = new BinaryWriter(MS);
|
|
|
|
|
|
|
|
Writer.Write(MajorFWVersion);
|
|
|
|
Writer.Write(MinorFWVersion);
|
|
|
|
Writer.Write(MicroFWVersion);
|
|
|
|
Writer.Write(Unknown);
|
|
|
|
|
|
|
|
Writer.Write(RevisionNumber);
|
|
|
|
|
|
|
|
Writer.Write(Encoding.ASCII.GetBytes(Platform));
|
|
|
|
|
|
|
|
MS.Seek(0x28, SeekOrigin.Begin);
|
2018-06-09 16:05:41 +00:00
|
|
|
|
2018-04-21 23:04:43 +00:00
|
|
|
Writer.Write(Encoding.ASCII.GetBytes(UnknownHex));
|
|
|
|
|
|
|
|
MS.Seek(0x68, SeekOrigin.Begin);
|
2018-06-09 16:05:41 +00:00
|
|
|
|
2018-04-21 23:04:43 +00:00
|
|
|
Writer.Write(Encoding.ASCII.GetBytes(Version));
|
|
|
|
|
|
|
|
MS.Seek(0x80, SeekOrigin.Begin);
|
2018-06-09 16:05:41 +00:00
|
|
|
|
2018-04-21 23:04:43 +00:00
|
|
|
Writer.Write(Encoding.ASCII.GetBytes(Build));
|
|
|
|
|
2018-06-09 16:05:41 +00:00
|
|
|
Context.Memory.WriteBytes(ReplyPos, MS.ToArray());
|
2018-04-21 23:04:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-18 19:37:41 +00:00
|
|
|
// GetColorSetId() -> i32
|
2018-03-01 20:23:55 +00:00
|
|
|
public static long GetColorSetId(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
Context.ResponseData.Write((int)Context.Device.System.State.ThemeColor);
|
2018-03-03 17:04:58 +00:00
|
|
|
|
2018-03-01 20:23:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-18 19:37:41 +00:00
|
|
|
// GetColorSetId() -> i32
|
2018-03-01 20:23:55 +00:00
|
|
|
public static long SetColorSetId(ServiceCtx Context)
|
2018-04-06 04:01:52 +00:00
|
|
|
{
|
2018-04-17 00:24:42 +00:00
|
|
|
int ColorSetId = Context.RequestData.ReadInt32();
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
Context.Device.System.State.ThemeColor = (ColorSet)ColorSetId;
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2018-03-01 20:23:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-06-09 16:05:41 +00:00
|
|
|
|
2018-11-18 19:37:41 +00:00
|
|
|
// GetSettingsItemValue(buffer<nn::settings::SettingsName, 0x19, 0x48>, buffer<nn::settings::SettingsItemKey, 0x19, 0x48>) -> (u64, buffer<unknown, 6, 0>)
|
2018-04-26 00:52:22 +00:00
|
|
|
public static long GetSettingsItemValue(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
long ClassPos = Context.Request.PtrBuff[0].Position;
|
|
|
|
long ClassSize = Context.Request.PtrBuff[0].Size;
|
|
|
|
|
|
|
|
long NamePos = Context.Request.PtrBuff[1].Position;
|
|
|
|
long NameSize = Context.Request.PtrBuff[1].Size;
|
|
|
|
|
|
|
|
long ReplyPos = Context.Request.ReceiveBuff[0].Position;
|
|
|
|
long ReplySize = Context.Request.ReceiveBuff[0].Size;
|
|
|
|
|
2018-06-09 00:15:02 +00:00
|
|
|
byte[] Class = Context.Memory.ReadBytes(ClassPos, ClassSize);
|
|
|
|
byte[] Name = Context.Memory.ReadBytes(NamePos, NameSize);
|
2018-04-26 00:52:22 +00:00
|
|
|
|
|
|
|
string AskedSetting = Encoding.ASCII.GetString(Class).Trim('\0') + "!" + Encoding.ASCII.GetString(Name).Trim('\0');
|
|
|
|
|
|
|
|
NxSettings.Settings.TryGetValue(AskedSetting, out object NxSetting);
|
|
|
|
|
|
|
|
if (NxSetting != null)
|
|
|
|
{
|
|
|
|
byte[] SettingBuffer = new byte[ReplySize];
|
|
|
|
|
|
|
|
if (NxSetting is string StringValue)
|
|
|
|
{
|
|
|
|
if (StringValue.Length + 1 > ReplySize)
|
2018-06-09 16:05:41 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintError(LogClass.ServiceSet, $"{AskedSetting} String value size is too big!");
|
2018-04-26 00:52:22 +00:00
|
|
|
}
|
|
|
|
else
|
2018-06-09 16:05:41 +00:00
|
|
|
{
|
2018-04-26 00:52:22 +00:00
|
|
|
SettingBuffer = Encoding.ASCII.GetBytes(StringValue + "\0");
|
|
|
|
}
|
|
|
|
}
|
2018-08-14 22:02:42 +00:00
|
|
|
|
2018-04-26 00:52:22 +00:00
|
|
|
if (NxSetting is int IntValue)
|
|
|
|
{
|
|
|
|
SettingBuffer = BitConverter.GetBytes(IntValue);
|
|
|
|
}
|
|
|
|
else if (NxSetting is bool BoolValue)
|
|
|
|
{
|
|
|
|
SettingBuffer[0] = BoolValue ? (byte)1 : (byte)0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new NotImplementedException(NxSetting.GetType().Name);
|
|
|
|
}
|
|
|
|
|
2018-06-09 16:05:41 +00:00
|
|
|
Context.Memory.WriteBytes(ReplyPos, SettingBuffer);
|
2018-04-26 00:52:22 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintDebug(LogClass.ServiceSet, $"{AskedSetting} set value: {NxSetting} as {NxSetting.GetType()}");
|
2018-04-26 00:52:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintError(LogClass.ServiceSet, $"{AskedSetting} not found!");
|
2018-04-26 00:52:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-11-18 19:37:41 +00:00
|
|
|
|
|
|
|
public static byte[] GetFirmwareData(Switch Device)
|
|
|
|
{
|
|
|
|
byte[] Data = null;
|
|
|
|
long TitleId = 0x0100000000000809;
|
|
|
|
string ContentPath = Device.System.ContentManager.GetInstalledContentPath(TitleId, StorageId.NandSystem, ContentType.Data);
|
|
|
|
|
|
|
|
if(string.IsNullOrWhiteSpace(ContentPath))
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
string FirmwareTitlePath = Device.FileSystem.SwitchPathToSystemPath(ContentPath);
|
|
|
|
FileStream FirmwareStream = File.Open(FirmwareTitlePath, FileMode.Open, FileAccess.Read);
|
|
|
|
Nca FirmwareContent = new Nca(Device.System.KeySet, FirmwareStream, false);
|
|
|
|
Stream RomFsStream = FirmwareContent.OpenSection(0, false, Device.System.FsIntegrityCheckLevel);
|
|
|
|
|
|
|
|
if(RomFsStream == null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
Romfs FirmwareRomFs = new Romfs(RomFsStream);
|
|
|
|
|
|
|
|
using(MemoryStream MemoryStream = new MemoryStream())
|
|
|
|
{
|
|
|
|
using (Stream FirmwareFile = FirmwareRomFs.OpenFile("/file"))
|
|
|
|
{
|
|
|
|
FirmwareFile.CopyTo(MemoryStream);
|
|
|
|
}
|
|
|
|
|
|
|
|
Data = MemoryStream.ToArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
FirmwareContent.Dispose();
|
|
|
|
FirmwareStream.Dispose();
|
|
|
|
|
|
|
|
return Data;
|
|
|
|
}
|
2018-03-01 20:23:55 +00:00
|
|
|
}
|
2018-04-26 00:52:22 +00:00
|
|
|
}
|