fiptool.c 31.8 KB
Newer Older
dp-arm's avatar
dp-arm committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of ARM nor the names of its contributors may be used
 * to endorse or promote products derived from this software without specific
 * prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <sys/types.h>
#include <sys/stat.h>

#include <assert.h>
#include <errno.h>
#include <getopt.h>
#include <limits.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

45
46
#include <openssl/sha.h>

dp-arm's avatar
dp-arm committed
47
48
49
50
51
52
53
#include "fiptool.h"
#include "firmware_image_package.h"
#include "tbbr_config.h"

#define OPT_TOC_ENTRY 0
#define OPT_PLAT_TOC_FLAGS 1

54
55
static image_desc_t *lookup_image_desc_from_uuid(const uuid_t *uuid);
static image_t *lookup_image_from_uuid(const uuid_t *uuid);
dp-arm's avatar
dp-arm committed
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
static int info_cmd(int argc, char *argv[]);
static void info_usage(void);
static int create_cmd(int argc, char *argv[]);
static void create_usage(void);
static int update_cmd(int argc, char *argv[]);
static void update_usage(void);
static int unpack_cmd(int argc, char *argv[]);
static void unpack_usage(void);
static int remove_cmd(int argc, char *argv[]);
static void remove_usage(void);
static int version_cmd(int argc, char *argv[]);
static void version_usage(void);
static int help_cmd(int argc, char *argv[]);
static void usage(void);

/* Available subcommands. */
static cmd_t cmds[] = {
	{ .name = "info",    .handler = info_cmd,    .usage = info_usage    },
	{ .name = "create",  .handler = create_cmd,  .usage = create_usage  },
	{ .name = "update",  .handler = update_cmd,  .usage = update_usage  },
	{ .name = "unpack",  .handler = unpack_cmd,  .usage = unpack_usage  },
	{ .name = "remove",  .handler = remove_cmd,  .usage = remove_usage  },
	{ .name = "version", .handler = version_cmd, .usage = version_usage },
	{ .name = "help",    .handler = help_cmd,    .usage = NULL          },
};

82
83
84
static image_desc_t *image_desc_head;
static size_t nr_image_descs;
static image_t *image_head;
dp-arm's avatar
dp-arm committed
85
86
87
88
static size_t nr_images;
static uuid_t uuid_null = { 0 };
static int verbose;

89
static void vlog(int prio, const char *msg, va_list ap)
dp-arm's avatar
dp-arm committed
90
91
92
93
94
95
96
97
{
	char *prefix[] = { "DEBUG", "WARN", "ERROR" };

	fprintf(stderr, "%s: ", prefix[prio]);
	vfprintf(stderr, msg, ap);
	fputc('\n', stderr);
}

98
static void log_dbgx(const char *msg, ...)
dp-arm's avatar
dp-arm committed
99
100
101
102
103
104
105
106
{
	va_list ap;

	va_start(ap, msg);
	vlog(LOG_DBG, msg, ap);
	va_end(ap);
}

107
static void log_warnx(const char *msg, ...)
dp-arm's avatar
dp-arm committed
108
109
110
111
112
113
114
115
{
	va_list ap;

	va_start(ap, msg);
	vlog(LOG_WARN, msg, ap);
	va_end(ap);
}

116
static void log_err(const char *msg, ...)
dp-arm's avatar
dp-arm committed
117
118
119
120
121
122
123
124
125
126
127
{
	char buf[512];
	va_list ap;

	va_start(ap, msg);
	snprintf(buf, sizeof(buf), "%s: %s", msg, strerror(errno));
	vlog(LOG_ERR, buf, ap);
	va_end(ap);
	exit(1);
}

128
static void log_errx(const char *msg, ...)
dp-arm's avatar
dp-arm committed
129
130
131
132
133
134
135
136
137
{
	va_list ap;

	va_start(ap, msg);
	vlog(LOG_ERR, msg, ap);
	va_end(ap);
	exit(1);
}

138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
static char *xstrdup(const char *s, const char *msg)
{
	char *d;

	d = strdup(s);
	if (d == NULL)
		log_errx("strdup: ", msg);
	return d;
}

static void *xmalloc(size_t size, const char *msg)
{
	void *d;

	d = malloc(size);
	if (d == NULL)
		log_errx("malloc: ", msg);
	return d;
}

158
159
static image_desc_t *new_image_desc(const uuid_t *uuid,
    const char *name, const char *cmdline_name)
dp-arm's avatar
dp-arm committed
160
{
161
162
163
164
165
166
167
168
169
170
171
172
	image_desc_t *desc;

	desc = xmalloc(sizeof(*desc),
	    "failed to allocate memory for image descriptor");
	memcpy(&desc->uuid, uuid, sizeof(uuid_t));
	desc->name = xstrdup(name,
	    "failed to allocate memory for image name");
	desc->cmdline_name = xstrdup(cmdline_name,
	    "failed to allocate memory for image command line name");
	desc->action = DO_UNSPEC;
	desc->action_arg = NULL;
	return desc;
dp-arm's avatar
dp-arm committed
173
174
}

175
static void free_image_desc(image_desc_t *desc)
dp-arm's avatar
dp-arm committed
176
{
177
178
179
180
	free(desc->name);
	free(desc->cmdline_name);
	free(desc->action_arg);
	free(desc);
dp-arm's avatar
dp-arm committed
181
182
}

183
static void add_image_desc(image_desc_t *desc)
dp-arm's avatar
dp-arm committed
184
{
185
186
187
188
189
	assert(lookup_image_desc_from_uuid(&desc->uuid) == NULL);
	desc->next = image_desc_head;
	image_desc_head = desc;
	nr_image_descs++;
}
dp-arm's avatar
dp-arm committed
190

191
192
193
194
195
196
197
198
199
static void free_image_descs(void)
{
	image_desc_t *desc = image_desc_head, *tmp;

	while (desc != NULL) {
		tmp = desc->next;
		free_image_desc(desc);
		desc = tmp;
		nr_image_descs--;
dp-arm's avatar
dp-arm committed
200
	}
201
	assert(nr_image_descs == 0);
dp-arm's avatar
dp-arm committed
202
203
}

