2 * Copyright (C) 2007 Ubiquiti Networks, Inc.
3 * Copyright (C) 2008 Lukas Kuna <ValXdater@seznam.cz>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <sys/types.h>
28 #include <netinet/in.h>
34 typedef struct fw_layout_data
{
38 u_int32_t firmware_max_length
;
41 fw_layout_t fw_layout_data
[] = {
44 .kern_start
= 0xbfc30000,
45 .kern_entry
= 0x80041000,
46 .firmware_max_length
= 0x00390000,
50 .kern_start
= 0xbe030000,
51 .kern_entry
= 0x80041000,
52 .firmware_max_length
= 0x00390000,
56 .kern_start
= 0xbf030000,
57 .kern_entry
= 0x80060000,
58 .firmware_max_length
= 0x00640000,
64 typedef struct part_data
{
65 char partition_name
[64];
67 u_int32_t partition_baseaddr
;
68 u_int32_t partition_startaddr
;
69 u_int32_t partition_memaddr
;
70 u_int32_t partition_entryaddr
;
71 u_int32_t partition_length
;
73 char filename
[PATH_MAX
];
77 #define MAX_SECTIONS 8
78 #define DEFAULT_OUTPUT_FILE "firmware-image.bin"
79 #define DEFAULT_VERSION "UNKNOWN"
81 #define OPTIONS "B:hv:o:r:k:"
85 typedef struct image_info
{
87 char outputfile
[PATH_MAX
];
89 part_data_t parts
[MAX_SECTIONS
];
92 static void write_header(void* mem
, const char* version
)
94 header_t
* header
= mem
;
95 memset(header
, 0, sizeof(header_t
));
97 memcpy(header
->magic
, MAGIC_HEADER
, MAGIC_LENGTH
);
98 strncpy(header
->version
, version
, sizeof(header
->version
));
99 header
->crc
= htonl(crc32(0L, (unsigned char *)header
,
100 sizeof(header_t
) - 2 * sizeof(u_int32_t
)));
105 static void write_signature(void* mem
, u_int32_t sig_offset
)
107 /* write signature */
108 signature_t
* sign
= (signature_t
*)(mem
+ sig_offset
);
109 memset(sign
, 0, sizeof(signature_t
));
111 memcpy(sign
->magic
, MAGIC_END
, MAGIC_LENGTH
);
112 sign
->crc
= htonl(crc32(0L,(unsigned char *)mem
, sig_offset
));
116 static int write_part(void* mem
, part_data_t
* d
)
121 part_crc_t
* crc
= mem
+ sizeof(part_t
) + d
->stats
.st_size
;
123 fd
= open(d
->filename
, O_RDONLY
);
126 ERROR("Failed opening file '%s'\n", d
->filename
);
130 if ((addr
=(char*)mmap(0, d
->stats
.st_size
, PROT_READ
, MAP_SHARED
, fd
, 0)) == MAP_FAILED
)
132 ERROR("Failed mmaping memory for file '%s'\n", d
->filename
);
137 memcpy(mem
+ sizeof(part_t
), addr
, d
->stats
.st_size
);
138 munmap(addr
, d
->stats
.st_size
);
140 memset(p
->name
, 0, sizeof(p
->name
));
141 strncpy(p
->magic
, MAGIC_PART
, MAGIC_LENGTH
);
142 strncpy(p
->name
, d
->partition_name
, sizeof(p
->name
));
143 p
->index
= htonl(d
->partition_index
);
144 p
->data_size
= htonl(d
->stats
.st_size
);
145 p
->part_size
= htonl(d
->partition_length
);
146 p
->baseaddr
= htonl(d
->partition_baseaddr
);
147 p
->memaddr
= htonl(d
->partition_memaddr
);
148 p
->entryaddr
= htonl(d
->partition_entryaddr
);
150 crc
->crc
= htonl(crc32(0L, mem
, d
->stats
.st_size
+ sizeof(part_t
)));
156 static void usage(const char* progname
)
159 "Usage: %s [options]\n"
160 "\t-v <version string>\t - firmware version information, default: %s\n"
161 "\t-o <output file>\t - firmware output file, default: %s\n"
162 "\t-k <kernel file>\t\t - kernel file\n"
163 "\t-r <rootfs file>\t\t - rootfs file\n"
164 "\t-B <board name>\t\t - choose firmware layout for specified board (XS2, XS5, RS)\n"
165 "\t-h\t\t\t - this help\n", VERSION
,
166 progname
, DEFAULT_VERSION
, DEFAULT_OUTPUT_FILE
);
169 static void print_image_info(const image_info_t
* im
)
172 INFO("Firmware version: '%s'\n"
173 "Output file: '%s'\n"
175 im
->version
, im
->outputfile
,
178 for (i
= 0; i
< im
->part_count
; ++i
)
180 const part_data_t
* d
= &im
->parts
[i
];
181 INFO(" %10s: %8ld bytes (free: %8ld)\n",
184 d
->partition_length
- d
->stats
.st_size
);
190 static u_int32_t
filelength(const char* file
)
195 if ( (p
= fopen(file
, "rb") ) == NULL
) return (-1);
197 fseek(p
, 0, SEEK_END
);
205 static int create_image_layout(const char* kernelfile
, const char* rootfsfile
, char* board_name
, image_info_t
* im
)
207 part_data_t
* kernel
= &im
->parts
[0];
208 part_data_t
* rootfs
= &im
->parts
[1];
212 p
= &fw_layout_data
[0];
213 while ((strlen(p
->name
) != 0) && (strncmp(p
->name
, board_name
, sizeof(board_name
)) != 0))
215 if (p
->name
== NULL
) {
216 printf("BUG! Unable to find default fw layout!\n");
220 printf("board = %s\n", p
->name
);
221 strcpy(kernel
->partition_name
, "kernel");
222 kernel
->partition_index
= 1;
223 kernel
->partition_baseaddr
= p
->kern_start
;
224 if ( (kernel
->partition_length
= filelength(kernelfile
)) < 0) return (-1);
225 kernel
->partition_memaddr
= p
->kern_entry
;
226 kernel
->partition_entryaddr
= p
->kern_entry
;
227 strncpy(kernel
->filename
, kernelfile
, sizeof(kernel
->filename
));
229 if (filelength(rootfsfile
) + kernel
->partition_length
> p
->firmware_max_length
)
232 strcpy(rootfs
->partition_name
, "rootfs");
233 rootfs
->partition_index
= 2;
234 rootfs
->partition_baseaddr
= kernel
->partition_baseaddr
+ kernel
->partition_length
;
235 rootfs
->partition_length
= p
->firmware_max_length
- kernel
->partition_length
;
236 rootfs
->partition_memaddr
= 0x00000000;
237 rootfs
->partition_entryaddr
= 0x00000000;
238 strncpy(rootfs
->filename
, rootfsfile
, sizeof(rootfs
->filename
));
240 printf("kernel: %d 0x%08x\n", kernel
->partition_length
, kernel
->partition_baseaddr
);
241 printf("root: %d 0x%08x\n", rootfs
->partition_length
, rootfs
->partition_baseaddr
);
248 * Checks the availability and validity of all image components.
249 * Fills in stats member of the part_data structure.
251 static int validate_image_layout(image_info_t
* im
)
255 if (im
->part_count
== 0 || im
->part_count
> MAX_SECTIONS
)
257 ERROR("Invalid part count '%d'\n", im
->part_count
);
261 for (i
= 0; i
< im
->part_count
; ++i
)
263 part_data_t
* d
= &im
->parts
[i
];
264 int len
= strlen(d
->partition_name
);
265 if (len
== 0 || len
> 16)
267 ERROR("Invalid partition name '%s' of the part %d\n",
268 d
->partition_name
, i
);
271 if (stat(d
->filename
, &d
->stats
) < 0)
273 ERROR("Couldn't stat file '%s' from part '%s'\n",
274 d
->filename
, d
->partition_name
);
277 if (d
->stats
.st_size
== 0)
279 ERROR("File '%s' from part '%s' is empty!\n",
280 d
->filename
, d
->partition_name
);
283 if (d
->stats
.st_size
> d
->partition_length
) {
284 ERROR("File '%s' too big (%d) - max size: 0x%08X (exceeds %lu bytes)\n",
285 d
->filename
, i
, d
->partition_length
,
286 d
->stats
.st_size
- d
->partition_length
);
294 static int build_image(image_info_t
* im
)
302 // build in-memory buffer
303 mem_size
= sizeof(header_t
) + sizeof(signature_t
);
304 for (i
= 0; i
< im
->part_count
; ++i
)
306 part_data_t
* d
= &im
->parts
[i
];
307 mem_size
+= sizeof(part_t
) + d
->stats
.st_size
+ sizeof(part_crc_t
);
310 mem
= (char*)calloc(mem_size
, 1);
313 ERROR("Cannot allocate memory chunk of size '%u'\n", mem_size
);
318 write_header(mem
, im
->version
);
319 ptr
= mem
+ sizeof(header_t
);
321 for (i
= 0; i
< im
->part_count
; ++i
)
323 part_data_t
* d
= &im
->parts
[i
];
325 if ((rc
= write_part(ptr
, d
)) != 0)
327 ERROR("ERROR: failed writing part %u '%s'\n", i
, d
->partition_name
);
329 ptr
+= sizeof(part_t
) + d
->stats
.st_size
+ sizeof(part_crc_t
);
332 write_signature(mem
, mem_size
- sizeof(signature_t
));
334 // write in-memory buffer into file
335 if ((f
= fopen(im
->outputfile
, "w")) == NULL
)
337 ERROR("Can not create output file: '%s'\n", im
->outputfile
);
341 if (fwrite(mem
, mem_size
, 1, f
) != 1)
343 ERROR("Could not write %d bytes into file: '%s'\n",
344 mem_size
, im
->outputfile
);
354 int main(int argc
, char* argv
[])
356 char kernelfile
[PATH_MAX
];
357 char rootfsfile
[PATH_MAX
];
358 char board_name
[PATH_MAX
];
362 memset(&im
, 0, sizeof(im
));
363 memset(kernelfile
, 0, sizeof(kernelfile
));
364 memset(rootfsfile
, 0, sizeof(rootfsfile
));
365 memset(board_name
, 0, sizeof(board_name
));
367 strcpy(im
.outputfile
, DEFAULT_OUTPUT_FILE
);
368 strcpy(im
.version
, DEFAULT_VERSION
);
370 while ((o
= getopt(argc
, argv
, OPTIONS
)) != -1)
375 strncpy(im
.version
, optarg
, sizeof(im
.version
));
379 strncpy(im
.outputfile
, optarg
, sizeof(im
.outputfile
));
386 strncpy(kernelfile
, optarg
, sizeof(kernelfile
));
390 strncpy(rootfsfile
, optarg
, sizeof(rootfsfile
));
394 strncpy(board_name
, optarg
, sizeof(board_name
));
398 if (strlen(board_name
) == 0)
399 strcpy(board_name
, "XS2"); /* default to XS2 */
401 if (strlen(kernelfile
) == 0)
403 ERROR("Kernel file is not specified, cannot continue\n");
408 if (strlen(rootfsfile
) == 0)
410 ERROR("Root FS file is not specified, cannot continue\n");
415 if ((rc
= create_image_layout(kernelfile
, rootfsfile
, board_name
, &im
)) != 0)
417 ERROR("Failed creating firmware layout description - error code: %d\n", rc
);
421 if ((rc
= validate_image_layout(&im
)) != 0)
423 ERROR("Failed validating firmware layout - error code: %d\n", rc
);
427 print_image_info(&im
);
429 if ((rc
= build_image(&im
)) != 0)
431 ERROR("Failed building image file '%s' - error code: %d\n", im
.outputfile
, rc
);