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,
62 .kern_start
= 0xbf030000,
63 .kern_entry
= 0x80060000,
64 .firmware_max_length
= 0x00640000,
68 .kern_start
= 0xbf030000,
69 .kern_entry
= 0x80060000,
70 .firmware_max_length
= 0x00640000,
74 .kern_start
= 0xa8030000,
75 .kern_entry
= 0x80041000,
76 .firmware_max_length
= 0x006C0000,
82 typedef struct part_data
{
83 char partition_name
[64];
85 u_int32_t partition_baseaddr
;
86 u_int32_t partition_startaddr
;
87 u_int32_t partition_memaddr
;
88 u_int32_t partition_entryaddr
;
89 u_int32_t partition_length
;
91 char filename
[PATH_MAX
];
95 #define MAX_SECTIONS 8
96 #define DEFAULT_OUTPUT_FILE "firmware-image.bin"
97 #define DEFAULT_VERSION "UNKNOWN"
99 #define OPTIONS "B:hv:o:r:k:"
101 static int debug
= 0;
103 typedef struct image_info
{
105 char outputfile
[PATH_MAX
];
106 u_int32_t part_count
;
107 part_data_t parts
[MAX_SECTIONS
];
110 static void write_header(void* mem
, const char* version
)
112 header_t
* header
= mem
;
113 memset(header
, 0, sizeof(header_t
));
115 memcpy(header
->magic
, MAGIC_HEADER
, MAGIC_LENGTH
);
116 strncpy(header
->version
, version
, sizeof(header
->version
));
117 header
->crc
= htonl(crc32(0L, (unsigned char *)header
,
118 sizeof(header_t
) - 2 * sizeof(u_int32_t
)));
123 static void write_signature(void* mem
, u_int32_t sig_offset
)
125 /* write signature */
126 signature_t
* sign
= (signature_t
*)(mem
+ sig_offset
);
127 memset(sign
, 0, sizeof(signature_t
));
129 memcpy(sign
->magic
, MAGIC_END
, MAGIC_LENGTH
);
130 sign
->crc
= htonl(crc32(0L,(unsigned char *)mem
, sig_offset
));
134 static int write_part(void* mem
, part_data_t
* d
)
139 part_crc_t
* crc
= mem
+ sizeof(part_t
) + d
->stats
.st_size
;
141 fd
= open(d
->filename
, O_RDONLY
);
144 ERROR("Failed opening file '%s'\n", d
->filename
);
148 if ((addr
=(char*)mmap(0, d
->stats
.st_size
, PROT_READ
, MAP_SHARED
, fd
, 0)) == MAP_FAILED
)
150 ERROR("Failed mmaping memory for file '%s'\n", d
->filename
);
155 memcpy(mem
+ sizeof(part_t
), addr
, d
->stats
.st_size
);
156 munmap(addr
, d
->stats
.st_size
);
158 memset(p
->name
, 0, sizeof(p
->name
));
159 strncpy(p
->magic
, MAGIC_PART
, MAGIC_LENGTH
);
160 strncpy(p
->name
, d
->partition_name
, sizeof(p
->name
));
161 p
->index
= htonl(d
->partition_index
);
162 p
->data_size
= htonl(d
->stats
.st_size
);
163 p
->part_size
= htonl(d
->partition_length
);
164 p
->baseaddr
= htonl(d
->partition_baseaddr
);
165 p
->memaddr
= htonl(d
->partition_memaddr
);
166 p
->entryaddr
= htonl(d
->partition_entryaddr
);
168 crc
->crc
= htonl(crc32(0L, mem
, d
->stats
.st_size
+ sizeof(part_t
)));
174 static void usage(const char* progname
)
177 "Usage: %s [options]\n"
178 "\t-v <version string>\t - firmware version information, default: %s\n"
179 "\t-o <output file>\t - firmware output file, default: %s\n"
180 "\t-k <kernel file>\t\t - kernel file\n"
181 "\t-r <rootfs file>\t\t - rootfs file\n"
182 "\t-B <board name>\t\t - choose firmware layout for specified board (XS2, XS5, RS)\n"
183 "\t-h\t\t\t - this help\n", VERSION
,
184 progname
, DEFAULT_VERSION
, DEFAULT_OUTPUT_FILE
);
187 static void print_image_info(const image_info_t
* im
)
190 INFO("Firmware version: '%s'\n"
191 "Output file: '%s'\n"
193 im
->version
, im
->outputfile
,
196 for (i
= 0; i
< im
->part_count
; ++i
)
198 const part_data_t
* d
= &im
->parts
[i
];
199 INFO(" %10s: %8ld bytes (free: %8ld)\n",
202 d
->partition_length
- d
->stats
.st_size
);
208 static u_int32_t
filelength(const char* file
)
213 if ( (p
= fopen(file
, "rb") ) == NULL
) return (-1);
215 fseek(p
, 0, SEEK_END
);
223 static int create_image_layout(const char* kernelfile
, const char* rootfsfile
, char* board_name
, image_info_t
* im
)
225 part_data_t
* kernel
= &im
->parts
[0];
226 part_data_t
* rootfs
= &im
->parts
[1];
230 p
= &fw_layout_data
[0];
231 while ((strlen(p
->name
) != 0) && (strncmp(p
->name
, board_name
, sizeof(board_name
)) != 0))
233 if (p
->name
== NULL
) {
234 printf("BUG! Unable to find default fw layout!\n");
238 printf("board = %s\n", p
->name
);
239 strcpy(kernel
->partition_name
, "kernel");
240 kernel
->partition_index
= 1;
241 kernel
->partition_baseaddr
= p
->kern_start
;
242 if ( (kernel
->partition_length
= filelength(kernelfile
)) < 0) return (-1);
243 kernel
->partition_memaddr
= p
->kern_entry
;
244 kernel
->partition_entryaddr
= p
->kern_entry
;
245 strncpy(kernel
->filename
, kernelfile
, sizeof(kernel
->filename
));
247 if (filelength(rootfsfile
) + kernel
->partition_length
> p
->firmware_max_length
)
250 strcpy(rootfs
->partition_name
, "rootfs");
251 rootfs
->partition_index
= 2;
252 rootfs
->partition_baseaddr
= kernel
->partition_baseaddr
+ kernel
->partition_length
;
253 rootfs
->partition_length
= p
->firmware_max_length
- kernel
->partition_length
;
254 rootfs
->partition_memaddr
= 0x00000000;
255 rootfs
->partition_entryaddr
= 0x00000000;
256 strncpy(rootfs
->filename
, rootfsfile
, sizeof(rootfs
->filename
));
258 printf("kernel: %d 0x%08x\n", kernel
->partition_length
, kernel
->partition_baseaddr
);
259 printf("root: %d 0x%08x\n", rootfs
->partition_length
, rootfs
->partition_baseaddr
);
266 * Checks the availability and validity of all image components.
267 * Fills in stats member of the part_data structure.
269 static int validate_image_layout(image_info_t
* im
)
273 if (im
->part_count
== 0 || im
->part_count
> MAX_SECTIONS
)
275 ERROR("Invalid part count '%d'\n", im
->part_count
);
279 for (i
= 0; i
< im
->part_count
; ++i
)
281 part_data_t
* d
= &im
->parts
[i
];
282 int len
= strlen(d
->partition_name
);
283 if (len
== 0 || len
> 16)
285 ERROR("Invalid partition name '%s' of the part %d\n",
286 d
->partition_name
, i
);
289 if (stat(d
->filename
, &d
->stats
) < 0)
291 ERROR("Couldn't stat file '%s' from part '%s'\n",
292 d
->filename
, d
->partition_name
);
295 if (d
->stats
.st_size
== 0)
297 ERROR("File '%s' from part '%s' is empty!\n",
298 d
->filename
, d
->partition_name
);
301 if (d
->stats
.st_size
> d
->partition_length
) {
302 ERROR("File '%s' too big (%d) - max size: 0x%08X (exceeds %lu bytes)\n",
303 d
->filename
, i
, d
->partition_length
,
304 d
->stats
.st_size
- d
->partition_length
);
312 static int build_image(image_info_t
* im
)
320 // build in-memory buffer
321 mem_size
= sizeof(header_t
) + sizeof(signature_t
);
322 for (i
= 0; i
< im
->part_count
; ++i
)
324 part_data_t
* d
= &im
->parts
[i
];
325 mem_size
+= sizeof(part_t
) + d
->stats
.st_size
+ sizeof(part_crc_t
);
328 mem
= (char*)calloc(mem_size
, 1);
331 ERROR("Cannot allocate memory chunk of size '%u'\n", mem_size
);
336 write_header(mem
, im
->version
);
337 ptr
= mem
+ sizeof(header_t
);
339 for (i
= 0; i
< im
->part_count
; ++i
)
341 part_data_t
* d
= &im
->parts
[i
];
343 if ((rc
= write_part(ptr
, d
)) != 0)
345 ERROR("ERROR: failed writing part %u '%s'\n", i
, d
->partition_name
);
347 ptr
+= sizeof(part_t
) + d
->stats
.st_size
+ sizeof(part_crc_t
);
350 write_signature(mem
, mem_size
- sizeof(signature_t
));
352 // write in-memory buffer into file
353 if ((f
= fopen(im
->outputfile
, "w")) == NULL
)
355 ERROR("Can not create output file: '%s'\n", im
->outputfile
);
359 if (fwrite(mem
, mem_size
, 1, f
) != 1)
361 ERROR("Could not write %d bytes into file: '%s'\n",
362 mem_size
, im
->outputfile
);
372 int main(int argc
, char* argv
[])
374 char kernelfile
[PATH_MAX
];
375 char rootfsfile
[PATH_MAX
];
376 char board_name
[PATH_MAX
];
380 memset(&im
, 0, sizeof(im
));
381 memset(kernelfile
, 0, sizeof(kernelfile
));
382 memset(rootfsfile
, 0, sizeof(rootfsfile
));
383 memset(board_name
, 0, sizeof(board_name
));
385 strcpy(im
.outputfile
, DEFAULT_OUTPUT_FILE
);
386 strcpy(im
.version
, DEFAULT_VERSION
);
388 while ((o
= getopt(argc
, argv
, OPTIONS
)) != -1)
393 strncpy(im
.version
, optarg
, sizeof(im
.version
));
397 strncpy(im
.outputfile
, optarg
, sizeof(im
.outputfile
));
404 strncpy(kernelfile
, optarg
, sizeof(kernelfile
));
408 strncpy(rootfsfile
, optarg
, sizeof(rootfsfile
));
412 strncpy(board_name
, optarg
, sizeof(board_name
));
416 if (strlen(board_name
) == 0)
417 strcpy(board_name
, "XS2"); /* default to XS2 */
419 if (strlen(kernelfile
) == 0)
421 ERROR("Kernel file is not specified, cannot continue\n");
426 if (strlen(rootfsfile
) == 0)
428 ERROR("Root FS file is not specified, cannot continue\n");
433 if ((rc
= create_image_layout(kernelfile
, rootfsfile
, board_name
, &im
)) != 0)
435 ERROR("Failed creating firmware layout description - error code: %d\n", rc
);
439 if ((rc
= validate_image_layout(&im
)) != 0)
441 ERROR("Failed validating firmware layout - error code: %d\n", rc
);
445 print_image_info(&im
);
447 if ((rc
= build_image(&im
)) != 0)
449 ERROR("Failed building image file '%s' - error code: %d\n", im
.outputfile
, rc
);