From 03f88d53ee3ac69add22d248103a9d468c0b36d2 Mon Sep 17 00:00:00 2001 From: Rafaël Carré Date: Tue, 27 Oct 2009 11:19:49 +0000 Subject: Replace amsinfo by another version which: - supports Clipv2/Fuzev2 firmwares - dumps firmware and library blocks in current directory - adds assertions and boundaries checks about the firmware format - has nice colors ! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23366 a1c6a512-1295-4272-9138-f99709370657 --- utils/AMS/hacking/Makefile | 2 +- utils/AMS/hacking/amsinfo.c | 599 ++++++++++++++++++++++++++++++++++---------- 2 files changed, 473 insertions(+), 128 deletions(-) (limited to 'utils/AMS/hacking') diff --git a/utils/AMS/hacking/Makefile b/utils/AMS/hacking/Makefile index 1a297bc3ab..bd062cfc5c 100644 --- a/utils/AMS/hacking/Makefile +++ b/utils/AMS/hacking/Makefile @@ -1,7 +1,7 @@ all: amsinfo amsinfo: amsinfo.c - gcc -o amsinfo -W -Wall amsinfo.c + $(CC) -ansi -o amsinfo -W -Wall amsinfo.c clean: rm -fr amsinfo diff --git a/utils/AMS/hacking/amsinfo.c b/utils/AMS/hacking/amsinfo.c index 1aed9db075..631345f2f9 100644 --- a/utils/AMS/hacking/amsinfo.c +++ b/utils/AMS/hacking/amsinfo.c @@ -1,175 +1,520 @@ /* - -amsinfo - a tool for examining AMS firmware files - -Copyright (C) Dave Chapman 2007 - -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 2 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, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA - -*/ - + * Copyright © 2008 Rafaël Carré + * + * 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 2 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, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA + * + */ + +#define _ISOC99_SOURCE /* snprintf() */ #include -#include -#include #include #include #include +#include #include +#include +#include +#include +#if 1 /* ANSI colors */ -/* Win32 compatibility */ -#ifndef O_BINARY -#define O_BINARY 0 -#endif - - -#define PAD_TO_BOUNDARY(x) ((x) + 0x1ff) & ~0x1ff; - +# define color(a) printf("%s",a) +char OFF[] = { 0x1b, 0x5b, 0x31, 0x3b, '0', '0', 0x6d, '\0' }; -static off_t filesize(int fd) { - struct stat buf; +char GREY[] = { 0x1b, 0x5b, 0x31, 0x3b, '3', '0', 0x6d, '\0' }; +char RED[] = { 0x1b, 0x5b, 0x31, 0x3b, '3', '1', 0x6d, '\0' }; +char GREEN[] = { 0x1b, 0x5b, 0x31, 0x3b, '3', '2', 0x6d, '\0' }; +char YELLOW[] = { 0x1b, 0x5b, 0x31, 0x3b, '3', '3', 0x6d, '\0' }; +char BLUE[] = { 0x1b, 0x5b, 0x31, 0x3b, '3', '4', 0x6d, '\0' }; - if (fstat(fd,&buf) < 0) { - perror("[ERR] Checking filesize of input file"); - return -1; - } else { - return(buf.st_size); - } -} +#else + /* disable colors */ +# define color(a) +#endif -static uint32_t get_uint32le(unsigned char* p) +#define LIB_OFFSET 160 /* FIXME (see below) */ +/* The alignement of library blocks (in number of 0x200 bytes blocks) + * alignement - md5sum - filename - model + * 120 : fc9dd6116001b3e6a150b898f1b091f0 m200p-4.1.08A.bin M200 + * 128 : 82e3194310d1514e3bbcd06e84c4add3 m200p.bin Fuze + * 160 : c12711342169c66e209540cd1f27cd26 m300f.bin CLIP + * + * Note : the size of library blocks is variable: + * + * For m200p-4.1.08A.bin it's always 0x1e000 blocks = 240 * 0x200 + * + * For m200p.bin it can be 0x20000 (256*0x200) or 0x40000 (512*0x200) + * (for "acp_decoder" and "sd_reload__" blocks) + * + * For m300f.bin it can be 0x28000 (320*0x200) or 0x14000 (160 * 0x200) + * + */ + +#define bug(...) do { fprintf(stderr,"ERROR: "__VA_ARGS__); exit(1); } while(0) +#define bugp(a) do { perror("ERROR: "a); exit(1); } while(0) + +/* byte swapping */ +#define get32le(a) ((uint32_t) \ + ( buf[a+3] << 24 | buf[a+2] << 16 | buf[a+1] << 8 | buf[a] )) +#define get16le(a) ((uint16_t)( buf[a+1] << 8 | buf[a] )) + +/* all blocks are sized as a multiple of 0x1ff */ +#define PAD_TO_BOUNDARY(x) (((x) + 0x1ff) & ~0x1ff) + +/* If you find a firmware that breaks the known format ^^ */ +#define assert(a) do { if(!(a)) { fprintf(stderr,"Assertion \"%s\" failed in %s() line %d!\n\nPlease send us your firmware!\n",#a,__func__,__LINE__); exit(1); } } while(0) + +/* globals */ + +size_t sz; /* file size */ +uint8_t *buf; /* file content */ + + +/* 1st block description */ +uint32_t idx,checksum,bs_multiplier,firmware_sz; +uint32_t unknown_4_1; uint8_t unknown_1,id; uint16_t unknown_2; +uint32_t unknown_4_2,unknown_4_3; + +static void *xmalloc(size_t s) /* malloc helper */ { - return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24); + void * r = malloc(s); + if(!r) bugp("malloc"); + return r; } -static uint16_t get_uint16le(unsigned char* p) +/* known models */ +static const char * model(uint8_t id) { - return p[0] | (p[1] << 8); + switch(id) + { + case 0x1E: return "FUZE"; break; + case 0x22: return "CLIP"; break; + case 0x23: return "C200"; break; + case 0x24: return "E200"; break; + case 0x25: return "M200"; break; + case 0x27: return "CLV2"; break; + case 0x70: + case 0x6d: return "FUZ2"; break; + default: + printf("Unknown ID 0x%x\n", id); + + assert(id == 0x1E || (id > 0x21 && id < 0x26)); + return "UNKNOWN!"; + } } -static int calc_checksum(unsigned char* buf, int n) +/* checksums the firmware (the firmware header contains the verification) */ +static uint32_t do_checksum(void) { - int sum = 0; - int i; + uint32_t c = 0; - for (i=0;i= 0x400 && sz % 0x200 == 0); + + size_t i; + checksum2 = 0; + for(i=0;i=0x3c && i<=0x3f && get32le(0x3c)==0x00005000) + ))); + + /* the 2nd block is identical, except that the 1st byte has been incremented */ + assert(buf[0x0]==0&&buf[0x200]==1); + assert(!memcmp(&buf[1],&buf[0x201],0x1FF - shift)); } -static int dump_lib(unsigned char* buf, int i) +typedef enum { - int export_count; - int size; - int unknown1; - int baseaddr, endaddr; - - baseaddr = get_uint32le(&buf[i+0x04]); - endaddr = get_uint32le(&buf[i+0x08]); - size = get_uint32le(&buf[i+0x0c]); - unknown1 = get_uint32le(&buf[i+0x10]); - export_count = get_uint32le(&buf[i+0x14]); - - printf("0x%08x: \"%s\" 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",i, buf + i + get_uint32le(&buf[i]),baseaddr,endaddr,size,unknown1,export_count); - #if 0 - if (export_count > 1) { - for (j=0;j start); */ - n = read(fd, buf, len); + /* assert(stop - start == size); */ - if (n != len) { - fprintf(stderr,"[ERR] Could not read file\n"); - return 1; - } + if(stop - start != size) + { + color(RED); + printf("STOP - START != SIZE || 0x%.8x - 0x%.8x == 0x%.8x != 0x%.8x\n", + stop, start, stop - start, size); + } - close(fd); + color(RED); + printf("0x%.8x -> 0x%.8x SIZE 0x%.6x\n", start, stop, size); - /* Now we dump the firmware structure */ + uint32_t first = get32le(off+0x10); /* ? */ + printf("? = 0x%.8x , ",first); +#endif - dump_header(buf,0); /* First copy of header block */ -// dump_header(buf,0x200); /* Second copy of header block */ + uint32_t funcs = get32le(off+0x14); /* nmbr of functions */ + color(YELLOW); + printf("\t%d funcs",funcs); + + unsigned int i; + for(i=0;i\t0x%.6x\t\"%s\"\n", + (unsigned int)s, (unsigned int)(off+s), + &buf[off+get32le(off)]); + show_lib(off); + n_libs++; + break; + case PAD: + if(buf[off] == 0xff) + n_pads_ff++; + else + n_pads_deadbeef++; + padding++; + break; + case UNKNOWN: + unknown++; + n_unkn++; +#if 0 /* do not dump unknown blocks */ + snprintf(filename, sizeof(filename), "unknown%d", n_unkn); + f = fopen(filename, "w"); + if(f) + { + if( fwrite(buf+off, 0x200, 1, f) != 1 ) + bugp("unknown block"); + fclose(f); + } + else + bugp("unknown block"); +#endif + break; + case HEADER: + color(YELLOW); + printf("header block 0x%.6x\t->\t0x%.6x\n", + PAD_TO_BOUNDARY(get32le(off)), + (unsigned int)PAD_TO_BOUNDARY(off+get32le(off))); + snprintf(filename, sizeof(filename), "header%d", n_headers++); + f = fopen(filename,"w"); + if(!f) + bug("header"); + + if(fwrite(&buf[off],get32le(off),1,f)!=1) + bug(); + + fclose(f); + + break; + default: + abort(); + } + + if(t != PAD && t != UNKNOWN) + printf("\n"); +} - printf("Calculated firmware checksum: 0x%08x\n",calc_checksum(buf,firmware_size)); +static size_t verify_block(size_t off) +{ + assert(!(off%0x200)); + assert(off+0x200 < sz); + + size_t s = 0x200; + type t = UNKNOWN; + + size_t offset_str = get32le(off); + if(get32le(off) == 0xefbeadde ) + { +#if 0 /* some blocks begin with 0xdeadbeef but aren't padded with that value */ + unsigned int i; + for(i=0;i> 7 || !buf[off+offset_str+i]) + ok = 0; + if(buf[off+offset_str+11]) + ok = 0; + if(ok) /* library block */ + { + t = LIB; + s = LIB_OFFSET * 0x200; + while(s < get32le(off+12)) /* of course the minimum is the size + * specified in the block header */ + s <<= 1; + } + else + t = UNKNOWN; + } + else + t = UNKNOWN; + + if(t==UNKNOWN) + { + if(!strncmp((char*)buf+off+8,"HEADER",6)) + { + s = PAD_TO_BOUNDARY(get32le(off)); /* first 4 bytes le are the block size */ + t = HEADER; + } + } + + print_block(off,t); + + return PAD_TO_BOUNDARY(s); +} - /* Round size up to next multiple of 0x200 */ +static void extract(void) +{ + FILE *out = fopen("firmware","w"); + if(!out) + bug("firmware"); + + if(fwrite(&buf[0x400],firmware_sz,1,out)!=1) + bug("firmare writing"); + fclose(out); + + off_t off = PAD_TO_BOUNDARY(0x400 + firmware_sz); + unsigned int n = 0; + + printf("\n"); + color(RED); + printf("Extracting\n\n"); + + while((unsigned int)(off+0x200)\n",*argv); - i = firmware_size + 0x400; + if( (fd = open(argv[1],O_RDONLY)) == -1 ) + bugp("opening firmware failed"); - printf("LIBRARY BLOCKS:\n"); - printf("Offset Name BaseAddr EndAddr BlockSize Unknown1 EntryCount\n"); + if(fstat(fd,&st) == -1) + bugp("firmware stat() failed"); + sz = st.st_size; - while (get_uint32le(&buf[i]) != 0xffffffff) - { - i += dump_lib(buf,i); + buf=xmalloc(sz); + if(read(fd,buf,sz)!=(ssize_t)sz) /* load the whole file into memory */ + bugp("reading firmware"); - while (get_uint32le(&buf[i]) == 0xefbeadde) - i+=4; - } + close(fd); - printf("0x%08x: PADDING BLOCK\n",i); - - return 0; + check(); /* verify header and checksums */ + extract(); /* split in blocks */ + free(buf); + return 0; } -- cgit v1.2.3