204
static void fill_image_descs(void)
dp-arm's avatar
dp-arm committed
205
{
206
	toc_entry_t *toc_entry;
dp-arm's avatar
dp-arm committed
207

208
209
210
211
212
213
214
215
216
	for (toc_entry = toc_entries;
	     toc_entry->cmdline_name != NULL;
	     toc_entry++) {
		image_desc_t *desc;

		desc = new_image_desc(&toc_entry->uuid,
		    toc_entry->name,
		    toc_entry->cmdline_name);
		add_image_desc(desc);
dp-arm's avatar
dp-arm committed
217
	}
218
}
dp-arm's avatar
dp-arm committed
219

220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
static void add_image(image_t *image)
{
	assert(lookup_image_from_uuid(&image->uuid) == NULL);
	image->next = image_head;
	image_head = image;
	nr_images++;
}

static void free_image(image_t *image)
{
	free(image->buffer);
	free(image);
}

static void remove_image(image_t *image)
{
	image_t *tmp = image_head, *prev;

	if (tmp == image) {
		image_head = tmp->next;
		free_image(tmp);
	} else {
		while (tmp != NULL && tmp != image) {
			prev = tmp;
			tmp = tmp->next;
		}
		assert(tmp != NULL);
		prev->next = tmp->next;
		free_image(tmp);
	}
dp-arm's avatar
dp-arm committed
250
251
252
253
254
	nr_images--;
}

static void free_images(void)
{
255
	image_t *image = image_head, *tmp;
dp-arm's avatar
dp-arm committed
256

257
258
259
260
261
	while (image != NULL) {
		tmp = image->next;
		free_image(image);
		image = tmp;
		nr_images--;
dp-arm's avatar
dp-arm committed
262
	}
263
	assert(nr_images == 0);
dp-arm's avatar
dp-arm committed
264
265
}

266
static image_desc_t *lookup_image_desc_from_uuid(const uuid_t *uuid)
dp-arm's avatar
dp-arm committed
267
{
268
	image_desc_t *desc;
dp-arm's avatar
dp-arm committed
269

270
271
272
273
274
275
276
277
278
279
280
281
282
	for (desc = image_desc_head; desc != NULL; desc = desc->next)
		if (memcmp(&desc->uuid, uuid, sizeof(uuid_t)) == 0)
			return desc;
	return NULL;
}

static image_desc_t *lookup_image_desc_from_opt(const char *opt)
{
	image_desc_t *desc;

	for (desc = image_desc_head; desc != NULL; desc = desc->next)
		if (strcmp(desc->cmdline_name, opt) == 0)
			return desc;
dp-arm's avatar
dp-arm committed
283
284
285
	return NULL;
}

286
static image_t *lookup_image_from_uuid(const uuid_t *uuid)
287
288
289
{
	image_t *image;

290
	for (image = image_head; image != NULL; image = image->next)
291
292
293
294
295
		if (memcmp(&image->uuid, uuid, sizeof(uuid_t)) == 0)
			return image;
	return NULL;
}

296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
static void uuid_to_str(char *s, size_t len, const uuid_t *u)
{
	assert(len >= (_UUID_STR_LEN + 1));

	snprintf(s, len, "%08X-%04X-%04X-%04X-%04X%04X%04X",
	    u->time_low,
	    u->time_mid,
	    u->time_hi_and_version,
	    ((uint16_t)u->clock_seq_hi_and_reserved << 8) | u->clock_seq_low,
	    ((uint16_t)u->node[0] << 8) | u->node[1],
	    ((uint16_t)u->node[2] << 8) | u->node[3],
	    ((uint16_t)u->node[4] << 8) | u->node[5]);
}

static void uuid_from_str(uuid_t *u, const char *s)
{
	int n;

	if (s == NULL)
		log_errx("UUID cannot be NULL");
	if (strlen(s) != _UUID_STR_LEN)
		log_errx("Invalid UUID: %s", s);

	n = sscanf(s,
	    "%8x-%4hx-%4hx-%2hhx%2hhx-%2hhx%2hhx%2hhx%2hhx%2hhx%2hhx",
	    &u->time_low, &u->time_mid, &u->time_hi_and_version,
	    &u->clock_seq_hi_and_reserved, &u->clock_seq_low, &u->node[0],
	    &u->node[1], &u->node[2], &u->node[3], &u->node[4], &u->node[5]);
	/*
	 * Given the format specifier above, we expect 11 items to be scanned
	 * for a properly formatted UUID.
	 */
	if (n != 11)
		log_errx("Invalid UUID: %s", s);
}

332
static int parse_fip(const char *filename, fip_toc_header_t *toc_header_out)
dp-arm's avatar
dp-arm committed
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
{
	struct stat st;
	FILE *fp;
	char *buf, *bufend;
	fip_toc_header_t *toc_header;
	fip_toc_entry_t *toc_entry;
	int terminated = 0;

	fp = fopen(filename, "r");
	if (fp == NULL)
		log_err("fopen %s", filename);

	if (fstat(fileno(fp), &st) == -1)
		log_err("fstat %s", filename);

348
	buf = xmalloc(st.st_size, "failed to load file into memory");
dp-arm's avatar
dp-arm committed
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
	if (fread(buf, 1, st.st_size, fp) != st.st_size)
		log_errx("Failed to read %s", filename);
	bufend = buf + st.st_size;
	fclose(fp);

	if (st.st_size < sizeof(fip_toc_header_t))
		log_errx("FIP %s is truncated", filename);

	toc_header = (fip_toc_header_t *)buf;
	toc_entry = (fip_toc_entry_t *)(toc_header + 1);

	if (toc_header->name != TOC_HEADER_NAME)
		log_errx("%s is not a FIP file", filename);

	/* Return the ToC header if the caller wants it. */
	if (toc_header_out != NULL)
		*toc_header_out = *toc_header;

	/* Walk through each ToC entry in the file. */
	while ((char *)toc_entry + sizeof(*toc_entry) - 1 < bufend) {
369
370
371
		image_t *image;
		image_desc_t *desc;

dp-arm's avatar
dp-arm committed
372
373
374
375
376
377
378
379
380
381
		/* Found the ToC terminator, we are done. */
		if (memcmp(&toc_entry->uuid, &uuid_null, sizeof(uuid_t)) == 0) {
			terminated = 1;
			break;
		}

		/*
		 * Build a new image out of the ToC entry and add it to the
		 * table of images.
		 */
382
383
		image = xmalloc(sizeof(*image),
		    "failed to allocate memory for image");
dp-arm's avatar
dp-arm committed
384
		memcpy(&image->uuid, &toc_entry->uuid, sizeof(uuid_t));
385
386
		image->buffer = xmalloc(toc_entry->size,
		    "failed to allocate image buffer, is FIP file corrupted?");
dp-arm's avatar
dp-arm committed
387
388
389
390
391
392
393
394
395
396
		/* Overflow checks before memory copy. */
		if (toc_entry->size > (uint64_t)-1 - toc_entry->offset_address)
			log_errx("FIP %s is corrupted", filename);
		if (toc_entry->size + toc_entry->offset_address > st.st_size)
			log_errx("FIP %s is corrupted", filename);

		memcpy(image->buffer, buf + toc_entry->offset_address,
		    toc_entry->size);
		image->size = toc_entry->size;

397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
		/* If this is an unknown image, create a descriptor for it. */
		desc = lookup_image_desc_from_uuid(&image->uuid);
		if (desc == NULL) {
			char name[_UUID_STR_LEN + 1], filename[PATH_MAX];

			uuid_to_str(name, sizeof(name), &image->uuid);
			snprintf(filename, sizeof(filename), "%s%s",
			    name, ".bin");
			desc = new_image_desc(&image->uuid, name, "blob");
			desc->action = DO_UNPACK;
			desc->action_arg = xstrdup(filename,
			    "failed to allocate memory for blob filename");
			add_image_desc(desc);
		}

dp-arm's avatar
dp-arm committed
412
413
414
415
416
417
418
419
420
421
422
423
		add_image(image);

		toc_entry++;
	}

	if (terminated == 0)
		log_errx("FIP %s does not have a ToC terminator entry",
		    filename);
	free(buf);
	return 0;
}

424
static image_t *read_image_from_file(const uuid_t *uuid, const char *filename)
dp-arm's avatar
dp-arm committed
425
426
427
428
429
{
	struct stat st;
	image_t *image;
	FILE *fp;

430
431
	assert(uuid != NULL);

dp-arm's avatar
dp-arm committed
432
433
434
435
436
437
438
	fp = fopen(filename, "r");
	if (fp == NULL)
		log_err("fopen %s", filename);

	if (fstat(fileno(fp), &st) == -1)
		log_errx("fstat %s", filename);

439
	image = xmalloc(sizeof(*image), "failed to allocate memory for image");
440
	memcpy(&image->uuid, uuid, sizeof(uuid_t));
441
	image->buffer = xmalloc(st.st_size, "failed to allocate image buffer");
dp-arm's avatar
dp-arm committed
442
443
444
445
446
447
448
449
	if (fread(image->buffer, 1, st.st_size, fp) != st.st_size)
		log_errx("Failed to read %s", filename);
	image->size = st.st_size;

	fclose(fp);
	return image;
}

450
static int write_image_to_file(const image_t *image, const char *filename)
dp-arm's avatar
dp-arm committed
451
452
453
454
455
456
457
458
459
460
461
462
{
	FILE *fp;

	fp = fopen(filename, "w");
	if (fp == NULL)
		log_err("fopen");
	if (fwrite(image->buffer, 1, image->size, fp) != image->size)
		log_errx("Failed to write %s", filename);
	fclose(fp);
	return 0;
}

463
464
static struct option *add_opt(struct option *opts, size_t *nr_opts,
    const char *name, int has_arg, int val)
dp-arm's avatar
dp-arm committed
465
{
466
467
468
469
470
471
472
473
474
	opts = realloc(opts, (*nr_opts + 1) * sizeof(*opts));
	if (opts == NULL)
		log_err("realloc");
	opts[*nr_opts].name = name;
	opts[*nr_opts].has_arg = has_arg;
	opts[*nr_opts].flag = NULL;
	opts[*nr_opts].val = val;
	++*nr_opts;
	return opts;
dp-arm's avatar
dp-arm committed
475
476
}

477
478
static struct option *fill_common_opts(struct option *opts, size_t *nr_opts,
    int has_arg)
dp-arm's avatar
dp-arm committed
479
{
480
481
482
483
484
485
	image_desc_t *desc;

	for (desc = image_desc_head; desc != NULL; desc = desc->next)
		opts = add_opt(opts, nr_opts, desc->cmdline_name, has_arg,
		    OPT_TOC_ENTRY);
	return opts;
dp-arm's avatar
dp-arm committed
486
487
}

488
static void md_print(const unsigned char *md, size_t len)
489
490
491
492
493
494
495
{
	size_t i;

	for (i = 0; i < len; i++)
		printf("%02x", md[i]);
}

dp-arm's avatar
dp-arm committed
496
497
498
499
static int info_cmd(int argc, char *argv[])
{
	image_t *image;
	uint64_t image_offset;
500
	uint64_t image_size;
dp-arm's avatar
dp-arm committed
501
502
503
	fip_toc_header_t toc_header;

	if (argc != 2)
504
		info_usage();
dp-arm's avatar
dp-arm committed
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
	argc--, argv++;

	parse_fip(argv[0], &toc_header);

	if (verbose) {
		log_dbgx("toc_header[name]: 0x%llX",
		    (unsigned long long)toc_header.name);
		log_dbgx("toc_header[serial_number]: 0x%llX",
		    (unsigned long long)toc_header.serial_number);
		log_dbgx("toc_header[flags]: 0x%llX",
		    (unsigned long long)toc_header.flags);
	}

	image_offset = sizeof(fip_toc_header_t) +
	    (sizeof(fip_toc_entry_t) * (nr_images + 1));

521
522
	for (image = image_head; image != NULL; image = image->next) {
		image_desc_t *desc;
523

524
		desc = lookup_image_desc_from_uuid(&image->uuid);
525
526
		assert(desc != NULL);
		printf("%s: ", desc->name);
dp-arm's avatar
dp-arm committed
527
528
529
530
		image_size = image->size;
		printf("offset=0x%llX, size=0x%llX",
		    (unsigned long long)image_offset,
		    (unsigned long long)image_size);
531
		if (desc != NULL)
532
			printf(", cmdline=\"--%s\"",
533
			    desc->cmdline_name);
534
535
536
537
538
539
540
541
		if (verbose) {
			unsigned char md[SHA256_DIGEST_LENGTH];

			SHA256(image->buffer, image_size, md);
			printf(", sha256=");
			md_print(md, sizeof(md));
		}
		putchar('\n');
dp-arm's avatar
dp-arm committed
542
543
544
545
546
547
548
549
550
551
		image_offset += image_size;
	}

	free_images();
	return 0;
}

