2 * Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
4 * This tool was based on:
5 * TP-Link WR941 V2 firmware checksum fixing tool.
6 * Copyright (C) 2008,2009 Wang Jian <lark@linux.net.cn>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
18 #include <unistd.h> /* for unlink() */
20 #include <getopt.h> /* for getopt() */
27 #include <arpa/inet.h>
28 #include <netinet/in.h>
32 #define ALIGN(x,a) ({ typeof(a) __a = (a); (((x) + __a - 1) & ~(__a - 1)); })
37 char *file_name; /* name of the file */
38 uint32_t file_size; /* length of the file */
42 uint32_t version; /* 0x00: header version */
43 char fw_version[48]; /* 0x04: fw version string */
44 uint32_t hw_id; /* 0x34: hardware id */
45 uint32_t hw_rev; /* 0x38: FIXME: hardware revision? */
46 uint32_t unk1; /* 0x3c: 0x00000000 */
47 uint8_t md5sum1[MD5SUM_LEN]; /* 0x40 */
48 uint32_t unk2; /* 0x50: 0x00000000 */
49 uint8_t md5sum2[MD5SUM_LEN]; /* 0x54 */
50 uint32_t unk3; /* 0x64: 0xffffffff */
52 uint32_t kernel_la; /* 0x68: kernel load address */
53 uint32_t kernel_ep; /* 0x6c: kernel entry point */
54 uint32_t fw_length; /* 0x70: total length of the image */
55 uint32_t kernel_ofs; /* 0x74: kernel data offset */
56 uint32_t kernel_len; /* 0x78: kernel data length */
57 uint32_t rootfs_ofs; /* 0x7c: rootfs data offset */
58 uint32_t rootfs_len; /* 0x80: rootfs data length */
59 uint32_t boot_ofs; /* 0x84: FIXME: seems to be unused */
60 uint32_t boot_len; /* 0x88: FIXME: seems to be unused */
61 uint16_t unk4; /* 0x8c: 0x55aa */
62 uint8_t sver_hi; /* 0x8e */
63 uint8_t sver_lo; /* 0x8f */
64 uint8_t unk5; /* 0x90: magic: 0xa5 */
65 uint8_t ver_hi; /* 0x91 */
66 uint8_t ver_mid; /* 0x92 */
67 uint8_t ver_lo; /* 0x93 */
69 } __attribute__ ((packed));
92 static char *progname;
93 static char *vendor = "TP-LINK Technologies";
94 static char *version = "ver. 1.0";
95 static char *fw_ver = "0.0.0";
96 static char *sver = "1.0";
97 static uint32_t hdr_ver = 2;
99 static char *board_id;
100 static struct board_info *board;
101 static char *layout_id;
102 static struct flash_layout *layout;
103 static char *opt_hw_id;
104 static uint32_t hw_id;
105 static char *opt_hw_rev;
106 static uint32_t hw_rev;
107 static int fw_ver_lo;
108 static int fw_ver_mid;
109 static int fw_ver_hi;
112 static struct file_info kernel_info;
113 static uint32_t kernel_la = 0;
114 static uint32_t kernel_ep = 0;
115 static uint32_t kernel_len = 0;
116 static struct file_info rootfs_info;
117 static uint32_t rootfs_ofs = 0;
118 static uint32_t rootfs_align;
119 static struct file_info boot_info;
121 static int strip_padding;
122 static int add_jffs2_eof;
123 static unsigned char jffs2_eof_mark[4] = {0xde, 0xad, 0xc0, 0xde};
125 static struct file_info inspect_info;
126 static int extract = 0;
127 static bool endian_swap = false;
129 char md5salt_normal[MD5SUM_LEN] = {
130 0xdc, 0xd7, 0x3a, 0xa5, 0xc3, 0x95, 0x98, 0xfb,
131 0xdc, 0xf9, 0xe7, 0xf4, 0x0e, 0xae, 0x47, 0x37,
134 char md5salt_boot[MD5SUM_LEN] = {
135 0x8c, 0xef, 0x33, 0x5b, 0xd5, 0xc5, 0xce, 0xfa,
136 0xa7, 0x9c, 0x28, 0xda, 0xb2, 0xe9, 0x0f, 0x42,
139 static struct flash_layout layouts[] = {
142 .fw_max_len = 0x7a0000,
143 .kernel_la = 0x80002000,
144 .kernel_ep = 0x80002000,
145 .rootfs_ofs = 0x140000,
148 .fw_max_len = 0x7a0000,
149 .kernel_la = 0x80000000,
150 .kernel_ep = 0x80000000,
151 .rootfs_ofs = 0x140000,
153 /* terminating entry */
157 static struct board_info boards[] = {
162 .layout_id = "8Mltq",
167 .layout_id = "8Mmtk",
171 /* terminating entry */
178 #define ERR(fmt, ...) do { \
180 fprintf(stderr, "[%s] *** error: " fmt "\n", \
181 progname, ## __VA_ARGS__ ); \
184 #define ERRS(fmt, ...) do { \
187 fprintf(stderr, "[%s] *** error: " fmt "\n", \
188 progname, ## __VA_ARGS__, strerror(save)); \
191 #define DBG(fmt, ...) do { \
192 fprintf(stderr, "[%s] " fmt "\n", progname, ## __VA_ARGS__ ); \
195 static struct board_info *find_board(char *id)
197 struct board_info *ret;
198 struct board_info *board;
201 for (board = boards; board->id != NULL; board++){
202 if (strcasecmp(id, board->id) == 0) {
211 static struct board_info *find_board_by_hwid(uint32_t hw_id)
213 struct board_info *board;
215 for (board = boards; board->id != NULL; board++) {
216 if (hw_id == board->hw_id)
223 static struct flash_layout *find_layout(char *id)
225 struct flash_layout *ret;
226 struct flash_layout *l;
229 for (l = layouts; l->id != NULL; l++){
230 if (strcasecmp(id, l->id) == 0) {
239 static void usage(int status)
241 FILE *stream = (status != EXIT_SUCCESS) ? stderr : stdout;
242 struct board_info *board;
244 fprintf(stream, "Usage: %s [OPTIONS...]\n", progname);
248 " -B <board> create image for the board specified with <board>\n"
249 " -c use combined kernel image\n"
250 " -E <ep> overwrite kernel entry point with <ep> (hexval prefixed with 0x)\n"
251 " -L <la> overwrite kernel load address with <la> (hexval prefixed with 0x)\n"
252 " -H <hwid> use hardware id specified with <hwid>\n"
253 " -W <hwrev> use hardware revision specified with <hwrev>\n"
254 " -F <id> use flash layout specified with <id>\n"
255 " -k <file> read kernel image from the file <file>\n"
256 " -r <file> read rootfs image from the file <file>\n"
257 " -a <align> align the rootfs start on an <align> bytes boundary\n"
258 " -R <offset> overwrite rootfs offset with <offset> (hexval prefixed with 0x)\n"
259 " -o <file> write output to the file <file>\n"
260 " -s strip padding from the end of the image\n"
261 " -j add jffs2 end-of-filesystem markers\n"
262 " -V <version> set image version to <version>\n"
263 " -v <version> set firmware version to <version>\n"
264 " -y <version> set secondary version to <version>\n"
265 " -i <file> inspect given firmware file <file>\n"
266 " -x extract kernel and rootfs while inspecting (requires -i)\n"
267 " -h show this screen\n"
273 static int get_md5(char *data, int size, char *md5)
278 MD5_Update(&ctx, data, size);
279 MD5_Final(md5, &ctx);
282 static int get_file_stat(struct file_info *fdata)
287 if (fdata->file_name == NULL)
290 res = stat(fdata->file_name, &st);
292 ERRS("stat failed on %s", fdata->file_name);
296 fdata->file_size = st.st_size;
300 static int read_to_buf(struct file_info *fdata, char *buf)
303 int ret = EXIT_FAILURE;
305 f = fopen(fdata->file_name, "r");
307 ERRS("could not open \"%s\" for reading", fdata->file_name);
312 fread(buf, fdata->file_size, 1, f);
314 ERRS("unable to read from file \"%s\"", fdata->file_name);
326 static int check_options(void)
330 if (inspect_info.file_name) {
331 ret = get_file_stat(&inspect_info);
336 } else if (extract) {
337 ERR("no firmware for inspection specified");
341 if (board_id == NULL && opt_hw_id == NULL) {
342 ERR("either board or hardware id must be specified");
347 board = find_board(board_id);
349 ERR("unknown/unsupported board id \"%s\"", board_id);
352 if (layout_id == NULL)
353 layout_id = board->layout_id;
355 hw_id = board->hw_id;
356 hw_rev = board->hw_rev;
358 hdr_ver = board->hdr_ver;
359 endian_swap = board->endian_swap;
361 if (layout_id == NULL) {
362 ERR("flash layout is not specified");
365 hw_id = strtoul(opt_hw_id, NULL, 0);
368 hw_rev = strtoul(opt_hw_rev, NULL, 0);
373 layout = find_layout(layout_id);
374 if (layout == NULL) {
375 ERR("unknown flash layout \"%s\"", layout_id);
380 kernel_la = layout->kernel_la;
382 kernel_ep = layout->kernel_ep;
384 rootfs_ofs = layout->rootfs_ofs;
386 if (kernel_info.file_name == NULL) {
387 ERR("no kernel image specified");
391 ret = get_file_stat(&kernel_info);
395 kernel_len = kernel_info.file_size;
398 if (kernel_info.file_size >
399 layout->fw_max_len - sizeof(struct fw_header)) {
400 ERR("kernel image is too big");
404 if (rootfs_info.file_name == NULL) {
405 ERR("no rootfs image specified");
409 ret = get_file_stat(&rootfs_info);
414 kernel_len += sizeof(struct fw_header);
415 kernel_len = ALIGN(kernel_len, rootfs_align);
416 kernel_len -= sizeof(struct fw_header);
418 DBG("kernel length aligned to %u", kernel_len);
420 if (kernel_len + rootfs_info.file_size >
421 layout->fw_max_len - sizeof(struct fw_header)) {
422 ERR("images are too big");
426 if (kernel_info.file_size >
427 rootfs_ofs - sizeof(struct fw_header)) {
428 ERR("kernel image is too big");
432 if (rootfs_info.file_size >
433 (layout->fw_max_len - rootfs_ofs)) {
434 ERR("rootfs image is too big");
440 if (ofname == NULL) {
441 ERR("no output file specified");
445 ret = sscanf(fw_ver, "%d.%d.%d", &fw_ver_hi, &fw_ver_mid, &fw_ver_lo);
447 ERR("invalid firmware version '%s'", fw_ver);
451 ret = sscanf(sver, "%d.%d", &sver_hi, &sver_lo);
453 ERR("invalid secondary version '%s'", sver);
460 static void fill_header(char *buf, int len)
462 struct fw_header *hdr = (struct fw_header *)buf;
465 memset(hdr, '\xff', sizeof(struct fw_header));
467 hdr->version = htonl(bswap_32(hdr_ver));
468 ver_len = strlen(version);
469 if (ver_len > (sizeof(hdr->fw_version) - 1))
470 ver_len = sizeof(hdr->fw_version) - 1;
472 memcpy(hdr->fw_version, version, ver_len);
473 hdr->fw_version[ver_len] = 0;
475 hdr->hw_id = htonl(hw_id);
476 hdr->hw_rev = htonl(hw_rev);
478 if (boot_info.file_size == 0) {
479 memcpy(hdr->md5sum1, md5salt_normal, sizeof(hdr->md5sum1));
480 hdr->boot_ofs = htonl(0);
481 hdr->boot_len = htonl(0);
483 memcpy(hdr->md5sum1, md5salt_boot, sizeof(hdr->md5sum1));
484 hdr->boot_ofs = htonl(rootfs_ofs + rootfs_info.file_size);
485 hdr->boot_len = htonl(rootfs_info.file_size);
488 hdr->kernel_la = htonl(kernel_la);
489 hdr->kernel_ep = htonl(kernel_ep);
490 hdr->fw_length = htonl(layout->fw_max_len);
491 hdr->kernel_ofs = htonl(sizeof(struct fw_header));
492 hdr->kernel_len = htonl(kernel_len);
494 hdr->rootfs_ofs = htonl(rootfs_ofs);
495 hdr->rootfs_len = htonl(rootfs_info.file_size);
498 hdr->boot_ofs = htonl(0);
499 hdr->boot_len = htonl(boot_info.file_size);
501 hdr->unk1 = htonl(0);
502 hdr->unk2 = htonl(0);
503 hdr->unk3 = htonl(0xffffffff);
504 hdr->unk4 = htons(0x55aa);
507 hdr->sver_hi = sver_hi;
508 hdr->sver_lo = sver_lo;
510 hdr->ver_hi = fw_ver_hi;
511 hdr->ver_mid = fw_ver_mid;
512 hdr->ver_lo = fw_ver_lo;
515 hdr->kernel_la = bswap_32(hdr->kernel_la);
516 hdr->kernel_ep = bswap_32(hdr->kernel_ep);
519 get_md5(buf, len, hdr->md5sum1);
522 static int pad_jffs2(char *buf, int currlen)
528 pad_mask = (64 * 1024);
529 while ((len < layout->fw_max_len) && (pad_mask != 0)) {
533 for (i = 10; i < 32; i++) {
539 len = ALIGN(len, mask);
541 for (i = 10; i < 32; i++) {
543 if ((len & (mask - 1)) == 0)
547 for (i = 0; i < sizeof(jffs2_eof_mark); i++)
548 buf[len + i] = jffs2_eof_mark[i];
550 len += sizeof(jffs2_eof_mark);
556 static int write_fw(char *data, int len)
559 int ret = EXIT_FAILURE;
561 f = fopen(ofname, "w");
563 ERRS("could not open \"%s\" for writing", ofname);
568 fwrite(data, len, 1, f);
570 ERRS("unable to write output file");
574 DBG("firmware file \"%s\" completed", ofname);
581 if (ret != EXIT_SUCCESS) {
588 static int build_fw(void)
593 int ret = EXIT_FAILURE;
596 buflen = layout->fw_max_len;
598 buf = malloc(buflen);
600 ERR("no memory for buffer\n");
604 memset(buf, 0xff, buflen);
605 p = buf + sizeof(struct fw_header);
606 ret = read_to_buf(&kernel_info, p);
610 writelen = sizeof(struct fw_header) + kernel_len;
616 p = buf + rootfs_ofs;
618 ret = read_to_buf(&rootfs_info, p);
623 writelen += rootfs_info.file_size;
625 writelen = rootfs_ofs + rootfs_info.file_size;
628 writelen = pad_jffs2(buf, writelen);
634 fill_header(buf, writelen);
635 ret = write_fw(buf, writelen);
647 /* Helper functions to inspect_fw() representing different output formats */
648 static inline void inspect_fw_pstr(char *label, char *str)
650 printf("%-23s: %s\n", label, str);
653 static inline void inspect_fw_phex(char *label, uint32_t val)
655 printf("%-23s: 0x%08x\n", label, val);
658 static inline void inspect_fw_phexpost(char *label,
659 uint32_t val, char *post)
661 printf("%-23s: 0x%08x (%s)\n", label, val, post);
664 static inline void inspect_fw_phexdef(char *label,
665 uint32_t val, uint32_t defval)
667 printf("%-23s: 0x%08x ", label, val);
670 printf("(== OpenWrt default)\n");
672 printf("(OpenWrt default: 0x%08x)\n", defval);
675 static inline void inspect_fw_phexexp(char *label,
676 uint32_t val, uint32_t expval)
678 printf("%-23s: 0x%08x ", label, val);
683 printf("(expected: 0x%08x)\n", expval);
686 static inline void inspect_fw_phexdec(char *label, uint32_t val)
688 printf("%-23s: 0x%08x / %8u bytes\n", label, val, val);
691 static inline void inspect_fw_phexdecdef(char *label,
692 uint32_t val, uint32_t defval)
694 printf("%-23s: 0x%08x / %8u bytes ", label, val, val);
697 printf("(== OpenWrt default)\n");
699 printf("(OpenWrt default: 0x%08x)\n", defval);
702 static inline void inspect_fw_pmd5sum(char *label, uint8_t *val, char *text)
706 printf("%-23s:", label);
707 for (i=0; i<MD5SUM_LEN; i++)
708 printf(" %02x", val[i]);
709 printf(" %s\n", text);
712 static int inspect_fw(void)
715 struct fw_header *hdr;
716 uint8_t md5sum[MD5SUM_LEN];
717 struct board_info *board;
718 int ret = EXIT_FAILURE;
720 buf = malloc(inspect_info.file_size);
722 ERR("no memory for buffer!\n");
726 ret = read_to_buf(&inspect_info, buf);
729 hdr = (struct fw_header *)buf;
731 inspect_fw_pstr("File name", inspect_info.file_name);
732 inspect_fw_phexdec("File size", inspect_info.file_size);
734 switch(bswap_32(ntohl(hdr->version))) {
739 ERR("file does not seem to have V2/V3 header!\n");
743 inspect_fw_phexdec("Version 2 Header size", sizeof(struct fw_header));
745 if (ntohl(hdr->unk1) != 0)
746 inspect_fw_phexdec("Unknown value 1", hdr->unk1);
748 memcpy(md5sum, hdr->md5sum1, sizeof(md5sum));
749 if (ntohl(hdr->boot_len) == 0)
750 memcpy(hdr->md5sum1, md5salt_normal, sizeof(md5sum));
752 memcpy(hdr->md5sum1, md5salt_boot, sizeof(md5sum));
753 get_md5(buf, inspect_info.file_size, hdr->md5sum1);
755 if (memcmp(md5sum, hdr->md5sum1, sizeof(md5sum))) {
756 inspect_fw_pmd5sum("Header MD5Sum1", md5sum, "(*ERROR*)");
757 inspect_fw_pmd5sum(" --> expected", hdr->md5sum1, "");
759 inspect_fw_pmd5sum("Header MD5Sum1", md5sum, "(ok)");
761 if (ntohl(hdr->unk2) != 0)
762 inspect_fw_phexdec("Unknown value 2", hdr->unk2);
763 inspect_fw_pmd5sum("Header MD5Sum2", hdr->md5sum2,
764 "(purpose yet unknown, unchecked here)");
766 if (ntohl(hdr->unk3) != 0xffffffff)
767 inspect_fw_phexdec("Unknown value 3", hdr->unk3);
769 if (ntohs(hdr->unk4) != 0x55aa)
770 inspect_fw_phexdec("Unknown value 4", hdr->unk4);
772 if (hdr->unk5 != 0xa5)
773 inspect_fw_phexdec("Unknown value 5", hdr->unk5);
777 inspect_fw_pstr("Firmware version", hdr->fw_version);
779 board = find_board_by_hwid(ntohl(hdr->hw_id));
781 layout = find_layout(board->layout_id);
782 inspect_fw_phexpost("Hardware ID",
783 ntohl(hdr->hw_id), board->id);
784 inspect_fw_phexexp("Hardware Revision",
785 ntohl(hdr->hw_rev), board->hw_rev);
787 inspect_fw_phexpost("Hardware ID",
788 ntohl(hdr->hw_id), "unknown");
789 inspect_fw_phex("Hardware Revision",
793 printf("%-23s: %d.%d.%d-%d.%d\n", "Software version",
794 hdr->ver_hi, hdr->ver_mid, hdr->ver_lo,
795 hdr->sver_hi, hdr->sver_lo);
799 inspect_fw_phexdec("Kernel data offset",
800 ntohl(hdr->kernel_ofs));
801 inspect_fw_phexdec("Kernel data length",
802 ntohl(hdr->kernel_len));
804 inspect_fw_phexdef("Kernel load address",
805 ntohl(hdr->kernel_la),
806 layout ? layout->kernel_la : 0xffffffff);
807 inspect_fw_phexdef("Kernel entry point",
808 ntohl(hdr->kernel_ep),
809 layout ? layout->kernel_ep : 0xffffffff);
810 inspect_fw_phexdecdef("Rootfs data offset",
811 ntohl(hdr->rootfs_ofs),
812 layout ? layout->rootfs_ofs : 0xffffffff);
814 inspect_fw_phex("Kernel load address",
815 ntohl(hdr->kernel_la));
816 inspect_fw_phex("Kernel entry point",
817 ntohl(hdr->kernel_ep));
818 inspect_fw_phexdec("Rootfs data offset",
819 ntohl(hdr->rootfs_ofs));
821 inspect_fw_phexdec("Rootfs data length",
822 ntohl(hdr->rootfs_len));
823 inspect_fw_phexdec("Boot loader data offset",
824 ntohl(hdr->boot_ofs));
825 inspect_fw_phexdec("Boot loader data length",
826 ntohl(hdr->boot_len));
827 inspect_fw_phexdec("Total firmware length",
828 ntohl(hdr->fw_length));
836 filename = malloc(strlen(inspect_info.file_name) + 8);
837 sprintf(filename, "%s-kernel", inspect_info.file_name);
838 printf("Extracting kernel to \"%s\"...\n", filename);
839 fp = fopen(filename, "w");
841 if (!fwrite(buf + ntohl(hdr->kernel_ofs),
842 ntohl(hdr->kernel_len), 1, fp)) {
843 ERR("error in fwrite(): %s", strerror(errno));
847 ERR("error in fopen(): %s", strerror(errno));
851 filename = malloc(strlen(inspect_info.file_name) + 8);
852 sprintf(filename, "%s-rootfs", inspect_info.file_name);
853 printf("Extracting rootfs to \"%s\"...\n", filename);
854 fp = fopen(filename, "w");
856 if (!fwrite(buf + ntohl(hdr->rootfs_ofs),
857 ntohl(hdr->rootfs_len), 1, fp)) {
858 ERR("error in fwrite(): %s", strerror(errno));
862 ERR("error in fopen(): %s", strerror(errno));
873 int main(int argc, char *argv[])
875 int ret = EXIT_FAILURE;
880 progname = basename(argv[0]);
885 c = getopt(argc, argv, "a:B:H:E:F:L:V:N:W:ci:k:r:R:o:xhsjv:y:T:e");
891 sscanf(optarg, "0x%x", &rootfs_align);
900 sscanf(optarg, "0x%x", &kernel_ep);
909 sscanf(optarg, "0x%x", &kernel_la);
927 kernel_info.file_name = optarg;
930 rootfs_info.file_name = optarg;
933 sscanf(optarg, "0x%x", &rootfs_ofs);
942 inspect_info.file_name = optarg;
951 hdr_ver = atoi(optarg);
965 ret = check_options();
969 if (!inspect_info.file_name)