2018-11-10 20:56:43 +00:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-11-10 20:56:43 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "fatal_repair.hpp"
|
2019-07-19 03:09:35 +01:00
|
|
|
#include "fatal_service_for_self.hpp"
|
2018-11-10 20:56:43 +00:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::fatal::srv {
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
namespace {
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
bool IsInRepair() {
|
|
|
|
/* Before firmware 3.0.0, this wasn't implemented. */
|
2019-10-18 03:39:22 +01:00
|
|
|
if (hos::GetVersion() < hos::Version_300) {
|
2019-07-19 03:09:35 +01:00
|
|
|
return false;
|
2018-11-10 21:38:17 +00:00
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
bool in_repair;
|
2019-10-18 18:37:03 +01:00
|
|
|
return R_SUCCEEDED(setsysGetInRepairProcessEnableFlag(&in_repair)) && in_repair;
|
2018-11-30 13:33:35 +00:00
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
bool IsInRepairWithoutVolHeld() {
|
|
|
|
if (IsInRepair()) {
|
|
|
|
GpioPadSession vol_btn;
|
|
|
|
if (R_FAILED(gpioOpenSession(&vol_btn, GpioPadName_ButtonVolUp))) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure we close even on early return. */
|
|
|
|
ON_SCOPE_EXIT { gpioPadClose(&vol_btn); };
|
|
|
|
|
|
|
|
/* Set direction input. */
|
|
|
|
gpioPadSetDirection(&vol_btn, GpioDirection_Input);
|
|
|
|
|
|
|
|
/* Ensure that we're holding the volume button for a full second. */
|
2019-09-24 11:15:36 +01:00
|
|
|
os::TimeoutHelper timeout_helper(1'000'000'000ul);
|
2019-07-19 03:09:35 +01:00
|
|
|
while (!timeout_helper.TimedOut()) {
|
|
|
|
GpioValue val;
|
|
|
|
if (R_FAILED(gpioPadGetValue(&vol_btn, &val)) || val != GpioValue_Low) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sleep for 100 ms. */
|
|
|
|
svcSleepThread(100'000'000ul);
|
|
|
|
}
|
|
|
|
}
|
2018-11-10 21:15:48 +00:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
return false;
|
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
bool NeedsRunTimeReviser() {
|
|
|
|
/* Before firmware 5.0.0, this wasn't implemented. */
|
2019-10-18 18:37:03 +01:00
|
|
|
if (hos::GetVersion() < hos::Version_500) {
|
2019-07-19 03:09:35 +01:00
|
|
|
return false;
|
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
bool requires_time_reviser;
|
2019-10-18 18:37:03 +01:00
|
|
|
return R_SUCCEEDED(setsysGetRequiresRunRepairTimeReviser(&requires_time_reviser)) && requires_time_reviser;
|
2018-11-10 21:38:17 +00:00
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
bool IsTimeReviserCartridgeInserted() {
|
|
|
|
FsGameCardHandle gc_hnd;
|
|
|
|
u8 gc_attr;
|
|
|
|
{
|
|
|
|
FsDeviceOperator devop;
|
|
|
|
if (R_FAILED(fsOpenDeviceOperator(&devop))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure we close even on early return. */
|
|
|
|
ON_SCOPE_EXIT { fsDeviceOperatorClose(&devop); };
|
|
|
|
|
|
|
|
/* Check that a gamecard is inserted. */
|
|
|
|
bool inserted;
|
|
|
|
if (R_FAILED(fsDeviceOperatorIsGameCardInserted(&devop, &inserted)) || !inserted) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that we can retrieve the gamecard's attributes. */
|
|
|
|
if (R_FAILED(fsDeviceOperatorGetGameCardHandle(&devop, &gc_hnd)) || R_FAILED(fsDeviceOperatorGetGameCardAttribute(&devop, &gc_hnd, &gc_attr))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
/* Check that the gamecard is a repair tool. */
|
|
|
|
return (gc_attr & FsGameCardAttribute_Repair) == FsGameCardAttribute_Repair;
|
2018-11-10 21:38:17 +00:00
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
bool IsInRepairWithoutTimeReviserCartridge() {
|
|
|
|
return NeedsRunTimeReviser() && IsTimeReviserCartridgeInserted();
|
2018-11-10 21:38:17 +00:00
|
|
|
}
|
2019-07-19 03:09:35 +01:00
|
|
|
|
2018-11-10 21:38:17 +00:00
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
void CheckRepairStatus() {
|
|
|
|
if (IsInRepairWithoutVolHeld()) {
|
2019-10-24 09:40:44 +01:00
|
|
|
ThrowFatalForSelf(ResultInRepairWithoutVolHeld());
|
2019-07-19 03:09:35 +01:00
|
|
|
}
|
2018-11-10 21:15:48 +00:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
if (IsInRepairWithoutTimeReviserCartridge()) {
|
2019-10-24 09:40:44 +01:00
|
|
|
ThrowFatalForSelf(ResultInRepairWithoutTimeReviserCartridge());
|
2019-07-19 03:09:35 +01:00
|
|
|
}
|
2018-11-10 21:15:48 +00:00
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2018-11-10 20:56:43 +00:00
|
|
|
}
|