static void info_usage(void)
{
	printf("fiptool info FIP_FILENAME\n");
552
	exit(1);
dp-arm's avatar
dp-arm committed
553
554
}

555
static int pack_images(const char *filename, uint64_t toc_flags)
dp-arm's avatar
dp-arm committed
556
557
558
559
560
561
562
563
564
565
{
	FILE *fp;
	image_t *image;
	fip_toc_header_t *toc_header;
	fip_toc_entry_t *toc_entry;
	char *buf;
	uint64_t entry_offset, buf_size, payload_size;

	/* Calculate total payload size and allocate scratch buffer. */
	payload_size = 0;
566
567
	for (image = image_head; image != NULL; image = image->next)
		payload_size += image->size;
dp-arm's avatar
dp-arm committed
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583

	buf_size = sizeof(fip_toc_header_t) +
	    sizeof(fip_toc_entry_t) * (nr_images + 1);
	buf = calloc(1, buf_size);
	if (buf == NULL)
		log_err("calloc");

	/* Build up header and ToC entries from the image table. */
	toc_header = (fip_toc_header_t *)buf;
	toc_header->name = TOC_HEADER_NAME;
	toc_header->serial_number = TOC_HEADER_SERIAL_NUMBER;
	toc_header->flags = toc_flags;

	toc_entry = (fip_toc_entry_t *)(toc_header + 1);

	entry_offset = buf_size;
584
	for (image = image_head; image != NULL; image = image->next) {
dp-arm's avatar
dp-arm committed
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
		memcpy(&toc_entry->uuid, &image->uuid, sizeof(uuid_t));
		toc_entry->offset_address = entry_offset;
		toc_entry->size = image->size;
		toc_entry->flags = 0;
		entry_offset += toc_entry->size;
		toc_entry++;
	}

	/* Append a null uuid entry to mark the end of ToC entries. */
	memcpy(&toc_entry->uuid, &uuid_null, sizeof(uuid_t));
	toc_entry->offset_address = entry_offset;
	toc_entry->size = 0;
	toc_entry->flags = 0;

	/* Generate the FIP file. */
	fp = fopen(filename, "w");
	if (fp == NULL)
		log_err("fopen %s", filename);

	if (verbose)
		log_dbgx("Metadata size: %zu bytes", buf_size);

	if (fwrite(buf, 1, buf_size, fp) != buf_size)
		log_errx("Failed to write image to %s", filename);
	free(buf);

	if (verbose)
		log_dbgx("Payload size: %zu bytes", payload_size);

614
	for (image = image_head; image != NULL; image = image->next)
dp-arm's avatar
dp-arm committed
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
		if (fwrite(image->buffer, 1, image->size, fp) != image->size)
			log_errx("Failed to write image to %s", filename);

	fclose(fp);
	return 0;
}

/*
 * This function is shared between the create and update subcommands.
 * The difference between the two subcommands is that when the FIP file
 * is created, the parsing of an existing FIP is skipped.  This results
 * in update_fip() creating the new FIP file from scratch because the
 * internal image table is not populated.
 */
static void update_fip(void)
{
631
	image_desc_t *desc;
dp-arm's avatar
dp-arm committed
632
633

	/* Add or replace images in the FIP file. */
634
	for (desc = image_desc_head; desc != NULL; desc = desc->next) {
635
636
		image_t *new_image, *old_image;

637
		if (desc->action != DO_PACK)
dp-arm's avatar
dp-arm committed
638
639
			continue;

640
641
642
		new_image = read_image_from_file(&desc->uuid,
		    desc->action_arg);
		old_image = lookup_image_from_uuid(&desc->uuid);
643
		if (old_image != NULL) {
644
			if (verbose) {
645
				log_dbgx("Replacing %s with %s",
646
647
648
649
650
				    desc->cmdline_name,
				    desc->action_arg);
			}
			remove_image(old_image);
			add_image(new_image);
dp-arm's avatar
dp-arm committed
651
652
653
		} else {
			if (verbose)
				log_dbgx("Adding image %s",
654
				    desc->action_arg);
655
			add_image(new_image);
dp-arm's avatar
dp-arm committed
656
657
658
659
		}
	}
}

660
static void parse_plat_toc_flags(const char *arg, unsigned long long *toc_flags)
dp-arm's avatar
dp-arm committed
661
662
663
664
665
666
667
668
669
670
671
672
{
	unsigned long long flags;
	char *endptr;

	errno = 0;
	flags = strtoull(arg, &endptr, 16);
	if (*endptr != '\0' || flags > UINT16_MAX || errno != 0)
		log_errx("Invalid platform ToC flags: %s", arg);
	/* Platform ToC flags is a 16-bit field occupying bits [32-47]. */
	*toc_flags |= flags << 32;
}

673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
static void parse_blob_opt(char *arg, uuid_t *uuid, char *filename, size_t len)
{
	char *p;

	for (p = strtok(arg, ","); p != NULL; p = strtok(NULL, ",")) {
		if (strncmp(p, "uuid=", strlen("uuid=")) == 0) {
			p += strlen("uuid=");
			uuid_from_str(uuid, p);
		} else if (strncmp(p, "file=", strlen("file=")) == 0) {
			p += strlen("file=");
			snprintf(filename, len, "%s", p);
		}
	}
}

dp-arm's avatar
dp-arm committed
688
689
static int create_cmd(int argc, char *argv[])
{
690
691
	struct option *opts = NULL;
	size_t nr_opts = 0;
dp-arm's avatar
dp-arm committed
692
693
694
	unsigned long long toc_flags = 0;

	if (argc < 2)
695
		create_usage();
dp-arm's avatar
dp-arm committed
696

697
698
	opts = fill_common_opts(opts, &nr_opts, required_argument);
	opts = add_opt(opts, &nr_opts, "plat-toc-flags", required_argument,
dp-arm's avatar
dp-arm committed
699
	    OPT_PLAT_TOC_FLAGS);
700
	opts = add_opt(opts, &nr_opts, "blob", required_argument, 'b');
701
	opts = add_opt(opts, &nr_opts, NULL, 0, 0);
dp-arm's avatar
dp-arm committed
702
703

	while (1) {
704
		int c, opt_index = 0;
dp-arm's avatar
dp-arm committed
705

706
		c = getopt_long(argc, argv, "b:", opts, &opt_index);
dp-arm's avatar
dp-arm committed
707
708
709
710
711
		if (c == -1)
			break;

		switch (c) {
		case OPT_TOC_ENTRY: {
712
713
714
715
716
717
718
719
			image_desc_t *desc;

			desc = lookup_image_desc_from_opt(opts[opt_index].name);
			assert(desc != NULL);
			if (desc->action != DO_UNSPEC)
				free(desc->action_arg);
			desc->action = DO_PACK;
			desc->action_arg = xstrdup(optarg,
720
			    "failed to allocate memory for argument");
dp-arm's avatar
dp-arm committed
721
722
723
724
725
			break;
		}
		case OPT_PLAT_TOC_FLAGS:
			parse_plat_toc_flags(optarg, &toc_flags);
			break;
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
		case 'b': {
			char name[_UUID_STR_LEN + 1];
			char filename[PATH_MAX] = { 0 };
			uuid_t uuid = { 0 };
			image_desc_t *desc;

			parse_blob_opt(optarg, &uuid,
			    filename, sizeof(filename));

			if (memcmp(&uuid, &uuid_null, sizeof(uuid_t)) == 0 ||
			    filename[0] == '\0')
				create_usage();

			desc = lookup_image_desc_from_uuid(&uuid);
			if (desc != NULL) {
				if (desc->action != DO_UNSPEC)
					free(desc->action_arg);
				desc->action = DO_PACK;
				desc->action_arg = xstrdup(filename,
				    "failed to allocate memory for argument");
			} else {
				uuid_to_str(name, sizeof(name), &uuid);
				desc = new_image_desc(&uuid, name, "blob");
				desc->action = DO_PACK;
				desc->action_arg = xstrdup(filename,
				    "failed to allocate memory for argument");
				add_image_desc(desc);
			}
			break;
		}
dp-arm's avatar
dp-arm committed
756
		default:
757
			create_usage();
dp-arm's avatar
dp-arm committed
758
759
760
761
		}
	}
	argc -= optind;
	argv += optind;
762
	free(opts);
dp-arm's avatar
dp-arm committed
763
764

	if (argc == 0)
765
		create_usage();
dp-arm's avatar
dp-arm committed
766
767
768
769
770
771
772
773
774
775
776
777

	update_fip();

	pack_images(argv[0], toc_flags);
	free_images();
	return 0;
}

static void create_usage(void)
{
	toc_entry_t *toc_entry = toc_entries;

778
779
780
781
	printf("fiptool create [--blob uuid=...,file=...] "
	    "[--plat-toc-flags <value>] [opts] FIP_FILENAME\n");
	printf("  --blob uuid=...,file=...\tAdd an image with the given UUID "
	    "pointed to by file.\n");
dp-arm's avatar
dp-arm committed
782
783
784
785
786
787
788
	printf("  --plat-toc-flags <value>\t16-bit platform specific flag field "
	    "occupying bits 32-47 in 64-bit ToC header.\n");
	fputc('\n', stderr);
	printf("Specific images are packed with the following options:\n");
	for (; toc_entry->cmdline_name != NULL; toc_entry++)
		printf("  --%-16s FILENAME\t%s\n", toc_entry->cmdline_name,
		    toc_entry->name);
789
	exit(1);
dp-arm's avatar
dp-arm committed
790
791
792
793
}

