imxtools/sbtools: fix file type detection
[maemo-rb.git] / utils / imxtools / sbtools / sbtoelf.c
blob98bb2dcc4546d20b0bb29d79a52d22a8d60ed299
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2010 Bertrik Sikken
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
23 * .sb file parser and chunk extractor
25 * Based on amsinfo, which is
26 * Copyright © 2008 Rafaël Carré <rafael.carre@gmail.com>
29 #define _ISOC99_SOURCE /* snprintf() */
30 #include <stdio.h>
31 #include <errno.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <ctype.h>
35 #include <time.h>
36 #include <stdarg.h>
37 #include <strings.h>
38 #include <getopt.h>
40 #include "crypto.h"
41 #include "elf.h"
42 #include "sb.h"
43 #include "sb1.h"
44 #include "misc.h"
46 /* all blocks are sized as a multiple of 0x1ff */
47 #define PAD_TO_BOUNDARY(x) (((x) + 0x1ff) & ~0x1ff)
49 /* If you find a firmware that breaks the known format ^^ */
50 #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)
52 #define crypto_cbc(...) \
53 do { int ret = crypto_cbc(__VA_ARGS__); \
54 if(ret != CRYPTO_ERROR_SUCCESS) \
55 bug("crypto_cbc error: %d\n", ret); \
56 }while(0)
58 /* globals */
60 static char *g_out_prefix;
61 static bool g_elf_simplify = true;
63 static void elf_printf(void *user, bool error, const char *fmt, ...)
65 if(!g_debug && !error)
66 return;
67 (void) user;
68 va_list args;
69 va_start(args, fmt);
70 vprintf(fmt, args);
71 va_end(args);
74 static void elf_write(void *user, uint32_t addr, const void *buf, size_t count)
76 FILE *f = user;
77 fseek(f, addr, SEEK_SET);
78 fwrite(buf, count, 1, f);
81 static void extract_elf_section(struct elf_params_t *elf, int count, uint32_t id)
83 char name[5];
84 char *filename = xmalloc(strlen(g_out_prefix) + 32);
85 sb_fill_section_name(name, id);
86 sprintf(filename, "%s%s.%d.elf", g_out_prefix, name, count);
87 if(g_debug)
88 printf("Write boot section %s to %s\n", name, filename);
90 FILE *fd = fopen(filename, "wb");
91 free(filename);
93 if(fd == NULL)
94 return;
95 if(g_elf_simplify)
96 elf_simplify(elf);
97 elf_write_file(elf, elf_write, elf_printf, fd);
98 fclose(fd);
101 static void extract_sb_section(struct sb_section_t *sec)
103 if(sec->is_data)
105 char sec_name[5];
106 char *filename = xmalloc(strlen(g_out_prefix) + 32);
107 sb_fill_section_name(sec_name, sec->identifier);
108 sprintf(filename, "%s%s.bin", g_out_prefix, sec_name);
109 FILE *fd = fopen(filename, "wb");
110 if(fd == NULL)
111 bugp("Cannot open %s for writing\n", filename);
112 if(g_debug)
113 printf("Write data section %s to %s\n", sec_name, filename);
114 free(filename);
116 for(int j = 0; j < sec->nr_insts; j++)
118 assert(sec->insts[j].inst == SB_INST_DATA);
119 fwrite(sec->insts[j].data, sec->insts[j].size, 1, fd);
121 fclose(fd);
124 int elf_count = 0;
125 struct elf_params_t elf;
126 elf_init(&elf);
128 for(int i = 0; i < sec->nr_insts; i++)
130 struct sb_inst_t *inst = &sec->insts[i];
131 switch(inst->inst)
133 case SB_INST_LOAD:
134 elf_add_load_section(&elf, inst->addr, inst->size, inst->data);
135 break;
136 case SB_INST_FILL:
137 elf_add_fill_section(&elf, inst->addr, inst->size, inst->pattern);
138 break;
139 case SB_INST_CALL:
140 case SB_INST_JUMP:
141 elf_set_start_addr(&elf, inst->addr);
142 extract_elf_section(&elf, elf_count++, sec->identifier);
143 elf_release(&elf);
144 elf_init(&elf);
145 break;
146 default:
147 /* ignore mode and nop */
148 break;
152 if(!elf_is_empty(&elf))
153 extract_elf_section(&elf, elf_count, sec->identifier);
154 elf_release(&elf);
157 static void extract_sb_file(struct sb_file_t *file)
159 for(int i = 0; i < file->nr_sections; i++)
160 extract_sb_section(&file->sections[i]);
163 static void extract_elf(struct elf_params_t *elf, int count)
165 char *filename = xmalloc(strlen(g_out_prefix) + 32);
166 sprintf(filename, "%s.%d.elf", g_out_prefix, count);
167 if(g_debug)
168 printf("Write boot content to %s\n", filename);
170 FILE *fd = fopen(filename, "wb");
171 free(filename);
173 if(fd == NULL)
174 return;
175 if(g_elf_simplify)
176 elf_simplify(elf);
177 elf_write_file(elf, elf_write, elf_printf, fd);
178 fclose(fd);
181 static void extract_sb1_file(struct sb1_file_t *file)
183 int elf_count = 0;
184 struct elf_params_t elf;
185 elf_init(&elf);
187 for(int i = 0; i < file->nr_insts; i++)
189 struct sb1_inst_t *inst = &file->insts[i];
190 switch(inst->cmd)
192 case SB1_INST_LOAD:
193 elf_add_load_section(&elf, inst->addr, inst->size, inst->data);
194 break;
195 case SB1_INST_FILL:
196 elf_add_fill_section(&elf, inst->addr, inst->size, inst->pattern);
197 break;
198 case SB1_INST_CALL:
199 case SB1_INST_JUMP:
200 elf_set_start_addr(&elf, inst->addr);
201 extract_elf(&elf, elf_count++);
202 elf_release(&elf);
203 elf_init(&elf);
204 break;
205 default:
206 /* ignore mode and nop */
207 break;
211 if(!elf_is_empty(&elf))
212 extract_elf(&elf, elf_count);
213 elf_release(&elf);
216 static void usage(void)
218 printf("Usage: sbtoelf [options] sb-file\n");
219 printf("Options:\n");
220 printf(" -?/--help\tDisplay this message\n");
221 printf(" -o <prefix>\tEnable output and set prefix\n");
222 printf(" -d/--debug\tEnable debug output*\n");
223 printf(" -k <file>\tAdd key file\n");
224 printf(" -z\t\tAdd zero key\n");
225 printf(" -r\t\tUse raw command mode\n");
226 printf(" -a/--add-key <key>\tAdd single key (hex or usbotp)\n");
227 printf(" -n/--no-color\tDisable output colors\n");
228 printf(" -l/--loopback <file>\tProduce sb file out of extracted description*\n");
229 printf(" -f/--force\tForce reading even without a key*\n");
230 printf(" -1/--v1\tForce to read file as a version 1 file\n");
231 printf(" -2/--v2\tForce to read file as a version 2 file\n");
232 printf(" -s/--no-simpl\tPrevent elf files from being simplified*\n");
233 printf(" -x\t\tUse default sb1 key\n");
234 printf("Options marked with a * are for debug purpose only\n");
235 exit(1);
238 static void sb_printf(void *user, bool error, color_t c, const char *fmt, ...)
240 (void) user;
241 (void) error;
242 va_list args;
243 va_start(args, fmt);
244 color(c);
245 vprintf(fmt, args);
246 va_end(args);
249 static struct crypto_key_t g_zero_key =
251 .method = CRYPTO_KEY,
252 .u.key = {0}
257 enum sb_version_guess_t
259 SB_VERSION_1,
260 SB_VERSION_2,
261 SB_VERSION_UNK,
264 enum sb_version_guess_t guess_sb_version(const char *filename)
266 #define ret(x) do { fclose(f); return x; } while(0)
267 FILE *f = fopen(filename, "rb");
268 if(f == NULL)
269 bugp("Cannot open file for reading\n");
270 fseek(f, 0, SEEK_END);
271 long file_size = ftell(f);
272 fseek(f, 0, SEEK_SET);
273 // check signature
274 uint8_t sig[4];
275 if(fseek(f, 20, SEEK_SET))
276 ret(SB_VERSION_UNK);
277 if(fread(sig, 4, 1, f) != 1)
278 ret(SB_VERSION_UNK);
279 if(memcmp(sig, "STMP", 4) != 0)
280 ret(SB_VERSION_UNK);
281 // check header size (v1)
282 uint32_t hdr_size;
283 if(fseek(f, 8, SEEK_SET))
284 ret(SB_VERSION_UNK);
285 if(fread(&hdr_size, 4, 1, f) != 1)
286 ret(SB_VERSION_UNK);
287 if(hdr_size == 0x34)
288 ret(SB_VERSION_1);
289 // check image size (v2)
290 uint32_t img_size;
291 if(fseek(f, 28, SEEK_SET))
292 ret(SB_VERSION_UNK);
293 if(fread(&img_size, 4, 1, f) != 1)
294 ret(SB_VERSION_UNK);
295 if(img_size * 16 == (uint32_t)file_size)
296 ret(SB_VERSION_2);
297 ret(SB_VERSION_UNK);
298 #undef ret
301 int main(int argc, char **argv)
303 bool raw_mode = false;
304 const char *loopback = NULL;
305 bool force_sb1 = false;
306 bool force_sb2 = false;
308 while(1)
310 static struct option long_options[] =
312 {"help", no_argument, 0, '?'},
313 {"debug", no_argument, 0, 'd'},
314 {"add-key", required_argument, 0, 'a'},
315 {"no-color", no_argument, 0, 'n'},
316 {"loopback", required_argument, 0, 'l'},
317 {"force", no_argument, 0, 'f'},
318 {"v1", no_argument, 0, '1'},
319 {"v2", no_argument, 0, '2'},
320 {"no-simpl", no_argument, 0, 's'},
321 {0, 0, 0, 0}
324 int c = getopt_long(argc, argv, "?do:k:zra:nl:f12xs", long_options, NULL);
325 if(c == -1)
326 break;
327 switch(c)
329 case -1:
330 break;
331 case 'l':
332 if(loopback)
333 bug("Only one loopback file can be specified !\n");
334 loopback = optarg;
335 break;
336 case 'n':
337 enable_color(false);
338 break;
339 case 'd':
340 g_debug = true;
341 break;
342 case '?':
343 usage();
344 break;
345 case 'o':
346 g_out_prefix = optarg;
347 break;
348 case 'f':
349 g_force = true;
350 break;
351 case 'k':
353 if(!add_keys_from_file(optarg))
354 bug("Cannot add keys from %s\n", optarg);
355 break;
357 case 'z':
358 add_keys(&g_zero_key, 1);
359 break;
360 case 'x':
362 struct crypto_key_t key;
363 sb1_get_default_key(&key);
364 add_keys(&key, 1);
365 break;
367 case 'r':
368 raw_mode = true;
369 break;
370 case 'a':
372 struct crypto_key_t key;
373 char *s = optarg;
374 if(!parse_key(&s, &key))
375 bug("Invalid key specified as argument\n");
376 if(*s != 0)
377 bug("Trailing characters after key specified as argument\n");
378 add_keys(&key, 1);
379 break;
381 case '1':
382 force_sb1 = true;
383 break;
384 case '2':
385 force_sb2 = true;
386 break;
387 case 's':
388 g_elf_simplify = false;
389 break;
390 default:
391 abort();
395 if(force_sb1 && force_sb2)
396 bug("You cannot force both version 1 and 2\n");
398 if(argc - optind != 1)
400 usage();
401 return 1;
404 const char *sb_filename = argv[optind];
406 enum sb_version_guess_t ver = guess_sb_version(sb_filename);
408 if(force_sb2 || ver == SB_VERSION_2)
410 enum sb_error_t err;
411 struct sb_file_t *file = sb_read_file(sb_filename, raw_mode, NULL, sb_printf, &err);
412 if(file == NULL)
414 color(OFF);
415 printf("SB read failed: %d\n", err);
416 return 1;
419 color(OFF);
420 if(g_out_prefix)
421 extract_sb_file(file);
422 if(g_debug)
424 color(GREY);
425 printf("[Debug output]\n");
426 sb_dump(file, NULL, sb_printf);
428 if(loopback)
430 /* sb_read_file will fill real key and IV but we don't want to override
431 * them when looping back otherwise the output will be inconsistent and
432 * garbage */
433 file->override_real_key = false;
434 file->override_crypto_iv = false;
435 sb_write_file(file, loopback);
437 sb_free(file);
439 else if(force_sb1 || ver == SB_VERSION_1)
441 enum sb1_error_t err;
442 struct sb1_file_t *file = sb1_read_file(sb_filename, NULL, sb_printf, &err);
443 if(file == NULL)
445 color(OFF);
446 printf("SB read failed: %d\n", err);
447 return 1;
450 color(OFF);
451 if(g_out_prefix)
452 extract_sb1_file(file);
453 if(g_debug)
455 color(GREY);
456 printf("[Debug output]\n");
457 sb1_dump(file, NULL, sb_printf);
459 if(loopback)
460 sb1_write_file(file, loopback);
462 sb1_free(file);
464 else
466 color(OFF);
467 printf("Cannot guess file type, are you sure it's a valid image ?\n");
468 return 1;
470 clear_keys();
472 return 0;