filesystem: check signature of loadables with cbc-mc
This commit is contained in:
parent
27412ef03d
commit
43eddd123b
|
@ -10,11 +10,14 @@
|
||||||
#include "filesystem/ff.h"
|
#include "filesystem/ff.h"
|
||||||
#include "filesystem/select.h"
|
#include "filesystem/select.h"
|
||||||
|
|
||||||
|
|
||||||
|
const uint32_t signature_key[4] = {0,0,0,0};
|
||||||
|
|
||||||
extern void * sram_top;
|
extern void * sram_top;
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|
||||||
void execute_file (const char * fname){
|
void execute_file (const char * fname, uint8_t checksignature){
|
||||||
FRESULT res;
|
FRESULT res;
|
||||||
FIL file;
|
FIL file;
|
||||||
UINT readbytes;
|
UINT readbytes;
|
||||||
|
@ -27,6 +30,7 @@ void execute_file (const char * fname){
|
||||||
dst=(void (*)(void)) 0x10001800;
|
dst=(void (*)(void)) 0x10001800;
|
||||||
|
|
||||||
res=f_open(&file, fname, FA_OPEN_EXISTING|FA_READ);
|
res=f_open(&file, fname, FA_OPEN_EXISTING|FA_READ);
|
||||||
|
|
||||||
//lcdPrint("open: ");
|
//lcdPrint("open: ");
|
||||||
//lcdPrintln(f_get_rc_string(res));
|
//lcdPrintln(f_get_rc_string(res));
|
||||||
//lcdRefresh();
|
//lcdRefresh();
|
||||||
|
@ -42,6 +46,17 @@ void execute_file (const char * fname){
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if( checksignature ){
|
||||||
|
uint32_t mac[4];
|
||||||
|
uint32_t *data = (uint32_t*)dst;
|
||||||
|
uint32_t len = readbytes/4;
|
||||||
|
|
||||||
|
xxtea_cbcmac(mac, (uint32_t*)dst, len-4, signature_key);
|
||||||
|
if( data[len-4] != mac[0] || data[len-3] != mac[1]
|
||||||
|
|| data[len-2] != mac[2] || data[len-1] != mac[3] ){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
//lcdPrintInt(readbytes);
|
//lcdPrintInt(readbytes);
|
||||||
//lcdPrintln(" bytes");
|
//lcdPrintln(" bytes");
|
||||||
//lcdRefresh();
|
//lcdRefresh();
|
||||||
|
@ -60,6 +75,6 @@ void executeSelect(char *ext){
|
||||||
filename[2]=0;
|
filename[2]=0;
|
||||||
|
|
||||||
if( selectFile(filename+2,ext) == 0)
|
if( selectFile(filename+2,ext) == 0)
|
||||||
execute_file(filename);
|
execute_file(filename,0);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef _EXECUTE_H_
|
#ifndef _EXECUTE_H_
|
||||||
#define _EXECUTE_H_
|
#define _EXECUTE_H_
|
||||||
|
|
||||||
void execute_file (const char * fname);
|
void execute_file (const char * fname, uint8_t checksignature);
|
||||||
void executeSelect(char *ext);
|
void executeSelect(char *ext);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue