This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/arm9/source/pin.c

234 lines
6.6 KiB
C
Raw Normal View History

/*
* This file is part of Luma3DS
2020-04-25 14:26:21 +02:00
* Copyright (C) 2016-2020 Aurora Wright, TuxSH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that 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/>.
*
* Additional Terms 7.b and 7.c of GPLv3 apply to this file:
* * Requiring preservation of specified reasonable legal notices or
* author attributions in that material or in the Appropriate Legal
* Notices displayed by works containing it.
* * Prohibiting misrepresentation of the origin of that material,
* or requiring that modified versions of such material be marked in
* reasonable ways as different from the original version.
*/
/*
2016-09-08 23:07:03 +02:00
* Code originally by reworks
*/
#include "draw.h"
#include "config.h"
#include "screen.h"
#include "utils.h"
#include "memory.h"
#include "buttons.h"
#include "fs.h"
#include "pin.h"
#include "crypto.h"
2016-08-28 23:41:41 +02:00
static char pinKeyToLetter(u32 pressed)
{
static const char *keys = "AB--RLUD--XY";
u32 i;
for(i = 31; pressed > 1; i--) pressed /= 2;
return keys[31 - i];
}
2016-09-19 14:57:36 +02:00
void newPin(bool allowSkipping, u32 pinMode)
{
2016-11-15 14:08:58 +01:00
clearScreens(false);
2016-09-19 14:57:36 +02:00
u8 length = 4 + 2 * (pinMode - 1);
2017-05-07 17:58:44 +02:00
drawString(true, 10, 10, COLOR_TITLE, "Enter a new PIN using ABXY and the DPad");
drawString(true, 10, 10 + SPACING_Y, COLOR_TITLE, allowSkipping ? "Press START to skip, SELECT to reset" : "Press SELECT to reset");
2017-05-07 17:58:44 +02:00
drawFormattedString(true, 10, 10 + 3 * SPACING_Y, COLOR_WHITE, "PIN (%u digits): ", length);
2016-08-28 13:49:15 +02:00
//Pad to AES block length with zeroes
2016-11-12 14:10:44 +01:00
__attribute__((aligned(4))) u8 enteredPassword[AES_BLOCK_SIZE] = {0};
bool reset = false;
u8 cnt = 0;
while(cnt < length)
{
if(reset)
{
2018-06-14 18:13:57 +02:00
for(u32 i = 0; i < cnt; i++)
2017-05-07 17:58:44 +02:00
drawCharacter(true, 10 + (16 + 2 * i) * SPACING_X, 10 + 3 * SPACING_Y, COLOR_BLACK, (char)enteredPassword[i]);
cnt = 0;
reset = false;
}
u32 pressed;
do
{
pressed = waitInput(false);
}
while(!(pressed & PIN_BUTTONS));
pressed &= PIN_BUTTONS;
if(!allowSkipping) pressed &= ~BUTTON_START;
if(pressed & BUTTON_START) return;
2016-08-28 13:49:15 +02:00
if(pressed & BUTTON_SELECT)
{
reset = true;
continue;
}
if(!pressed) continue;
//Add character to password
enteredPassword[cnt] = (u8)pinKeyToLetter(pressed);
//Visualize character on screen
2017-05-07 17:58:44 +02:00
drawCharacter(true, 10 + (16 + 2 * cnt) * SPACING_X, 10 + 3 * SPACING_Y, COLOR_WHITE, enteredPassword[cnt]);
cnt++;
2016-08-16 22:46:41 +02:00
}
2016-09-08 02:12:29 +02:00
PinData pin;
2016-08-16 22:46:41 +02:00
memcpy(pin.magic, "PINF", 4);
pin.formatVersionMajor = PIN_VERSIONMAJOR;
pin.formatVersionMinor = PIN_VERSIONMINOR;
2016-11-12 14:10:44 +01:00
__attribute__((aligned(4))) u8 tmp[SHA_256_HASH_SIZE],
lengthBlock[AES_BLOCK_SIZE] = {0};
lengthBlock[0] = length;
computePinHash(tmp, lengthBlock);
memcpy(pin.lengthHash, tmp, sizeof(tmp));
computePinHash(tmp, enteredPassword);
memcpy(pin.hash, tmp, sizeof(tmp));
2016-10-12 02:28:08 +02:00
if(!fileWrite(&pin, PIN_FILE, sizeof(PinData)))
error("Error writing the PIN file");
}
2017-04-15 15:58:07 +02:00
bool verifyPin(u32 pinMode)
{
2016-09-08 02:12:29 +02:00
PinData pin;
2016-08-28 23:41:41 +02:00
2016-10-12 02:28:08 +02:00
if(fileRead(&pin, PIN_FILE, sizeof(PinData)) != sizeof(PinData) ||
2016-08-28 23:41:41 +02:00
memcmp(pin.magic, "PINF", 4) != 0 ||
pin.formatVersionMajor != PIN_VERSIONMAJOR ||
pin.formatVersionMinor != PIN_VERSIONMINOR)
2016-08-28 23:41:41 +02:00
return false;
2016-11-12 14:10:44 +01:00
__attribute__((aligned(4))) u8 tmp[SHA_256_HASH_SIZE],
lengthBlock[AES_BLOCK_SIZE] = {0};
lengthBlock[0] = 4 + 2 * (pinMode - 1);
2016-08-28 23:41:41 +02:00
computePinHash(tmp, lengthBlock);
2016-08-28 23:41:41 +02:00
//Test vector verification (check if SD card has been used on another console or PIN length changed)
if(memcmp(pin.lengthHash, tmp, sizeof(tmp)) != 0) return false;
2016-08-28 23:41:41 +02:00
initScreens();
swapFramebuffers(true);
2017-05-07 17:58:44 +02:00
drawString(true, 10, 10, COLOR_TITLE, "Enter the PIN using ABXY and the DPad to proceed");
drawString(true, 10, 10 + SPACING_Y, COLOR_TITLE, "Press START to shutdown, SELECT to clear");
2017-05-07 17:58:44 +02:00
drawFormattedString(true, 10, 10 + 3 * SPACING_Y, COLOR_WHITE, "PIN (%u digits): ", lengthBlock[0]);
2016-08-28 14:59:33 +02:00
bool isBottomSplashValid = getFileSize("splashpin.bin") == SCREEN_BOTTOM_FBSIZE;
2018-06-14 18:13:57 +02:00
if(isBottomSplashValid)
{
isBottomSplashValid = fileRead(fbs[0].bottom, "splashpin.bin", SCREEN_BOTTOM_FBSIZE) == SCREEN_BOTTOM_FBSIZE;
}
else
{
static const char *messageFile = "pinmessage.txt";
char message[801];
u32 messageSize = fileRead(message, messageFile, sizeof(message) - 1);
if(messageSize != 0)
{
message[messageSize] = 0;
drawString(false, 10, 10, COLOR_WHITE, message);
}
}
swapFramebuffers(false);
//Pad to AES block length with zeroes
__attribute__((aligned(4))) u8 enteredPassword[AES_BLOCK_SIZE] = {0};
bool unlock = false,
reset = false;
u8 cnt = 0;
while(!unlock)
{
if(reset)
{
2018-06-14 18:13:57 +02:00
for(u32 i = 0; i < cnt; i++)
2017-05-07 17:58:44 +02:00
drawCharacter(true, 10 + (16 + 2 * i) * SPACING_X, 10 + 3 * SPACING_Y, COLOR_BLACK, '*');
cnt = 0;
reset = false;
}
u32 pressed;
do
{
pressed = waitInput(false);
}
while(!(pressed & PIN_BUTTONS));
if(pressed & BUTTON_START) mcuPowerOff();
2016-08-16 22:59:25 +02:00
pressed &= PIN_BUTTONS;
if(pressed & BUTTON_SELECT)
{
reset = true;
continue;
}
if(!pressed) continue;
//Add character to password
enteredPassword[cnt] = (u8)pinKeyToLetter(pressed);
2017-04-15 15:58:07 +02:00
//Visualize character on screen
2017-05-07 17:58:44 +02:00
drawCharacter(true, 10 + (16 + 2 * cnt) * SPACING_X, 10 + 3 * SPACING_Y, COLOR_WHITE, '*');
if(++cnt < lengthBlock[0]) continue;
computePinHash(tmp, enteredPassword);
unlock = memcmp(pin.hash, tmp, sizeof(tmp)) == 0;
if(!unlock)
{
reset = true;
2018-06-14 18:13:57 +02:00
drawString(true, 10, 10 + 5 * SPACING_Y, COLOR_RED, "Wrong PIN, try again");
}
}
2016-08-28 23:41:41 +02:00
return true;
2017-05-07 17:58:44 +02:00
}