/* * This file is part of Luma3DS * Copyright (C) 2016 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 . * * Additional Terms 7.b of GPLv3 applies 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. */ /* * pin.c * Code to manage pin locking for 3ds. By reworks. */ #include "draw.h" #include "screen.h" #include "utils.h" #include "memory.h" #include "buttons.h" #include "fs.h" #include "pin.h" #include "crypto.h" bool readPin(PINData *out) { if(fileRead(out, "/luma/pin.bin") != sizeof(PINData) || memcmp(out->magic, "PINF", 4) != 0 || out->formatVersionMajor != PIN_VERSIONMAJOR || out->formatVersionMinor != PIN_VERSIONMINOR) return false; u8 __attribute__((aligned(4))) zeroes[16] = {0}; u8 __attribute__((aligned(4))) tmp[32]; computePINHash(tmp, zeroes, 1); return memcmp(out->testHash, tmp, 32) == 0; //Test vector verification (SD card has, or hasn't been used on another console) } static inline char PINKeyToLetter(u32 pressed) { const char keys[] = "AB--------XY"; u32 i; __asm__ volatile("clz %[i], %[pressed]" : [i] "=r" (i) : [pressed] "r" (pressed)); return keys[31 - i]; } void newPin(bool allowSkipping) { clearScreens(); char *title = allowSkipping ? "Press START to skip or enter a new PIN" : "Enter a new PIN to proceed"; drawString(title, 10, 10, COLOR_TITLE); drawString("PIN: ", 10, 10 + 2 * SPACING_Y, COLOR_WHITE); //Pad to AES block length with zeroes u8 __attribute__((aligned(4))) enteredPassword[16 * ((PIN_LENGTH + 15) / 16)] = {0}; u32 cnt = 0; int charDrawPos = 5 * SPACING_X; while(cnt < PIN_LENGTH) { u32 pressed; do { pressed = waitInput(); } while(!(pressed & PIN_BUTTONS)); pressed &= PIN_BUTTONS; if(!allowSkipping) pressed &= ~BUTTON_START; if(pressed & BUTTON_START) return; if(!pressed) continue; char key = PINKeyToLetter(pressed); enteredPassword[cnt++] = (u8)key; //Add character to password //Visualize character on screen drawCharacter(key, 10 + charDrawPos, 10 + 2 * SPACING_Y, COLOR_WHITE); charDrawPos += 2 * SPACING_X; } PINData pin; u8 __attribute__((aligned(4))) tmp[32]; u8 __attribute__((aligned(4))) zeroes[16] = {0}; memcpy(pin.magic, "PINF", 4); pin.formatVersionMajor = PIN_VERSIONMAJOR; pin.formatVersionMinor = PIN_VERSIONMINOR; computePINHash(tmp, zeroes, 1); memcpy(pin.testHash, tmp, 32); computePINHash(tmp, enteredPassword, (PIN_LENGTH + 15) / 16); memcpy(pin.hash, tmp, 32); if(!fileWrite(&pin, "/luma/pin.bin", sizeof(PINData))) { createDirectory("luma"); if(!fileWrite(&pin, "/luma/pin.bin", sizeof(PINData))) error("Error writing the PIN file"); } } void verifyPin(PINData *in) { initScreens(); //Pad to AES block length with zeroes u8 __attribute__((aligned(4))) enteredPassword[16 * ((PIN_LENGTH + 15) / 16)] = {0}; u32 cnt = 0; bool unlock = false; int charDrawPos = 5 * SPACING_X; while(!unlock) { drawString("Press START to shutdown or enter PIN to proceed", 10, 10, COLOR_TITLE); drawString("PIN: ", 10, 10 + 2 * SPACING_Y, COLOR_WHITE); u32 pressed; do { pressed = waitInput(); } while(!(pressed & PIN_BUTTONS)); if(pressed & BUTTON_START) mcuPowerOff(); pressed &= PIN_BUTTONS; if(!pressed) continue; char key = PINKeyToLetter(pressed); enteredPassword[cnt++] = (u8)key; //Add character to password //Visualize character on screen drawCharacter(key, 10 + charDrawPos, 10 + 2 * SPACING_Y, COLOR_WHITE); charDrawPos += 2 * SPACING_X; if(cnt >= PIN_LENGTH) { u8 __attribute__((aligned(4))) tmp[32]; computePINHash(tmp, enteredPassword, (PIN_LENGTH + 15) / 16); unlock = memcmp(in->hash, tmp, 32) == 0; if(!unlock) { charDrawPos = 5 * SPACING_X; cnt = 0; clearScreens(); drawString("Wrong PIN, try again", 10, 10 + 4 * SPACING_Y, COLOR_RED); } } } }