static int update_cmd(int argc, char *argv[])
{
794
795
	struct option *opts = NULL;
	size_t nr_opts = 0;
796
	char outfile[PATH_MAX] = { 0 };
dp-arm's avatar
dp-arm committed
797
798
799
800
801
	fip_toc_header_t toc_header = { 0 };
	unsigned long long toc_flags = 0;
	int pflag = 0;

	if (argc < 2)
802
		update_usage();
dp-arm's avatar
dp-arm committed
803

804
	opts = fill_common_opts(opts, &nr_opts, required_argument);
805
	opts = add_opt(opts, &nr_opts, "blob", required_argument, 'b');
806
807
	opts = add_opt(opts, &nr_opts, "out", required_argument, 'o');
	opts = add_opt(opts, &nr_opts, "plat-toc-flags", required_argument,
dp-arm's avatar
dp-arm committed
808
	    OPT_PLAT_TOC_FLAGS);
809
	opts = add_opt(opts, &nr_opts, NULL, 0, 0);
dp-arm's avatar
dp-arm committed
810
811

	while (1) {
812
		int c, opt_index = 0;
dp-arm's avatar
dp-arm committed
813

814
		c = getopt_long(argc, argv, "b:o:", opts, &opt_index);
dp-arm's avatar
dp-arm committed
815
816
817
818
819
		if (c == -1)
			break;

		switch (c) {
		case OPT_TOC_ENTRY: {
820
821
822
823
824
825
826
827
			image_desc_t *desc;

			desc = lookup_image_desc_from_opt(opts[opt_index].name);
			assert(desc != NULL);
			if (desc->action != DO_UNSPEC)
				free(desc->action_arg);
			desc->action = DO_PACK;
			desc->action_arg = xstrdup(optarg,
828
			    "failed to allocate memory for argument");
dp-arm's avatar
dp-arm committed
829
830
			break;
		}
831
		case OPT_PLAT_TOC_FLAGS:
dp-arm's avatar
dp-arm committed
832
833
834
			parse_plat_toc_flags(optarg, &toc_flags);
			pflag = 1;
			break;
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
		case 'b': {
			char name[_UUID_STR_LEN + 1];
			char filename[PATH_MAX] = { 0 };
			uuid_t uuid = { 0 };
			image_desc_t *desc;

			parse_blob_opt(optarg, &uuid,
			    filename, sizeof(filename));

			if (memcmp(&uuid, &uuid_null, sizeof(uuid_t)) == 0 ||
			    filename[0] == '\0')
				update_usage();

			desc = lookup_image_desc_from_uuid(&uuid);
			if (desc != NULL) {
				if (desc->action != DO_UNSPEC)
					free(desc->action_arg);
				desc->action = DO_PACK;
				desc->action_arg = xstrdup(filename,
				    "failed to allocate memory for argument");
			} else {
				uuid_to_str(name, sizeof(name), &uuid);
				desc = new_image_desc(&uuid, name, "blob");
				desc->action = DO_PACK;
				desc->action_arg = xstrdup(filename,
				    "failed to allocate memory for argument");
				add_image_desc(desc);
			}
			break;
		}
dp-arm's avatar
dp-arm committed
865
866
867
868
		case 'o':
			snprintf(outfile, sizeof(outfile), "%s", optarg);
			break;
		default:
869
			update_usage();
dp-arm's avatar
dp-arm committed
870
871
872
873
		}
	}
	argc -= optind;
	argv += optind;
874
	free(opts);
dp-arm's avatar
dp-arm committed
875
876

	if (argc == 0)
877
		update_usage();
dp-arm's avatar
dp-arm committed
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899

	if (outfile[0] == '\0')
		snprintf(outfile, sizeof(outfile), "%s", argv[0]);

	if (access(outfile, F_OK) == 0)
		parse_fip(argv[0], &toc_header);

	if (pflag)
		toc_header.flags &= ~(0xffffULL << 32);
	toc_flags = (toc_header.flags |= toc_flags);

	update_fip();

	pack_images(outfile, toc_flags);
	free_images();
	return 0;
}

static void update_usage(void)
{
	toc_entry_t *toc_entry = toc_entries;

900
	printf("fiptool update [--blob uuid=...,file=...] [--out FIP_FILENAME] "
dp-arm's avatar
dp-arm committed
901
	    "[--plat-toc-flags <value>] [opts] FIP_FILENAME\n");
902
903
	printf("  --blob uuid=...,file=...\tAdd or update an image "
	    "with the given UUID pointed to by file.\n");
dp-arm's avatar
dp-arm committed
904
905
906
907
908
909
910
911
	printf("  --out FIP_FILENAME\t\tSet an alternative output FIP file.\n");
	printf("  --plat-toc-flags <value>\t16-bit platform specific flag field "
	    "occupying bits 32-47 in 64-bit ToC header.\n");
	fputc('\n', stderr);
	printf("Specific images are packed with the following options:\n");
	for (; toc_entry->cmdline_name != NULL; toc_entry++)
		printf("  --%-16s FILENAME\t%s\n", toc_entry->cmdline_name,
		    toc_entry->name);
912
	exit(1);
dp-arm's avatar
dp-arm committed
913
914
915
916
}

