99338d4d6787531b8a5094c39e0debaf9dfede53
[15.05/openwrt.git] / tools / firmware-utils / src / mktplinkfw.c
1 /*
2  * Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
3  *
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>
7  *
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.
11  *
12  */
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <stdint.h>
17 #include <string.h>
18 #include <unistd.h>     /* for unlink() */
19 #include <libgen.h>
20 #include <getopt.h>     /* for getopt() */
21 #include <stdarg.h>
22 #include <errno.h>
23 #include <sys/stat.h>
24
25 #include <arpa/inet.h>
26 #include <netinet/in.h>
27
28 #include "md5.h"
29
30 #define ALIGN(x,a) ({ typeof(a) __a = (a); (((x) + __a - 1) & ~(__a - 1)); })
31
32 #define HEADER_VERSION_V1       0x01000000
33 #define HWID_ANTMINER_S1        0x04440001
34 #define HWID_ANTMINER_S3        0x04440003
35 #define HWID_GL_INET_V1         0x08000001
36 #define HWID_GS_OOLITE_V1       0x3C000101
37 #define HWID_ONION_OMEGA        0x04700001
38 #define HWID_TL_MR10U_V1        0x00100101
39 #define HWID_TL_MR13U_V1        0x00130101
40 #define HWID_TL_MR3020_V1       0x30200001
41 #define HWID_TL_MR3220_V1       0x32200001
42 #define HWID_TL_MR3220_V2       0x32200002
43 #define HWID_TL_MR3420_V1       0x34200001
44 #define HWID_TL_MR3420_V2       0x34200002
45 #define HWID_TL_WA701N_V1       0x07010001
46 #define HWID_TL_WA701N_V2       0x07010002
47 #define HWID_TL_WA7210N_V2      0x72100002
48 #define HWID_TL_WA7510N_V1      0x75100001
49 #define HWID_TL_WA801ND_V1      0x08010001
50 #define HWID_TL_WA830RE_V1      0x08300010
51 #define HWID_TL_WA830RE_V2      0x08300002
52 #define HWID_TL_WA801ND_V2      0x08010002
53 #define HWID_TL_WA901ND_V1      0x09010001
54 #define HWID_TL_WA901ND_V2      0x09010002
55 #define HWID_TL_WDR4300_V1_IL   0x43008001
56 #define HWID_TL_WDR4900_V1      0x49000001
57 #define HWID_TL_WR703N_V1       0x07030101
58 #define HWID_TL_WR720N_V3       0x07200103
59 #define HWID_TL_WR720N_V4       0x07200104
60 #define HWID_TL_WR741ND_V1      0x07410001
61 #define HWID_TL_WR741ND_V4      0x07410004
62 #define HWID_TL_WR740N_V1       0x07400001
63 #define HWID_TL_WR740N_V3       0x07400003
64 #define HWID_TL_WR743ND_V1      0x07430001
65 #define HWID_TL_WR743ND_V2      0x07430002
66 #define HWID_TL_WR841N_V1_5     0x08410002
67 #define HWID_TL_WR841ND_V3      0x08410003
68 #define HWID_TL_WR841ND_V5      0x08410005
69 #define HWID_TL_WR841ND_V7      0x08410007
70 #define HWID_TL_WR941ND_V2      0x09410002
71 #define HWID_TL_WR941ND_V4      0x09410004
72 #define HWID_TL_WR1043ND_V1     0x10430001
73 #define HWID_TL_WR1043ND_V2     0x10430002
74 #define HWID_TL_WR1041N_V2      0x10410002
75 #define HWID_TL_WR2543N_V1      0x25430001
76
77 #define MD5SUM_LEN      16
78
79 struct file_info {
80         char            *file_name;     /* name of the file */
81         uint32_t        file_size;      /* length of the file */
82 };
83
84 struct fw_header {
85         uint32_t        version;        /* header version */
86         char            vendor_name[24];
87         char            fw_version[36];
88         uint32_t        hw_id;          /* hardware id */
89         uint32_t        hw_rev;         /* hardware revision */
90         uint32_t        unk1;
91         uint8_t         md5sum1[MD5SUM_LEN];
92         uint32_t        unk2;
93         uint8_t         md5sum2[MD5SUM_LEN];
94         uint32_t        unk3;
95         uint32_t        kernel_la;      /* kernel load address */
96         uint32_t        kernel_ep;      /* kernel entry point */
97         uint32_t        fw_length;      /* total length of the firmware */
98         uint32_t        kernel_ofs;     /* kernel data offset */
99         uint32_t        kernel_len;     /* kernel data length */
100         uint32_t        rootfs_ofs;     /* rootfs data offset */
101         uint32_t        rootfs_len;     /* rootfs data length */
102         uint32_t        boot_ofs;       /* bootloader data offset */
103         uint32_t        boot_len;       /* bootloader data length */
104         uint16_t        ver_hi;
105         uint16_t        ver_mid;
106         uint16_t        ver_lo;
107         uint8_t         pad[354];
108 } __attribute__ ((packed));
109
110 struct flash_layout {
111         char            *id;
112         uint32_t        fw_max_len;
113         uint32_t        kernel_la;
114         uint32_t        kernel_ep;
115         uint32_t        rootfs_ofs;
116 };
117
118 struct board_info {
119         char            *id;
120         uint32_t        hw_id;
121         uint32_t        hw_rev;
122         char            *layout_id;
123 };
124
125 /*
126  * Globals
127  */
128 static char *ofname;
129 static char *progname;
130 static char *vendor = "TP-LINK Technologies";
131 static char *version = "ver. 1.0";
132 static char *fw_ver = "0.0.0";
133
134 static char *board_id;
135 static struct board_info *board;
136 static char *layout_id;
137 static struct flash_layout *layout;
138 static char *opt_hw_id;
139 static uint32_t hw_id;
140 static char *opt_hw_rev;
141 static uint32_t hw_rev;
142 static int fw_ver_lo;
143 static int fw_ver_mid;
144 static int fw_ver_hi;
145 static struct file_info kernel_info;
146 static uint32_t kernel_la = 0;
147 static uint32_t kernel_ep = 0;
148 static uint32_t kernel_len = 0;
149 static struct file_info rootfs_info;
150 static uint32_t rootfs_ofs = 0;
151 static uint32_t rootfs_align;
152 static struct file_info boot_info;
153 static int combined;
154 static int strip_padding;
155 static int ignore_size;
156 static int add_jffs2_eof;
157 static unsigned char jffs2_eof_mark[4] = {0xde, 0xad, 0xc0, 0xde};
158 static uint32_t fw_max_len;
159 static uint32_t reserved_space;
160
161 static struct file_info inspect_info;
162 static int extract = 0;
163
164 char md5salt_normal[MD5SUM_LEN] = {
165         0xdc, 0xd7, 0x3a, 0xa5, 0xc3, 0x95, 0x98, 0xfb,
166         0xdd, 0xf9, 0xe7, 0xf4, 0x0e, 0xae, 0x47, 0x38,
167 };
168
169 char md5salt_boot[MD5SUM_LEN] = {
170         0x8c, 0xef, 0x33, 0x5b, 0xd5, 0xc5, 0xce, 0xfa,
171         0xa7, 0x9c, 0x28, 0xda, 0xb2, 0xe9, 0x0f, 0x42,
172 };
173
174 static struct flash_layout layouts[] = {
175         {
176                 .id             = "4M",
177                 .fw_max_len     = 0x3c0000,
178                 .kernel_la      = 0x80060000,
179                 .kernel_ep      = 0x80060000,
180                 .rootfs_ofs     = 0x140000,
181         }, {
182                 .id             = "4Mlzma",
183                 .fw_max_len     = 0x3c0000,
184                 .kernel_la      = 0x80060000,
185                 .kernel_ep      = 0x80060000,
186                 .rootfs_ofs     = 0x100000,
187         }, {
188                 .id             = "8M",
189                 .fw_max_len     = 0x7c0000,
190                 .kernel_la      = 0x80060000,
191                 .kernel_ep      = 0x80060000,
192                 .rootfs_ofs     = 0x140000,
193         }, {
194                 .id             = "8Mlzma",
195                 .fw_max_len     = 0x7c0000,
196                 .kernel_la      = 0x80060000,
197                 .kernel_ep      = 0x80060000,
198                 .rootfs_ofs     = 0x100000,
199         }, {
200                 .id             = "16M",
201                 .fw_max_len     = 0xf80000,
202                 .kernel_la      = 0x80060000,
203                 .kernel_ep      = 0x80060000,
204                 .rootfs_ofs     = 0x140000,
205         }, {
206                 .id             = "16Mlzma",
207                 .fw_max_len     = 0xf80000,
208                 .kernel_la      = 0x80060000,
209                 .kernel_ep      = 0x80060000,
210                 .rootfs_ofs     = 0x100000,
211         }, {
212                 .id             = "16Mppc",
213                 .fw_max_len     = 0xf80000,
214                 .kernel_la      = 0x00000000,
215                 .kernel_ep      = 0xc0000000,
216                 .rootfs_ofs     = 0x2a0000,
217         }, {
218                 /* terminating entry */
219         }
220 };
221
222 static struct board_info boards[] = {
223         {
224                 .id             = "TL-MR10Uv1",
225                 .hw_id          = HWID_TL_MR10U_V1,
226                 .hw_rev         = 1,
227                 .layout_id      = "4Mlzma",
228         }, {
229                 .id             = "TL-MR13Uv1",
230                 .hw_id          = HWID_TL_MR13U_V1,
231                 .hw_rev         = 1,
232                 .layout_id      = "4Mlzma",
233         }, {
234                 .id             = "TL-MR3020v1",
235                 .hw_id          = HWID_TL_MR3020_V1,
236                 .hw_rev         = 1,
237                 .layout_id      = "4Mlzma",
238         }, {
239                 .id             = "TL-MR3220v1",
240                 .hw_id          = HWID_TL_MR3220_V1,
241                 .hw_rev         = 1,
242                 .layout_id      = "4M",
243         }, {
244                 .id             = "TL-MR3220v2",
245                 .hw_id          = HWID_TL_MR3220_V2,
246                 .hw_rev         = 1,
247                 .layout_id      = "4Mlzma",
248         }, {
249                 .id             = "TL-MR3420v1",
250                 .hw_id          = HWID_TL_MR3420_V1,
251                 .hw_rev         = 1,
252                 .layout_id      = "4M",
253         }, {
254                 .id             = "TL-MR3420v2",
255                 .hw_id          = HWID_TL_MR3420_V2,
256                 .hw_rev         = 1,
257                 .layout_id      = "4Mlzma",
258         }, {
259                 .id             = "TL-WA701Nv1",
260                 .hw_id          = HWID_TL_WA701N_V1,
261                 .hw_rev         = 1,
262                 .layout_id      = "4M",
263         }, {
264                 .id             = "TL-WA701Nv2",
265                 .hw_id          = HWID_TL_WA701N_V2,
266                 .hw_rev         = 1,
267                 .layout_id      = "4Mlzma",
268         }, {
269                 .id             = "TL-WA7210N",
270                 .hw_id          = HWID_TL_WA7210N_V2,
271                 .hw_rev         = 2,
272                 .layout_id      = "4Mlzma",
273         }, {
274                 .id             = "TL-WA7510N",
275                 .hw_id          = HWID_TL_WA7510N_V1,
276                 .hw_rev         = 1,
277                 .layout_id      = "4M",
278         }, {
279                 .id             = "TL-WA801NDv1",
280                 .hw_id          = HWID_TL_WA801ND_V1,
281                 .hw_rev         = 1,
282                 .layout_id      = "4M",
283         }, {
284                 .id             = "TL-WA830REv1",
285                 .hw_id          = HWID_TL_WA830RE_V1,
286                 .hw_rev         = 1,
287                 .layout_id      = "4M",
288         }, {
289                 .id             = "TL-WA830REv2",
290                 .hw_id          = HWID_TL_WA830RE_V2,
291                 .hw_rev         = 1,
292                 .layout_id      = "4M",
293         }, {
294                 .id             = "TL-WA801NDv2",
295                 .hw_id          = HWID_TL_WA801ND_V2,
296                 .hw_rev         = 1,
297                 .layout_id      = "4Mlzma",
298         }, {
299                 .id             = "TL-WA901NDv1",
300                 .hw_id          = HWID_TL_WA901ND_V1,
301                 .hw_rev         = 1,
302                 .layout_id      = "4M",
303         }, {
304                 .id             = "TL-WA901NDv2",
305                 .hw_id          = HWID_TL_WA901ND_V2,
306                 .hw_rev         = 1,
307                 .layout_id      = "4M",
308         }, {
309                 .id             = "TL-WDR4300v1",
310                 .hw_id          = HWID_TL_WDR4300_V1_IL,
311                 .hw_rev         = 1,
312                 .layout_id      = "8Mlzma",
313         }, {
314                 .id             = "TL-WDR4900v1",
315                 .hw_id          = HWID_TL_WDR4900_V1,
316                 .hw_rev         = 1,
317                 .layout_id      = "16Mppc",
318         }, {
319                 .id             = "TL-WR741NDv1",
320                 .hw_id          = HWID_TL_WR741ND_V1,
321                 .hw_rev         = 1,
322                 .layout_id      = "4M",
323         }, {
324                 .id             = "TL-WR741NDv4",
325                 .hw_id          = HWID_TL_WR741ND_V4,
326                 .hw_rev         = 1,
327                 .layout_id      = "4Mlzma",
328         }, {
329                 .id             = "TL-WR740Nv1",
330                 .hw_id          = HWID_TL_WR740N_V1,
331                 .hw_rev         = 1,
332                 .layout_id      = "4M",
333         }, {
334                 .id             = "TL-WR740Nv3",
335                 .hw_id          = HWID_TL_WR740N_V3,
336                 .hw_rev         = 1,
337                 .layout_id      = "4M",
338         }, {
339                 .id             = "TL-WR743NDv1",
340                 .hw_id          = HWID_TL_WR743ND_V1,
341                 .hw_rev         = 1,
342                 .layout_id      = "4M",
343         }, {
344                 .id             = "TL-WR743NDv2",
345                 .hw_id          = HWID_TL_WR743ND_V2,
346                 .hw_rev         = 1,
347                 .layout_id      = "4Mlzma",
348         }, {
349                 .id             = "TL-WR841Nv1.5",
350                 .hw_id          = HWID_TL_WR841N_V1_5,
351                 .hw_rev         = 2,
352                 .layout_id      = "4M",
353         }, {
354                 .id             = "TL-WR841NDv3",
355                 .hw_id          = HWID_TL_WR841ND_V3,
356                 .hw_rev         = 3,
357                 .layout_id      = "4M",
358         }, {
359                 .id             = "TL-WR841NDv5",
360                 .hw_id          = HWID_TL_WR841ND_V5,
361                 .hw_rev         = 1,
362                 .layout_id      = "4M",
363         }, {
364                 .id             = "TL-WR841NDv7",
365                 .hw_id          = HWID_TL_WR841ND_V7,
366                 .hw_rev         = 1,
367                 .layout_id      = "4M",
368         }, {
369                 .id             = "TL-WR941NDv2",
370                 .hw_id          = HWID_TL_WR941ND_V2,
371                 .hw_rev         = 2,
372                 .layout_id      = "4M",
373         }, {
374                 .id             = "TL-WR941NDv4",
375                 .hw_id          = HWID_TL_WR941ND_V4,
376                 .hw_rev         = 1,
377                 .layout_id      = "4M",
378         }, {
379                 .id             = "TL-WR1041Nv2",
380                 .hw_id          = HWID_TL_WR1041N_V2,
381                 .hw_rev         = 1,
382                 .layout_id      = "4Mlzma",
383         }, {
384                 .id             = "TL-WR1043NDv1",
385                 .hw_id          = HWID_TL_WR1043ND_V1,
386                 .hw_rev         = 1,
387                 .layout_id      = "8M",
388         }, {
389                 .id             = "TL-WR1043NDv2",
390                 .hw_id          = HWID_TL_WR1043ND_V2,
391                 .hw_rev         = 1,
392                 .layout_id      = "8Mlzma",
393         }, {
394                 .id             = "TL-WR2543Nv1",
395                 .hw_id          = HWID_TL_WR2543N_V1,
396                 .hw_rev         = 1,
397                 .layout_id      = "8Mlzma",
398         }, {
399                 .id             = "TL-WR703Nv1",
400                 .hw_id          = HWID_TL_WR703N_V1,
401                 .hw_rev         = 1,
402                 .layout_id      = "4Mlzma",
403         }, {
404                 .id             = "TL-WR720Nv3",
405                 .hw_id          = HWID_TL_WR720N_V3,
406                 .hw_rev         = 1,
407                 .layout_id      = "4Mlzma",
408         }, {
409                 .id             = "TL-WR720Nv4",
410                 .hw_id          = HWID_TL_WR720N_V4,
411                 .hw_rev         = 1,
412                 .layout_id      = "4Mlzma",
413         }, {
414                 .id             = "GL-INETv1",
415                 .hw_id          = HWID_GL_INET_V1,
416                 .hw_rev         = 1,
417                 .layout_id      = "8Mlzma",
418         }, {
419                 .id             = "GS-OOLITEv1",
420                 .hw_id          = HWID_GS_OOLITE_V1,
421                 .hw_rev         = 1,
422                 .layout_id      = "16Mlzma",
423         }, {
424                 .id             = "ONION-OMEGA",
425                 .hw_id          = HWID_ONION_OMEGA,
426                 .hw_rev         = 1,
427                 .layout_id      = "16Mlzma",
428         }, {
429                 .id             = "ANTMINER-S1",
430                 .hw_id          = HWID_ANTMINER_S1,
431                 .hw_rev         = 1,
432                 .layout_id      = "8Mlzma",
433         }, {
434                 /* terminating entry */
435         }
436 };
437
438 /*
439  * Message macros
440  */
441 #define ERR(fmt, ...) do { \
442         fflush(0); \
443         fprintf(stderr, "[%s] *** error: " fmt "\n", \
444                         progname, ## __VA_ARGS__ ); \
445 } while (0)
446
447 #define ERRS(fmt, ...) do { \
448         int save = errno; \
449         fflush(0); \
450         fprintf(stderr, "[%s] *** error: " fmt "\n", \
451                         progname, ## __VA_ARGS__, strerror(save)); \
452 } while (0)
453
454 #define DBG(fmt, ...) do { \
455         fprintf(stderr, "[%s] " fmt "\n", progname, ## __VA_ARGS__ ); \
456 } while (0)
457
458 static struct board_info *find_board(char *id)
459 {
460         struct board_info *ret;
461         struct board_info *board;
462
463         ret = NULL;
464         for (board = boards; board->id != NULL; board++){
465                 if (strcasecmp(id, board->id) == 0) {
466                         ret = board;
467                         break;
468                 }
469         };
470
471         return ret;
472 }
473
474 static struct board_info *find_board_by_hwid(uint32_t hw_id)
475 {
476         struct board_info *board;
477
478         for (board = boards; board->id != NULL; board++) {
479                 if (hw_id == board->hw_id)
480                         return board;
481         };
482
483         return NULL;
484 }
485
486 static struct flash_layout *find_layout(char *id)
487 {
488         struct flash_layout *ret;
489         struct flash_layout *l;
490
491         ret = NULL;
492         for (l = layouts; l->id != NULL; l++){
493                 if (strcasecmp(id, l->id) == 0) {
494                         ret = l;
495                         break;
496                 }
497         };
498
499         return ret;
500 }
501
502 static void usage(int status)
503 {
504         FILE *stream = (status != EXIT_SUCCESS) ? stderr : stdout;
505         struct board_info *board;
506
507         fprintf(stream, "Usage: %s [OPTIONS...]\n", progname);
508         fprintf(stream,
509 "\n"
510 "Options:\n"
511 "  -B <board>      create image for the board specified with <board>\n"
512 "  -c              use combined kernel image\n"
513 "  -E <ep>         overwrite kernel entry point with <ep> (hexval prefixed with 0x)\n"
514 "  -L <la>         overwrite kernel load address with <la> (hexval prefixed with 0x)\n"
515 "  -H <hwid>       use hardware id specified with <hwid>\n"
516 "  -W <hwrev>      use hardware revision specified with <hwrev>\n"
517 "  -F <id>         use flash layout specified with <id>\n"
518 "  -k <file>       read kernel image from the file <file>\n"
519 "  -r <file>       read rootfs image from the file <file>\n"
520 "  -a <align>      align the rootfs start on an <align> bytes boundary\n"
521 "  -R <offset>     overwrite rootfs offset with <offset> (hexval prefixed with 0x)\n"
522 "  -o <file>       write output to the file <file>\n"
523 "  -s              strip padding from the end of the image\n"
524 "  -S              ignore firmware size limit (only for combined images)\n"
525 "  -j              add jffs2 end-of-filesystem markers\n"
526 "  -N <vendor>     set image vendor to <vendor>\n"
527 "  -V <version>    set image version to <version>\n"
528 "  -v <version>    set firmware version to <version>\n"
529 "  -i <file>       inspect given firmware file <file>\n"
530 "  -x              extract kernel and rootfs while inspecting (requires -i)\n"
531 "  -X <size>       reserve <size> bytes in the firmware image (hexval prefixed with 0x)\n"
532 "  -h              show this screen\n"
533         );
534
535         exit(status);
536 }
537
538 static int get_md5(char *data, int size, char *md5)
539 {
540         MD5_CTX ctx;
541
542         MD5_Init(&ctx);
543         MD5_Update(&ctx, data, size);
544         MD5_Final(md5, &ctx);
545 }
546
547 static int get_file_stat(struct file_info *fdata)
548 {
549         struct stat st;
550         int res;
551
552         if (fdata->file_name == NULL)
553                 return 0;
554
555         res = stat(fdata->file_name, &st);
556         if (res){
557                 ERRS("stat failed on %s", fdata->file_name);
558                 return res;
559         }
560
561         fdata->file_size = st.st_size;
562         return 0;
563 }
564
565 static int read_to_buf(struct file_info *fdata, char *buf)
566 {
567         FILE *f;
568         int ret = EXIT_FAILURE;
569
570         f = fopen(fdata->file_name, "r");
571         if (f == NULL) {
572                 ERRS("could not open \"%s\" for reading", fdata->file_name);
573                 goto out;
574         }
575
576         errno = 0;
577         fread(buf, fdata->file_size, 1, f);
578         if (errno != 0) {
579                 ERRS("unable to read from file \"%s\"", fdata->file_name);
580                 goto out_close;
581         }
582
583         ret = EXIT_SUCCESS;
584
585  out_close:
586         fclose(f);
587  out:
588         return ret;
589 }
590
591 static int check_options(void)
592 {
593         int ret;
594
595         if (inspect_info.file_name) {
596                 ret = get_file_stat(&inspect_info);
597                 if (ret)
598                         return ret;
599
600                 return 0;
601         } else if (extract) {
602                 ERR("no firmware for inspection specified");
603                 return -1;
604         }
605
606         if (board_id == NULL && opt_hw_id == NULL) {
607                 ERR("either board or hardware id must be specified");
608                 return -1;
609         }
610
611         if (board_id) {
612                 board = find_board(board_id);
613                 if (board == NULL) {
614                         ERR("unknown/unsupported board id \"%s\"", board_id);
615                         return -1;
616                 }
617                 if (layout_id == NULL)
618                         layout_id = board->layout_id;
619
620                 hw_id = board->hw_id;
621                 hw_rev = board->hw_rev;
622         } else {
623                 if (layout_id == NULL) {
624                         ERR("flash layout is not specified");
625                         return -1;
626                 }
627                 hw_id = strtoul(opt_hw_id, NULL, 0);
628
629                 if (opt_hw_rev)
630                         hw_rev = strtoul(opt_hw_rev, NULL, 0);
631                 else
632                         hw_rev = 1;
633         }
634
635         layout = find_layout(layout_id);
636         if (layout == NULL) {
637                 ERR("unknown flash layout \"%s\"", layout_id);
638                 return -1;
639         }
640
641         if (!kernel_la)
642                 kernel_la = layout->kernel_la;
643         if (!kernel_ep)
644                 kernel_ep = layout->kernel_ep;
645         if (!rootfs_ofs)
646                 rootfs_ofs = layout->rootfs_ofs;
647
648         if (reserved_space > layout->fw_max_len) {
649                 ERR("reserved space is not valid");
650                 return -1;
651         }
652
653         fw_max_len = layout->fw_max_len - reserved_space;
654
655         if (kernel_info.file_name == NULL) {
656                 ERR("no kernel image specified");
657                 return -1;
658         }
659
660         ret = get_file_stat(&kernel_info);
661         if (ret)
662                 return ret;
663
664         kernel_len = kernel_info.file_size;
665
666         if (combined) {
667                 if (kernel_info.file_size >
668                     fw_max_len - sizeof(struct fw_header)) {
669                         if (!ignore_size) {
670                                 ERR("kernel image is too big");
671                                 return -1;
672                         }
673                         layout->fw_max_len = sizeof(struct fw_header) +
674                                              kernel_info.file_size +
675                                              reserved_space;
676                 }
677         } else {
678                 if (rootfs_info.file_name == NULL) {
679                         ERR("no rootfs image specified");
680                         return -1;
681                 }
682
683                 ret = get_file_stat(&rootfs_info);
684                 if (ret)
685                         return ret;
686
687                 if (rootfs_align) {
688                         kernel_len += sizeof(struct fw_header);
689                         kernel_len = ALIGN(kernel_len, rootfs_align);
690                         kernel_len -= sizeof(struct fw_header);
691
692                         DBG("kernel length aligned to %u", kernel_len);
693
694                         if (kernel_len + rootfs_info.file_size >
695                             fw_max_len - sizeof(struct fw_header)) {
696                                 ERR("images are too big");
697                                 return -1;
698                         }
699                 } else {
700                         if (kernel_info.file_size >
701                             rootfs_ofs - sizeof(struct fw_header)) {
702                                 ERR("kernel image is too big");
703                                 return -1;
704                         }
705
706                         if (rootfs_info.file_size >
707                             (fw_max_len - rootfs_ofs)) {
708                                 ERR("rootfs image is too big");
709                                 return -1;
710                         }
711                 }
712         }
713
714         if (ofname == NULL) {
715                 ERR("no output file specified");
716                 return -1;
717         }
718
719         ret = sscanf(fw_ver, "%d.%d.%d", &fw_ver_hi, &fw_ver_mid, &fw_ver_lo);
720         if (ret != 3) {
721                 ERR("invalid firmware version '%s'", fw_ver);
722                 return -1;
723         }
724
725         return 0;
726 }
727
728 static void fill_header(char *buf, int len)
729 {
730         struct fw_header *hdr = (struct fw_header *)buf;
731
732         memset(hdr, 0, sizeof(struct fw_header));
733
734         hdr->version = htonl(HEADER_VERSION_V1);
735         strncpy(hdr->vendor_name, vendor, sizeof(hdr->vendor_name));
736         strncpy(hdr->fw_version, version, sizeof(hdr->fw_version));
737         hdr->hw_id = htonl(hw_id);
738         hdr->hw_rev = htonl(hw_rev);
739
740         if (boot_info.file_size == 0)
741                 memcpy(hdr->md5sum1, md5salt_normal, sizeof(hdr->md5sum1));
742         else
743                 memcpy(hdr->md5sum1, md5salt_boot, sizeof(hdr->md5sum1));
744
745         hdr->kernel_la = htonl(kernel_la);
746         hdr->kernel_ep = htonl(kernel_ep);
747         hdr->fw_length = htonl(layout->fw_max_len);
748         hdr->kernel_ofs = htonl(sizeof(struct fw_header));
749         hdr->kernel_len = htonl(kernel_len);
750         if (!combined) {
751                 hdr->rootfs_ofs = htonl(rootfs_ofs);
752                 hdr->rootfs_len = htonl(rootfs_info.file_size);
753         }
754
755         hdr->ver_hi = htons(fw_ver_hi);
756         hdr->ver_mid = htons(fw_ver_mid);
757         hdr->ver_lo = htons(fw_ver_lo);
758
759         get_md5(buf, len, hdr->md5sum1);
760 }
761
762 static int pad_jffs2(char *buf, int currlen)
763 {
764         int len;
765         uint32_t pad_mask;
766
767         len = currlen;
768         pad_mask = (64 * 1024);
769         while ((len < layout->fw_max_len) && (pad_mask != 0)) {
770                 uint32_t mask;
771                 int i;
772
773                 for (i = 10; i < 32; i++) {
774                         mask = 1 << i;
775                         if (pad_mask & mask)
776                                 break;
777                 }
778
779                 len = ALIGN(len, mask);
780
781                 for (i = 10; i < 32; i++) {
782                         mask = 1 << i;
783                         if ((len & (mask - 1)) == 0)
784                                 pad_mask &= ~mask;
785                 }
786
787                 for (i = 0; i < sizeof(jffs2_eof_mark); i++)
788                         buf[len + i] = jffs2_eof_mark[i];
789
790                 len += sizeof(jffs2_eof_mark);
791         }
792
793         return len;
794 }
795
796 static int write_fw(char *data, int len)
797 {
798         FILE *f;
799         int ret = EXIT_FAILURE;
800
801         f = fopen(ofname, "w");
802         if (f == NULL) {
803                 ERRS("could not open \"%s\" for writing", ofname);
804                 goto out;
805         }
806
807         errno = 0;
808         fwrite(data, len, 1, f);
809         if (errno) {
810                 ERRS("unable to write output file");
811                 goto out_flush;
812         }
813
814         DBG("firmware file \"%s\" completed", ofname);
815
816         ret = EXIT_SUCCESS;
817
818  out_flush:
819         fflush(f);
820         fclose(f);
821         if (ret != EXIT_SUCCESS) {
822                 unlink(ofname);
823         }
824  out:
825         return ret;
826 }
827
828 static int build_fw(void)
829 {
830         int buflen;
831         char *buf;
832         char *p;
833         int ret = EXIT_FAILURE;
834         int writelen = 0;
835
836         buflen = layout->fw_max_len;
837
838         buf = malloc(buflen);
839         if (!buf) {
840                 ERR("no memory for buffer\n");
841                 goto out;
842         }
843
844         memset(buf, 0xff, buflen);
845         p = buf + sizeof(struct fw_header);
846         ret = read_to_buf(&kernel_info, p);
847         if (ret)
848                 goto out_free_buf;
849
850         writelen = sizeof(struct fw_header) + kernel_len;
851
852         if (!combined) {
853                 if (rootfs_align)
854                         p = buf + writelen;
855                 else
856                         p = buf + rootfs_ofs;
857
858                 ret = read_to_buf(&rootfs_info, p);
859                 if (ret)
860                         goto out_free_buf;
861
862                 if (rootfs_align)
863                         writelen += rootfs_info.file_size;
864                 else
865                         writelen = rootfs_ofs + rootfs_info.file_size;
866
867                 if (add_jffs2_eof)
868                         writelen = pad_jffs2(buf, writelen);
869         }
870
871         if (!strip_padding)
872                 writelen = buflen;
873
874         fill_header(buf, writelen);
875         ret = write_fw(buf, writelen);
876         if (ret)
877                 goto out_free_buf;
878
879         ret = EXIT_SUCCESS;
880
881  out_free_buf:
882         free(buf);
883  out:
884         return ret;
885 }
886
887 /* Helper functions to inspect_fw() representing different output formats */
888 static inline void inspect_fw_pstr(char *label, char *str)
889 {
890         printf("%-23s: %s\n", label, str);
891 }
892
893 static inline void inspect_fw_phex(char *label, uint32_t val)
894 {
895         printf("%-23s: 0x%08x\n", label, val);
896 }
897
898 static inline void inspect_fw_phexpost(char *label,
899                                        uint32_t val, char *post)
900 {
901         printf("%-23s: 0x%08x (%s)\n", label, val, post);
902 }
903
904 static inline void inspect_fw_phexdef(char *label,
905                                       uint32_t val, uint32_t defval)
906 {
907         printf("%-23s: 0x%08x                  ", label, val);
908
909         if (val == defval)
910                 printf("(== OpenWrt default)\n");
911         else
912                 printf("(OpenWrt default: 0x%08x)\n", defval);
913 }
914
915 static inline void inspect_fw_phexexp(char *label,
916                                       uint32_t val, uint32_t expval)
917 {
918         printf("%-23s: 0x%08x ", label, val);
919
920         if (val == expval)
921                 printf("(ok)\n");
922         else
923                 printf("(expected: 0x%08x)\n", expval);
924 }
925
926 static inline void inspect_fw_phexdec(char *label, uint32_t val)
927 {
928         printf("%-23s: 0x%08x / %8u bytes\n", label, val, val);
929 }
930
931 static inline void inspect_fw_phexdecdef(char *label,
932                                          uint32_t val, uint32_t defval)
933 {
934         printf("%-23s: 0x%08x / %8u bytes ", label, val, val);
935
936         if (val == defval)
937                 printf("(== OpenWrt default)\n");
938         else
939                 printf("(OpenWrt default: 0x%08x)\n", defval);
940 }
941
942 static inline void inspect_fw_pmd5sum(char *label, uint8_t *val, char *text)
943 {
944         int i;
945
946         printf("%-23s:", label);
947         for (i=0; i<MD5SUM_LEN; i++)
948                 printf(" %02x", val[i]);
949         printf(" %s\n", text);
950 }
951
952 static int inspect_fw(void)
953 {
954         char *buf;
955         struct fw_header *hdr;
956         uint8_t md5sum[MD5SUM_LEN];
957         struct board_info *board;
958         int ret = EXIT_FAILURE;
959
960         buf = malloc(inspect_info.file_size);
961         if (!buf) {
962                 ERR("no memory for buffer!\n");
963                 goto out;
964         }
965
966         ret = read_to_buf(&inspect_info, buf);
967         if (ret)
968                 goto out_free_buf;
969         hdr = (struct fw_header *)buf;
970
971         inspect_fw_pstr("File name", inspect_info.file_name);
972         inspect_fw_phexdec("File size", inspect_info.file_size);
973
974         if (ntohl(hdr->version) != HEADER_VERSION_V1) {
975                 ERR("file does not seem to have V1 header!\n");
976                 goto out_free_buf;
977         }
978
979         inspect_fw_phexdec("Version 1 Header size", sizeof(struct fw_header));
980
981         if (ntohl(hdr->unk1) != 0)
982                 inspect_fw_phexdec("Unknown value 1", hdr->unk1);
983
984         memcpy(md5sum, hdr->md5sum1, sizeof(md5sum));
985         if (ntohl(hdr->boot_len) == 0)
986                 memcpy(hdr->md5sum1, md5salt_normal, sizeof(md5sum));
987         else
988                 memcpy(hdr->md5sum1, md5salt_boot, sizeof(md5sum));
989         get_md5(buf, inspect_info.file_size, hdr->md5sum1);
990
991         if (memcmp(md5sum, hdr->md5sum1, sizeof(md5sum))) {
992                 inspect_fw_pmd5sum("Header MD5Sum1", md5sum, "(*ERROR*)");
993                 inspect_fw_pmd5sum("          --> expected", hdr->md5sum1, "");
994         } else {
995                 inspect_fw_pmd5sum("Header MD5Sum1", md5sum, "(ok)");
996         }
997         if (ntohl(hdr->unk2) != 0)
998                 inspect_fw_phexdec("Unknown value 2", hdr->unk2);
999         inspect_fw_pmd5sum("Header MD5Sum2", hdr->md5sum2,
1000                            "(purpose yet unknown, unchecked here)");
1001         if (ntohl(hdr->unk3) != 0)
1002                 inspect_fw_phexdec("Unknown value 3", hdr->unk3);
1003
1004         printf("\n");
1005
1006         inspect_fw_pstr("Vendor name", hdr->vendor_name);
1007         inspect_fw_pstr("Firmware version", hdr->fw_version);
1008         board = find_board_by_hwid(ntohl(hdr->hw_id));
1009         if (board) {
1010                 layout = find_layout(board->layout_id);
1011                 inspect_fw_phexpost("Hardware ID",
1012                                     ntohl(hdr->hw_id), board->id);
1013                 inspect_fw_phexexp("Hardware Revision",
1014                                    ntohl(hdr->hw_rev), board->hw_rev);
1015         } else {
1016                 inspect_fw_phexpost("Hardware ID",
1017                                     ntohl(hdr->hw_id), "unknown");
1018                 inspect_fw_phex("Hardware Revision",
1019                                 ntohl(hdr->hw_rev));
1020         }
1021
1022         printf("\n");
1023
1024         inspect_fw_phexdec("Kernel data offset",
1025                            ntohl(hdr->kernel_ofs));
1026         inspect_fw_phexdec("Kernel data length",
1027                            ntohl(hdr->kernel_len));
1028         if (board) {
1029                 inspect_fw_phexdef("Kernel load address",
1030                                    ntohl(hdr->kernel_la),
1031                                    layout ? layout->kernel_la : 0xffffffff);
1032                 inspect_fw_phexdef("Kernel entry point",
1033                                    ntohl(hdr->kernel_ep),
1034                                    layout ? layout->kernel_ep : 0xffffffff);
1035                 inspect_fw_phexdecdef("Rootfs data offset",
1036                                       ntohl(hdr->rootfs_ofs),
1037                                       layout ? layout->rootfs_ofs : 0xffffffff);
1038         } else {
1039                 inspect_fw_phex("Kernel load address",
1040                                 ntohl(hdr->kernel_la));
1041                 inspect_fw_phex("Kernel entry point",
1042                                 ntohl(hdr->kernel_ep));
1043                 inspect_fw_phexdec("Rootfs data offset",
1044                                    ntohl(hdr->rootfs_ofs));
1045         }
1046         inspect_fw_phexdec("Rootfs data length",
1047                            ntohl(hdr->rootfs_len));
1048         inspect_fw_phexdec("Boot loader data offset",
1049                            ntohl(hdr->boot_ofs));
1050         inspect_fw_phexdec("Boot loader data length",
1051                            ntohl(hdr->boot_len));
1052         inspect_fw_phexdec("Total firmware length",
1053                            ntohl(hdr->fw_length));
1054
1055         if (extract) {
1056                 FILE *fp;
1057                 char *filename;
1058
1059                 printf("\n");
1060
1061                 filename = malloc(strlen(inspect_info.file_name) + 8);
1062                 sprintf(filename, "%s-kernel", inspect_info.file_name);
1063                 printf("Extracting kernel to \"%s\"...\n", filename);
1064                 fp = fopen(filename, "w");
1065                 if (fp) {
1066                         if (!fwrite(buf + ntohl(hdr->kernel_ofs),
1067                                     ntohl(hdr->kernel_len), 1, fp)) {
1068                                 ERR("error in fwrite(): %s", strerror(errno));
1069                         }
1070                         fclose(fp);
1071                 } else {
1072                         ERR("error in fopen(): %s", strerror(errno));
1073                 }
1074                 free(filename);
1075
1076                 filename = malloc(strlen(inspect_info.file_name) + 8);
1077                 sprintf(filename, "%s-rootfs", inspect_info.file_name);
1078                 printf("Extracting rootfs to \"%s\"...\n", filename);
1079                 fp = fopen(filename, "w");
1080                 if (fp) {
1081                         if (!fwrite(buf + ntohl(hdr->rootfs_ofs),
1082                                     ntohl(hdr->rootfs_len), 1, fp)) {
1083                                 ERR("error in fwrite(): %s", strerror(errno));
1084                         }
1085                         fclose(fp);
1086                 } else {
1087                         ERR("error in fopen(): %s", strerror(errno));
1088                 }
1089                 free(filename);
1090         }
1091
1092  out_free_buf:
1093         free(buf);
1094  out:
1095         return ret;
1096 }
1097
1098 int main(int argc, char *argv[])
1099 {
1100         int ret = EXIT_FAILURE;
1101         int err;
1102
1103         FILE *outfile;
1104
1105         progname = basename(argv[0]);
1106
1107         while ( 1 ) {
1108                 int c;
1109
1110                 c = getopt(argc, argv, "a:B:H:E:F:L:V:N:W:ci:k:r:R:o:xX:hsSjv:");
1111                 if (c == -1)
1112                         break;
1113
1114                 switch (c) {
1115                 case 'a':
1116                         sscanf(optarg, "0x%x", &rootfs_align);
1117                         break;
1118                 case 'B':
1119                         board_id = optarg;
1120                         break;
1121                 case 'H':
1122                         opt_hw_id = optarg;
1123                         break;
1124                 case 'E':
1125                         sscanf(optarg, "0x%x", &kernel_ep);
1126                         break;
1127                 case 'F':
1128                         layout_id = optarg;
1129                         break;
1130                 case 'W':
1131                         opt_hw_rev = optarg;
1132                         break;
1133                 case 'L':
1134                         sscanf(optarg, "0x%x", &kernel_la);
1135                         break;
1136                 case 'V':
1137                         version = optarg;
1138                         break;
1139                 case 'v':
1140                         fw_ver = optarg;
1141                         break;
1142                 case 'N':
1143                         vendor = optarg;
1144                         break;
1145                 case 'c':
1146                         combined++;
1147                         break;
1148                 case 'k':
1149                         kernel_info.file_name = optarg;
1150                         break;
1151                 case 'r':
1152                         rootfs_info.file_name = optarg;
1153                         break;
1154                 case 'R':
1155                         sscanf(optarg, "0x%x", &rootfs_ofs);
1156                         break;
1157                 case 'o':
1158                         ofname = optarg;
1159                         break;
1160                 case 's':
1161                         strip_padding = 1;
1162                         break;
1163                 case 'S':
1164                         ignore_size = 1;
1165                         break;
1166                 case 'i':
1167                         inspect_info.file_name = optarg;
1168                         break;
1169                 case 'j':
1170                         add_jffs2_eof = 1;
1171                         break;
1172                 case 'x':
1173                         extract = 1;
1174                         break;
1175                 case 'h':
1176                         usage(EXIT_SUCCESS);
1177                         break;
1178                 case 'X':
1179                         sscanf(optarg, "0x%x", &reserved_space);
1180                         break;
1181                 default:
1182                         usage(EXIT_FAILURE);
1183                         break;
1184                 }
1185         }
1186
1187         ret = check_options();
1188         if (ret)
1189                 goto out;
1190
1191         if (!inspect_info.file_name)
1192                 ret = build_fw();
1193         else
1194                 ret = inspect_fw();
1195
1196  out:
1197         return ret;
1198 }
1199