101 lines
2 KiB
C
101 lines
2 KiB
C
/*
|
|
This file is part of the ChipWhisperer Example Targets
|
|
Copyright (C) 2012-2015 NewAE Technology Inc.
|
|
|
|
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/>.
|
|
*/
|
|
|
|
#include "hal.h"
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#define BUFLEN 64
|
|
|
|
static void delay_2_ms(void);
|
|
|
|
void my_puts(char *c)
|
|
{
|
|
do {
|
|
putch(*c);
|
|
|
|
} while (*++c);
|
|
}
|
|
|
|
static void delay_2_ms()
|
|
{
|
|
for (volatile unsigned int i=0; i < 0xfff; i++ ){
|
|
;
|
|
}
|
|
}
|
|
|
|
void my_read(char *buf, int len)
|
|
{
|
|
for(int i = 0; i < len; i++) {
|
|
while (buf[i] = getch(), buf[i] == '\0');
|
|
|
|
if (buf[i] == '\n') {
|
|
buf[i] = '\0';
|
|
return;
|
|
}
|
|
}
|
|
buf[len - 1] = '\0';
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
platform_init();
|
|
init_uart();
|
|
|
|
char passwd[32];
|
|
char correct_passwd[] = "xxxxx";
|
|
|
|
while(1){
|
|
|
|
my_puts("*****Safe-o-matic 3000 Booting...\n");
|
|
|
|
//Give them one last warning
|
|
my_puts("WARNING: UNAUTHORIZED ACCESS WILL BE PUNISHED\n");
|
|
|
|
//Get password
|
|
my_puts("Please enter password to continue: ");
|
|
my_read(passwd, 32);
|
|
|
|
uint8_t passbad = 0;
|
|
for(uint8_t i = 0; i < sizeof(correct_passwd); i++){
|
|
if (correct_passwd[i] != passwd[i]){
|
|
passbad = 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (passbad){
|
|
delay_2_ms();
|
|
delay_2_ms();
|
|
my_puts("Wrong password. Access denied!\n");
|
|
my_puts("\n");
|
|
led_error(1);
|
|
} else {
|
|
my_puts("Access granted, welcome!\n");
|
|
led_ok(1);
|
|
}
|
|
|
|
//All done;
|
|
while(1);
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
|