static int unpack_cmd(int argc, char *argv[])
{
917
918
	struct option *opts = NULL;
	size_t nr_opts = 0;
919
	char outdir[PATH_MAX] = { 0 };
920
	image_desc_t *desc;
dp-arm's avatar
dp-arm committed
921
922
923
924
	int fflag = 0;
	int unpack_all = 1;

	if (argc < 2)
925
		unpack_usage();
dp-arm's avatar
dp-arm committed
926

927
	opts = fill_common_opts(opts, &nr_opts, required_argument);
928
	opts = add_opt(opts, &nr_opts, "blob", required_argument, 'b');
929
930
931
	opts = add_opt(opts, &nr_opts, "force", no_argument, 'f');
	opts = add_opt(opts, &nr_opts, "out", required_argument, 'o');
	opts = add_opt(opts, &nr_opts, NULL, 0, 0);
dp-arm's avatar
dp-arm committed
932
933

	while (1) {
934
		int c, opt_index = 0;
dp-arm's avatar
dp-arm committed
935

936
		c = getopt_long(argc, argv, "b:fo:", opts, &opt_index);
dp-arm's avatar
dp-arm committed
937
938
939
940
		if (c == -1)
			break;

		switch (c) {
941
942
943
944
945
946
947
948
949
		case OPT_TOC_ENTRY: {
			image_desc_t *desc;

			desc = lookup_image_desc_from_opt(opts[opt_index].name);
			assert(desc != NULL);
			if (desc->action != DO_UNSPEC)
				free(desc->action_arg);
			desc->action = DO_UNPACK;
			desc->action_arg = xstrdup(optarg,
950
			    "failed to allocate memory for argument");
951
			unpack_all = 0;
dp-arm's avatar
dp-arm committed
952
			break;
953
		}
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
		case 'b': {
			char name[_UUID_STR_LEN + 1];
			char filename[PATH_MAX] = { 0 };
			uuid_t uuid = { 0 };
			image_desc_t *desc;

			parse_blob_opt(optarg, &uuid,
			    filename, sizeof(filename));

			if (memcmp(&uuid, &uuid_null, sizeof(uuid_t)) == 0 ||
			    filename[0] == '\0')
				unpack_usage();

			desc = lookup_image_desc_from_uuid(&uuid);
			if (desc != NULL) {
				if (desc->action != DO_UNSPEC)
					free(desc->action_arg);
				desc->action = DO_UNPACK;
				desc->action_arg = xstrdup(filename,
				    "failed to allocate memory for argument");
			} else {
				uuid_to_str(name, sizeof(name), &uuid);
				desc = new_image_desc(&uuid, name, "blob");
				desc->action = DO_UNPACK;
				desc->action_arg = xstrdup(filename,
				    "failed to allocate memory for argument");
				add_image_desc(desc);
			}
			unpack_all = 0;
			break;
		}
dp-arm's avatar
dp-arm committed
985
986
987
988
989
990
991
		case 'f':
			fflag = 1;
			break;
		case 'o':
			snprintf(outdir, sizeof(outdir), "%s", optarg);
			break;
		default:
992
			unpack_usage();
dp-arm's avatar
dp-arm committed
993
994
995
996
		}
	}
	argc -= optind;
	argv += optind;
997
	free(opts);
dp-arm's avatar
dp-arm committed
998
999

	if (argc == 0)
1000
		unpack_usage();
dp-arm's avatar
dp-arm committed
1001
1002
1003
1004
1005
1006
1007
1008

	parse_fip(argv[0], NULL);

	if (outdir[0] != '\0')
		if (chdir(outdir) == -1)
			log_err("chdir %s", outdir);

	/* Unpack all specified images. */
1009
	for (desc = image_desc_head; desc != NULL; desc = desc->next) {
1010
		char file[PATH_MAX];
1011
1012
		image_t *image;

1013
		if (!unpack_all && desc->action != DO_UNPACK)
dp-arm's avatar
dp-arm committed
1014
1015
1016
			continue;

		/* Build filename. */
1017
		if (desc->action_arg == NULL)
dp-arm's avatar
dp-arm committed
1018
			snprintf(file, sizeof(file), "%s.bin",
1019
			    desc->cmdline_name);
dp-arm's avatar
dp-arm committed
1020
1021
		else
			snprintf(file, sizeof(file), "%s",
1022
			    desc->action_arg);
dp-arm's avatar
dp-arm committed
1023

1024
		image = lookup_image_from_uuid(&desc->uuid);
1025
1026
		if (image == NULL) {
			if (!unpack_all)
1027
				log_warnx("%s does not exist in %s",
1028
				    file, argv[0]);
dp-arm's avatar
dp-arm committed
1029
1030
1031
1032
1033
1034
			continue;
		}

		if (access(file, F_OK) != 0 || fflag) {
			if (verbose)
				log_dbgx("Unpacking %s", file);
1035
			write_image_to_file(image, file);
dp-arm's avatar
dp-arm committed
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
		} else {
			log_warnx("File %s already exists, use --force to overwrite it",
			    file);
		}
	}

	free_images();
	return 0;
}

static void unpack_usage(void)
{
	toc_entry_t *toc_entry = toc_entries;

1050
1051
1052
1053
1054
	printf("fiptool unpack [--blob uuid=...,file=...] [--force] "
	    "[--out <path>] [opts] FIP_FILENAME\n");
	printf("  --blob uuid=...,file=...\tUnpack an image with the given UUID "
	    "to file.\n");
	printf("  --force\t\t\tIf the output file already exists, use --force to "
dp-arm's avatar
dp-arm committed
1055
	    "overwrite it.\n");
1056
	printf("  --out path\t\t\tSet the output directory path.\n");
dp-arm's avatar
dp-arm committed
1057
1058
1059
1060
1061
1062
1063
	fputc('\n', stderr);
	printf("Specific images are unpacked with the following options:\n");
	for (; toc_entry->cmdline_name != NULL; toc_entry++)
		printf("  --%-16s FILENAME\t%s\n", toc_entry->cmdline_name,
		    toc_entry->name);
	fputc('\n', stderr);
	printf("If no options are provided, all images will be unpacked.\n");
1064
	exit(1);
dp-arm's avatar
dp-arm committed
1065
1066
1067
1068
}

static int remove_cmd(int argc, char *argv[])
{
1069
1070
	struct option *opts = NULL;
	size_t nr_opts = 0;
1071
	char outfile[PATH_MAX] = { 0 };
dp-arm's avatar
dp-arm committed
1072
	fip_toc_header_t toc_header;
1073
	image_desc_t *desc;
dp-arm's avatar
dp-arm committed
1074
1075
1076
	int fflag = 0;

	if (argc < 2)
1077
		remove_usage();
dp-arm's avatar
dp-arm committed
1078

1079
	opts = fill_common_opts(opts, &nr_opts, no_argument);
1080
	opts = add_opt(opts, &nr_opts, "blob", required_argument, 'b');
1081
1082
1083
	opts = add_opt(opts, &nr_opts, "force", no_argument, 'f');
	opts = add_opt(opts, &nr_opts, "out", required_argument, 'o');
	opts = add_opt(opts, &nr_opts, NULL, 0, 0);
dp-arm's avatar
dp-arm committed
1084
1085

	while (1) {
1086
		int c, opt_index = 0;
dp-arm's avatar
dp-arm committed
1087

1088
		c = getopt_long(argc, argv, "b:fo:", opts, &opt_index);
dp-arm's avatar
dp-arm committed
1089
1090
1091
1092
		if (c == -1)
			break;

		switch (c) {
1093
1094
1095
1096
1097
1098
1099
		case OPT_TOC_ENTRY: {
			image_desc_t *desc;

			desc = lookup_image_desc_from_opt(opts[opt_index].name);
			assert(desc != NULL);
			desc->action = DO_REMOVE;
			desc->action_arg = NULL;
dp-arm's avatar
dp-arm committed
1100
			break;
1101
		}
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
		case 'b': {
			char name[_UUID_STR_LEN + 1], filename[PATH_MAX];
			uuid_t uuid = { 0 };
			image_desc_t *desc;

			parse_blob_opt(optarg, &uuid,
			    filename, sizeof(filename));

			if (memcmp(&uuid, &uuid_null, sizeof(uuid_t)) == 0)
				remove_usage();

			desc = lookup_image_desc_from_uuid(&uuid);
			if (desc != NULL) {
				desc->action = DO_REMOVE;
				desc->action_arg = NULL;
			} else {
				uuid_to_str(name, sizeof(name), &uuid);
				desc = new_image_desc(&uuid, name, "blob");
				desc->action = DO_REMOVE;
				desc->action_arg = NULL;
				add_image_desc(desc);
			}
			break;
		}
dp-arm's avatar
dp-arm committed
1126
1127
1128
1129
1130
1131
1132
		case 'f':
			fflag = 1;
			break;
		case 'o':
			snprintf(outfile, sizeof(outfile), "%s", optarg);
			break;
		default:
1133
			remove_usage();
dp-arm's avatar
dp-arm committed
1134
1135
1136
1137
		}
	}
	argc -= optind;
	argv += optind;
1138
	free(opts);
dp-arm's avatar
dp-arm committed
1139
1140

	if (argc == 0)
1141
		remove_usage();
dp-arm's avatar
dp-arm committed
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151

	if (outfile[0] != '\0' && access(outfile, F_OK) == 0 && !fflag)
		log_errx("File %s already exists, use --force to overwrite it",
		    outfile);

	if (outfile[0] == '\0')
		snprintf(outfile, sizeof(outfile), "%s", argv[0]);

	parse_fip(argv[0], &toc_header);

1152
	for (desc = image_desc_head; desc != NULL; desc = desc->next) {
1153
1154
		image_t *image;

1155
		if (desc->action != DO_REMOVE)
dp-arm's avatar
dp-arm committed
1156
			continue;
1157

1158
		image = lookup_image_from_uuid(&desc->uuid);
1159
		if (image != NULL) {
dp-arm's avatar
dp-arm committed
1160
			if (verbose)
1161
				log_dbgx("Removing %s",
1162
				    desc->cmdline_name);
1163
			remove_image(image);
dp-arm's avatar
dp-arm committed
1164
		} else {
1165
			log_warnx("%s does not exist in %s",
1166
			    desc->cmdline_name, argv[0]);
dp-arm's avatar
dp-arm committed
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
		}
	}

	pack_images(outfile, toc_header.flags);
	free_images();
	return 0;
}

