Implement Bluetooth, Btm, Hid and Nsd services and calls. (#761)
- Implement `btdrv` service (IBluetoothDriver).
Implement call `InitializeBluetoothLe` for initialize events of `bt` service according to RE.
- Implement `bt` service (IBluetoothUser).
Implement call `RegisterBleEvent` according to RE.
- Add a placeholder for the `btm` service (close #750).
- Implement `btm:u` service (IBtmUser) (close #751).
Implement call `GetCore` according to RE (close #752).
- Implement `IBtmUserCore` and calls `AcquireBleScanEvent`, `AcquireBleConnectionEvent`, `AcquireBleServiceDiscoveryEvent` and `AcquireBleMtuConfigEvent` according to RE.
- Implement `SetPalmaBoostMode` in `IHidServer` according to RE.
- Add stub for `SetIsPalmaAllConnectable` in `IHidServer` because we will not support Palma devices soon.
- Implement `nsd:a` and `nsd:u` service (IManager) (close #755).
Implement call `ResolveEx` according to RE (close #756).
Implement calls `GetSettingName`, `GetEnvironmentIdentifier`, `GetDeviceId`, `DeleteSettings`, `Resolve`, `ReadSaveDataFromFsForTest`, `WriteSaveDataToFsForTest` and `DeleteSaveDataOfFsForTest` according to RE.
2019-09-06 16:58:50 +02:00
|
|
|
|
using System.Text;
|
|
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd.Manager
|
Implement Bluetooth, Btm, Hid and Nsd services and calls. (#761)
- Implement `btdrv` service (IBluetoothDriver).
Implement call `InitializeBluetoothLe` for initialize events of `bt` service according to RE.
- Implement `bt` service (IBluetoothUser).
Implement call `RegisterBleEvent` according to RE.
- Add a placeholder for the `btm` service (close #750).
- Implement `btm:u` service (IBtmUser) (close #751).
Implement call `GetCore` according to RE (close #752).
- Implement `IBtmUserCore` and calls `AcquireBleScanEvent`, `AcquireBleConnectionEvent`, `AcquireBleServiceDiscoveryEvent` and `AcquireBleMtuConfigEvent` according to RE.
- Implement `SetPalmaBoostMode` in `IHidServer` according to RE.
- Add stub for `SetIsPalmaAllConnectable` in `IHidServer` because we will not support Palma devices soon.
- Implement `nsd:a` and `nsd:u` service (IManager) (close #755).
Implement call `ResolveEx` according to RE (close #756).
Implement calls `GetSettingName`, `GetEnvironmentIdentifier`, `GetDeviceId`, `DeleteSettings`, `Resolve`, `ReadSaveDataFromFsForTest`, `WriteSaveDataToFsForTest` and `DeleteSaveDataOfFsForTest` according to RE.
2019-09-06 16:58:50 +02:00
|
|
|
|
{
|
|
|
|
|
class FqdnResolver
|
|
|
|
|
{
|
|
|
|
|
private const string _dummyAddress = "unknown.dummy.nintendo.net";
|
|
|
|
|
|
|
|
|
|
private NsdSettings _nsdSettings;
|
|
|
|
|
|
|
|
|
|
public FqdnResolver(NsdSettings nsdSettings)
|
|
|
|
|
{
|
|
|
|
|
_nsdSettings = nsdSettings;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ResultCode GetSettingName(ServiceCtx context, out string settingName)
|
|
|
|
|
{
|
|
|
|
|
if (_nsdSettings.TestMode)
|
|
|
|
|
{
|
|
|
|
|
settingName = "";
|
|
|
|
|
|
|
|
|
|
return ResultCode.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
settingName = "";
|
|
|
|
|
|
|
|
|
|
if (true) // TODO: Determine field (struct + 0x2C)
|
|
|
|
|
{
|
|
|
|
|
settingName = _nsdSettings.Environment;
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ResultCode.NullOutputObject;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ResultCode GetEnvironmentIdentifier(ServiceCtx context, out string identifier)
|
|
|
|
|
{
|
|
|
|
|
if (_nsdSettings.TestMode)
|
|
|
|
|
{
|
|
|
|
|
identifier = "rre";
|
|
|
|
|
|
|
|
|
|
return ResultCode.NotImplemented;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
identifier = _nsdSettings.Environment;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ResultCode Resolve(ServiceCtx context, string address, out string resolvedAddress)
|
|
|
|
|
{
|
|
|
|
|
if (address != "api.sect.srv.nintendo.net" || address != "conntest.nintendowifi.net")
|
|
|
|
|
{
|
|
|
|
|
// TODO: Load Environment from the savedata.
|
|
|
|
|
address = address.Replace("%", _nsdSettings.Environment);
|
|
|
|
|
|
|
|
|
|
resolvedAddress = "";
|
|
|
|
|
|
|
|
|
|
if (_nsdSettings == null)
|
|
|
|
|
{
|
|
|
|
|
return ResultCode.SettingsNotInitialized;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!_nsdSettings.Initialized)
|
|
|
|
|
{
|
|
|
|
|
return ResultCode.SettingsNotLoaded;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (address)
|
|
|
|
|
{
|
|
|
|
|
case "e97b8a9d672e4ce4845ec6947cd66ef6-sb-api.accounts.nintendo.com": // dp1 environment
|
|
|
|
|
resolvedAddress = "e97b8a9d672e4ce4845ec6947cd66ef6-sb.baas.nintendo.com";
|
|
|
|
|
break;
|
|
|
|
|
case "api.accounts.nintendo.com": // dp1 environment
|
|
|
|
|
resolvedAddress = "e0d67c509fb203858ebcb2fe3f88c2aa.baas.nintendo.com";
|
|
|
|
|
break;
|
|
|
|
|
case "e97b8a9d672e4ce4845ec6947cd66ef6-sb.accounts.nintendo.com": // lp1 environment
|
|
|
|
|
resolvedAddress = "e97b8a9d672e4ce4845ec6947cd66ef6-sb.baas.nintendo.com";
|
|
|
|
|
break;
|
|
|
|
|
case "accounts.nintendo.com": // lp1 environment
|
|
|
|
|
resolvedAddress = "e0d67c509fb203858ebcb2fe3f88c2aa.baas.nintendo.com";
|
|
|
|
|
break;
|
|
|
|
|
/*
|
|
|
|
|
// TODO: Determine fields of the struct.
|
|
|
|
|
case "": // + 0xEB8 || + 0x2BE8
|
|
|
|
|
resolvedAddress = ""; // + 0xEB8 + 0x300 || + 0x2BE8 + 0x300
|
|
|
|
|
break;
|
|
|
|
|
*/
|
|
|
|
|
default:
|
|
|
|
|
resolvedAddress = address;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
resolvedAddress = address;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ResultCode ResolveEx(ServiceCtx context, out ResultCode resultCode, out string resolvedAddress)
|
|
|
|
|
{
|
|
|
|
|
(long inputPosition, long inputSize) = context.Request.GetBufferType0x21();
|
|
|
|
|
|
2020-05-04 00:54:50 +02:00
|
|
|
|
byte[] addressBuffer = new byte[inputSize];
|
|
|
|
|
|
|
|
|
|
context.Memory.Read((ulong)inputPosition, addressBuffer);
|
|
|
|
|
|
|
|
|
|
string address = Encoding.UTF8.GetString(addressBuffer);
|
Implement Bluetooth, Btm, Hid and Nsd services and calls. (#761)
- Implement `btdrv` service (IBluetoothDriver).
Implement call `InitializeBluetoothLe` for initialize events of `bt` service according to RE.
- Implement `bt` service (IBluetoothUser).
Implement call `RegisterBleEvent` according to RE.
- Add a placeholder for the `btm` service (close #750).
- Implement `btm:u` service (IBtmUser) (close #751).
Implement call `GetCore` according to RE (close #752).
- Implement `IBtmUserCore` and calls `AcquireBleScanEvent`, `AcquireBleConnectionEvent`, `AcquireBleServiceDiscoveryEvent` and `AcquireBleMtuConfigEvent` according to RE.
- Implement `SetPalmaBoostMode` in `IHidServer` according to RE.
- Add stub for `SetIsPalmaAllConnectable` in `IHidServer` because we will not support Palma devices soon.
- Implement `nsd:a` and `nsd:u` service (IManager) (close #755).
Implement call `ResolveEx` according to RE (close #756).
Implement calls `GetSettingName`, `GetEnvironmentIdentifier`, `GetDeviceId`, `DeleteSettings`, `Resolve`, `ReadSaveDataFromFsForTest`, `WriteSaveDataToFsForTest` and `DeleteSaveDataOfFsForTest` according to RE.
2019-09-06 16:58:50 +02:00
|
|
|
|
|
|
|
|
|
resultCode = Resolve(context, address, out resolvedAddress);
|
|
|
|
|
|
|
|
|
|
if (resultCode != ResultCode.Success)
|
|
|
|
|
{
|
|
|
|
|
resolvedAddress = _dummyAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_nsdSettings.TestMode)
|
|
|
|
|
{
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return resultCode;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|