/* * 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 #if 1 /* ANSI colors */ # define color(a) printf("%s",a) char OFF[] = { 0x1b, 0x5b, 0x31, 0x3b, '0', '0', 0x6d, '\0' }; 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' }; #else /* disable colors */ # define color(a) #endif #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; uint16_t unknown_1, unknown_2; uint32_t unknown_4_2,unknown_4_3; static void *xmalloc(size_t s) /* malloc helper */ { void * r = malloc(s); if(!r) bugp("malloc"); return r; } /* checksums the firmware (the firmware header contains the verification) */ static uint32_t do_checksum(void) { uint32_t c = 0; size_t i = 0x400/4; while(i<(0x400+firmware_sz)/4) c += ((uint32_t*)buf)[i++]; return c; } /* verify the firmware header */ static void check(void) { uint32_t checksum2; assert(sz >= 0x400 && sz % 0x200 == 0); size_t i; checksum2 = 0; for(i=0;i start); */ /* assert(stop - start == size); */ if(stop - start != size) { color(RED); printf("STOP - START != SIZE || 0x%.8x - 0x%.8x == 0x%.8x != 0x%.8x\n", stop, start, stop - start, size); } color(RED); printf("0x%.8x -> 0x%.8x SIZE 0x%.6x\n", start, stop, size); uint32_t first = get32le(off+0x10); /* ? */ printf("? = 0x%.8x , ",first); #endif 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"); } 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 = get32le(off+12); } 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); } 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); if( (fd = open(argv[1],O_RDONLY)) == -1 ) bugp("opening firmware failed"); if(fstat(fd,&st) == -1) bugp("firmware stat() failed"); sz = st.st_size; buf=xmalloc(sz); if(read(fd,buf,sz)!=(ssize_t)sz) /* load the whole file into memory */ bugp("reading firmware"); close(fd); check(); /* verify header and checksums */ extract(); /* split in blocks */ free(buf); return 0; }