06fbb9f03ee369bb8bb5f5bd32ec90d300246737
[openwrt/openwrt.git] / tools / firmware-utils / src / jcgimage.c
1 /*
2 * jcgimage - Create a JCG firmware image
3 *
4 * Copyright (C) 2015 Reinhard Max <reinhard@m4x.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 */
21
22 /*
23 * JCG firmware update images consist of a 512 byte header and a
24 * modified uImage (details below) as the payload.
25 *
26 * The payload is obfuscated by XORing it with a key that is generated
27 * from parts of the header. Fortunately only non-essential parts of
28 * the header are used for this and zeroing them results in a zero
29 * key, effectively disabling the obfuscation and allowing us to use
30 * clear text payloads.
31 *
32 * The mandatory parts of the header are:
33 *
34 * - A magic string of "YSZJ" at offset 0.
35 * - A value of 1 at offset 39 (header format version?)
36 * - A CRC32 checksum of the payload at offset 504.
37 * - A CRC32 checksum of the header at offset 508.
38 *
39 * An image constructed by these rules will be accepted by JCG's
40 * U-Boot in resuce mode via TFTP and the payload will be written to
41 * the flash starting at offset 0x00050000.
42 *
43 * JCG's U-Boot does check the content or size of the payload
44 * image. If it is too large, it wraps around and overwrites U-Boot,
45 * requiring JTAG to revive the board. To prevent such bricking from
46 * happening, this tool refuses to build such overlong images.
47 *
48 * Two more conditions have to be met for a JCG image to be accepted
49 * as a valid update by the web interface of the stock firware:
50 *
51 * - The bytes at offsets 109 and 111 in the header must be a binary
52 * representation of the first two components of the firmware
53 * version as displayed in the update web form, or it will be
54 * rejected as "incorrect product".
55 *
56 * - The payload must start with a valid uImage header whose data
57 * CRC checksum matches the whole rest of the update file rather
58 * than just the number of bytes specified in the size field of the
59 * header.
60 *
61 * This last condition is met by JCG's original firmware images,
62 * because they have both, kernel and rootfs inside the uImage and
63 * abuse the last four bytes of the name field to record the offset of
64 * the file system from the start of the uImage header. This tool
65 * produces such images when called with -k and -r, which are meant to
66 * repack the original firmware after modifying the file systen,
67 * e.g. to add debugging tools and enable shell access.
68 *
69 * In contrast, OpenWrt sysupgrade images consist of a uImage that
70 * only contains the kernel and has the rootfs appended to it. Hence,
71 * the CRC over kernel and file system does not match the one in the
72 * uImage header. Fixing this by adjusting the uImage header is not
73 * possible, because it makes the uImage unusable for booting. Instead
74 * we append four "patch" bytes to the end of the file system, that
75 * are calculated to force the checksum of kernel+fs to be the same as
76 * for the kernel alone.
77 *
78 */
79
80 #include <zlib.h>
81 #include <stdio.h>
82 #include <string.h>
83 #include <sys/types.h>
84 #include <sys/stat.h>
85 #include <fcntl.h>
86 #include <unistd.h>
87 #include <libgen.h>
88 #include <stdlib.h>
89 #include <errno.h>
90 #include <err.h>
91 #include <time.h>
92 #include <sys/mman.h>
93 #include <arpa/inet.h>
94 #include <assert.h>
95
96 /*
97 * JCG Firmware image header
98 */
99 #define JH_MAGIC 0x59535a4a /* "YSZJ" */
100 struct jcg_header {
101 uint32_t jh_magic;
102 uint8_t jh_version[32]; /* Firmware version string.
103 Fill with zeros to avoid encryption */
104 uint32_t jh_type; /* must be 1 */
105 uint8_t jh_info[64]; /* Firmware info string. Fill with
106 zeros to avoid encryption */
107 uint32_t jh_time; /* Image creation time in seconds since
108 * the Epoch. Does not seem to be used
109 * by the stock firmware. */
110 uint16_t jh_major; /* Major fimware version */
111 uint16_t jh_minor; /* Minor fimrmware version */
112 uint8_t jh_unknown[392]; /* Apparently unused and all zeros */
113 uint32_t jh_dcrc; /* CRC checksum of the payload */
114 uint32_t jh_hcrc; /* CRC checksum of the header */
115 };
116
117 /*
118 * JCG uses a modified uImage header that replaces the last four bytes
119 * of the image name with the length of the kernel in the image.
120 */
121 #define IH_MAGIC 0x27051956 /* Image Magic Number */
122 #define IH_NMLEN 28 /* Image Name Length */
123
124 struct uimage_header {
125 uint32_t ih_magic; /* Image Header Magic Number */
126 uint32_t ih_hcrc; /* Image Header CRC Checksum */
127 uint32_t ih_time; /* Image Creation Timestamp */
128 uint32_t ih_size; /* Image Data Size */
129 uint32_t ih_load; /* Data Load Address */
130 uint32_t ih_ep; /* Entry Point Address */
131 uint32_t ih_dcrc; /* Image Data CRC Checksum */
132 uint8_t ih_os; /* Operating System */
133 uint8_t ih_arch; /* CPU architecture */
134 uint8_t ih_type; /* Image Type */
135 uint8_t ih_comp; /* Compression Type */
136 uint8_t ih_name[IH_NMLEN];/* Image Name */
137 uint32_t ih_fsoff; /* Offset of the file system
138 partition from the start of
139 the header */
140 };
141
142 /*
143 * Open the named file and return its size and file descriptor.
144 * Exit in case of errors.
145 */
146 int
147 opensize(char *name, size_t *size)
148 {
149 struct stat s;
150 int fd = open(name, O_RDONLY);
151 if (fd < 0)
152 err(1, "cannot open \"%s\"", name);
153
154 if (fstat(fd, &s) == -1)
155 err(1, "cannot stat \"%s\"", name);
156
157 *size = s.st_size;
158 return fd;
159 }
160
161 static time_t source_date_epoch = -1;
162 static void set_source_date_epoch() {
163 char *env = getenv("SOURCE_DATE_EPOCH");
164 char *endptr = env;
165 errno = 0;
166 if (env && *env) {
167 source_date_epoch = strtoull(env, &endptr, 10);
168 if (errno || (endptr && *endptr != '\0')) {
169 fprintf(stderr, "Invalid SOURCE_DATE_EPOCH");
170 exit(1);
171 }
172 }
173 }
174
175 /*
176 * Write the JCG header
177 */
178 void
179 mkjcgheader(struct jcg_header *h, size_t psize, char *version)
180 {
181 uLong crc;
182 uint16_t major = 0, minor = 0;
183 void *payload = (void *)h + sizeof(*h);
184 time_t t;
185
186 if (source_date_epoch != -1)
187 t = source_date_epoch;
188 else if ((time(&t) == (time_t)(-1)))
189 err(1, "time call failed");
190
191
192 if (version != NULL)
193 if (sscanf(version, "%hu.%hu", &major, &minor) != 2)
194 err(1, "cannot parse version \"%s\"", version);
195
196 memset(h, 0, sizeof(*h));
197 h->jh_magic = htonl(JH_MAGIC);
198 h->jh_type = htonl(1);
199 h->jh_time = htonl(t);
200 h->jh_major = htons(major);
201 h->jh_minor = htons(minor);
202
203 /* CRC over JCG payload (uImage) */
204 crc = crc32(0L, Z_NULL, 0);
205 crc = crc32(crc, payload, psize);
206 h->jh_dcrc = htonl(crc);
207
208 /* CRC over JCG header */
209 crc = crc32(0L, Z_NULL, 0);
210 crc = crc32(crc, (void *)h, sizeof(*h));
211 h->jh_hcrc = htonl(crc);
212 }
213
214 /*
215 * Write the uImage header
216 */
217 void
218 mkuheader(struct uimage_header *h, size_t ksize, size_t fsize)
219 {
220 uLong crc;
221 void *payload = (void *)h + sizeof(*h);
222
223 // printf("mkuheader: %p, %zd, %zd\n", h, ksize, fsize);
224 memset(h, 0, sizeof(*h));
225 h->ih_magic = htonl(IH_MAGIC);
226 h->ih_time = htonl(time(NULL));
227 h->ih_size = htonl(ksize + fsize);
228 h->ih_load = htonl(0x80000000);
229 h->ih_ep = htonl(0x80292000);
230 h->ih_os = 0x05;
231 h->ih_arch = 0x05;
232 h->ih_type = 0x02;
233 h->ih_comp = 0x03;
234 h->ih_fsoff = htonl(sizeof(*h) + ksize);
235 strcpy((char *)h->ih_name, "Linux Kernel Image");
236
237 /* CRC over uImage payload (kernel and file system) */
238 crc = crc32(0L, Z_NULL, 0);
239 crc = crc32(crc, payload, ntohl(h->ih_size));
240 h->ih_dcrc = htonl(crc);
241 printf("CRC1: %08lx\n", crc);
242
243 /* CRC over uImage header */
244 crc = crc32(0L, Z_NULL, 0);
245 crc = crc32(crc, (void *)h, sizeof(*h));
246 h->ih_hcrc = htonl(crc);
247 printf("CRC2: %08lx\n", crc);
248 }
249
250 /*
251 * Calculate a "patch" value and write it into the last four bytes of
252 * buf, so that the CRC32 checksum of the whole buffer is dcrc.
253 *
254 * Based on: SAR-PR-2006-05: Reversing CRC – Theory and Practice.
255 * Martin Stigge, Henryk Plötz, Wolf Müller, Jens-Peter Redlich.
256 * http://sar.informatik.hu-berlin.de/research/publications/#SAR-PR-2006-05
257 */
258 void
259 craftcrc(uint32_t dcrc, uint8_t *buf, size_t len)
260 {
261 int i;
262 uint32_t a;
263 uint32_t patch = 0;
264 uint32_t crc = crc32(0L, Z_NULL, 0);
265
266 a = ~dcrc;
267 for (i = 0; i < 32; i++) {
268 if (patch & 1)
269 patch = (patch >> 1) ^ 0xedb88320L;
270 else
271 patch >>= 1;
272
273 if (a & 1)
274 patch ^= 0x5b358fd3L;
275
276 a >>= 1;
277 }
278 patch ^= ~crc32(crc, buf, len - 4);
279 for (i = 0; i < 4; i++) {
280 buf[len - 4 + i] = patch & 0xff;
281 patch >>= 8;
282 }
283 /* Verify that we actually get the desired result */
284 crc = crc32(0L, Z_NULL, 0);
285 crc = crc32(crc, buf, len);
286 if (crc != dcrc)
287 errx(1, "CRC patching is broken: wanted %08x, but got %08x.",
288 dcrc, crc);
289
290 }
291
292 void
293 usage() {
294 fprintf(stderr, "Usage:\n"
295 "jcgimage -o outfile -u uImage [-v version]\n"
296 "jcgimage -o outfile -k kernel -f rootfs [-v version]\n");
297 exit(1);
298 }
299
300 #define MODE_UNKNOWN 0
301 #define MODE_UIMAGE 1
302 #define MODE_KR 2
303
304 /* The output image must not be larger than 4MiB - 5*64kiB */
305 #define MAXSIZE (size_t)(4 * 1024 * 1024 - 5 * 64 * 1024)
306
307 int
308 main(int argc, char **argv)
309 {
310 struct jcg_header *jh;
311 struct uimage_header *uh;
312 int c;
313 char *imagefile = NULL;
314 char *file1 = NULL;
315 char *file2 = NULL;
316 char *version = NULL;
317 int mode = MODE_UNKNOWN;
318 int fdo, fd1, fd2;
319 size_t size1, size2, sizeu, sizeo, off1, off2;
320 void *map;
321
322 /* Make sure the headers have the right size */
323 assert(sizeof(struct jcg_header) == 512);
324 assert(sizeof(struct uimage_header) == 64);
325 set_source_date_epoch();
326
327 while ((c = getopt(argc, argv, "o:k:f:u:v:h")) != -1) {
328 switch (c) {
329 case 'o':
330 imagefile = optarg;
331 break;
332 case 'k':
333 if (mode == MODE_UIMAGE)
334 errx(1,"-k cannot be combined with -u");
335
336 mode = MODE_KR;
337 file1 = optarg;
338 break;
339 case 'f':
340 if (mode == MODE_UIMAGE)
341 errx(1,"-f cannot be combined with -u");
342
343 mode = MODE_KR;
344 file2 = optarg;
345 break;
346 case 'u':
347 if (mode == MODE_KR)
348 errx(1,"-u cannot be combined with -k and -r");
349
350 mode = MODE_UIMAGE;
351 file1 = optarg;
352 break;
353 case 'v':
354 version = optarg;
355 break;
356 case 'h':
357 default:
358 usage();
359 }
360 }
361 if (optind != argc)
362 errx(1, "illegal arg \"%s\"", argv[optind]);
363
364 if (imagefile == NULL)
365 errx(1, "no output file specified");
366
367 if (mode == MODE_UNKNOWN)
368 errx(1, "specify either -u or -k and -r");
369
370 if (mode == MODE_KR) {
371 if (file1 == NULL || file2 == NULL)
372 errx(1, "need -k and -r");
373
374 fd2 = opensize(file2, &size2);
375 }
376 fd1 = opensize(file1, &size1);
377 if (mode == MODE_UIMAGE) {
378 off1 = sizeof(*jh);
379 sizeu = size1 + 4;
380 sizeo = sizeof(*jh) + sizeu;
381 } else {
382 off1 = sizeof(*jh) + sizeof(*uh);
383 off2 = sizeof(*jh) + sizeof(*uh) + size1;
384 sizeu = sizeof(*uh) + size1 + size2;
385 sizeo = sizeof(*jh) + sizeu;
386 }
387
388 if (sizeo > MAXSIZE)
389 errx(1, "payload too large: %zd > %zd\n", sizeo, MAXSIZE);
390
391
392 fdo = open(imagefile, O_RDWR | O_CREAT | O_TRUNC, 00644);
393 if (fdo < 0)
394 err(1, "cannot open \"%s\"", imagefile);
395
396
397 if (ftruncate(fdo, sizeo) == -1)
398 err(1, "cannot grow \"%s\" to %zd bytes", imagefile, sizeo);
399
400 map = mmap(NULL, sizeo, PROT_READ|PROT_WRITE, MAP_SHARED, fdo, 0);
401 uh = map + sizeof(*jh);
402 if (map == MAP_FAILED)
403 err(1, "cannot mmap \"%s\"", imagefile);
404
405
406 if (read(fd1, map + off1, size1) != size1)
407 err(1, "cannot copy %s", file1);
408
409
410 if (mode == MODE_KR) {
411 if (read(fd2, map+off2, size2) != size2)
412 err(1, "cannot copy %s", file2);
413
414 mkuheader(uh, size1, size2);
415 } else if (mode == MODE_UIMAGE)
416 craftcrc(ntohl(uh->ih_dcrc), (void*)uh + sizeof(*uh),
417 sizeu - sizeof(*uh));
418
419 mkjcgheader(map, sizeu, version);
420 munmap(map, sizeo);
421 close(fdo);
422 return 0;
423 }