static void remove_usage(void)
{
	toc_entry_t *toc_entry = toc_entries;

1179
1180
1181
	printf("fiptool remove [--blob uuid=...] [--force] "
	    "[--out FIP_FILENAME] [opts] FIP_FILENAME\n");
	printf("  --blob uuid=...\tRemove an image with the given UUID.\n");
dp-arm's avatar
dp-arm committed
1182
1183
1184
1185
1186
1187
1188
1189
	printf("  --force\t\tIf the output FIP file already exists, use --force to "
	    "overwrite it.\n");
	printf("  --out FIP_FILENAME\tSet an alternative output FIP file.\n");
	fputc('\n', stderr);
	printf("Specific images are removed with the following options:\n");
	for (; toc_entry->cmdline_name != NULL; toc_entry++)
		printf("  --%-16s\t%s\n", toc_entry->cmdline_name,
		    toc_entry->name);
1190
	exit(1);
dp-arm's avatar
dp-arm committed
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
}

static int version_cmd(int argc, char *argv[])
{
#ifdef VERSION
	puts(VERSION);
#else
	/* If built from fiptool directory, VERSION is not set. */
	puts("Unknown version");
#endif
	return 0;
}

static void version_usage(void)
{
	printf("fiptool version\n");
1207
	exit(1);
dp-arm's avatar
dp-arm committed
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
}

static int help_cmd(int argc, char *argv[])
{
	int i;

	if (argc < 2)
		usage();
	argc--, argv++;

	for (i = 0; i < NELEM(cmds); i++) {
		if (strcmp(cmds[i].name, argv[0]) == 0 &&
1220
		    cmds[i].usage != NULL)
dp-arm's avatar
dp-arm committed
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
			cmds[i].usage();
	}
	if (i == NELEM(cmds))
		printf("No help for subcommand '%s'\n", argv[0]);
	return 0;
}

static void usage(void)
{
	printf("usage: [--verbose] fiptool <command> [<args>]\n");
	printf("Global options supported:\n");
	printf("  --verbose\tEnable verbose output for all commands.\n");
	fputc('\n', stderr);
	printf("Commands supported:\n");
	printf("  info\t\tList images contained in FIP.\n");
	printf("  create\tCreate a new FIP with the given images.\n");
	printf("  update\tUpdate an existing FIP with the given images.\n");
	printf("  unpack\tUnpack images from FIP.\n");
	printf("  remove\tRemove images from FIP.\n");
	printf("  version\tShow fiptool version.\n");
	printf("  help\t\tShow help for given command.\n");
	exit(1);
}

int main(int argc, char *argv[])
{
	int i, ret = 0;

1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
	while (1) {
		int c, opt_index = 0;
		static struct option opts[] = {
			{ "verbose", no_argument, NULL, 'v' },
			{ NULL, no_argument, NULL, 0 }
		};

		/*
		 * Set POSIX mode so getopt stops at the first non-option
		 * which is the subcommand.
		 */
		c = getopt_long(argc, argv, "+v", opts, &opt_index);
		if (c == -1)
			break;
dp-arm's avatar
dp-arm committed
1263

1264
1265
1266
1267
1268
		switch (c) {
		case 'v':
			verbose = 1;
			break;
		default:
1269
			usage();
1270
		}
dp-arm's avatar
dp-arm committed
1271
	}
1272
1273
1274
1275
1276
1277
1278
	argc -= optind;
	argv += optind;
	/* Reset optind for subsequent getopt processing. */
	optind = 0;

	if (argc == 0)
		usage();
dp-arm's avatar
dp-arm committed
1279

1280
	fill_image_descs();
dp-arm's avatar
dp-arm committed
1281
1282
1283
1284
1285
1286
1287
1288
	for (i = 0; i < NELEM(cmds); i++) {
		if (strcmp(cmds[i].name, argv[0]) == 0) {
			ret = cmds[i].handler(argc, argv);
			break;
		}
	}
	if (i == NELEM(cmds))
		usage();
1289
	free_image_descs();
dp-arm's avatar
dp-arm committed
1290
1291
	return ret;
}