aboutsummaryrefslogtreecommitdiff
path: root/tools/sloffs.c
blob: 4b9ba5e5c5c0fb2d572f0c027afbb0a10b7dd735 (plain)
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
45
46
47
48
49
50
51
52
53
54
55
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
/******************************************************************************
 * Copyright (c) 2008, 2009 Adrian Reber
 * All rights reserved.
 * This program and the accompanying materials
 * are made available under the terms of the BSD License
 * which accompanies this distribution, and is available at
 * http://www.opensource.org/licenses/bsd-license.php
 *
 * Contributors:
 *     Adrian Reber - initial implementation
 *****************************************************************************/

#include <stdint.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <string.h>
#include <stdlib.h>
#include <byteswap.h>
#include <getopt.h>

#include <calculatecrc.h>

#define VERSION 1

#ifdef _BIG_ENDIAN
#define cpu_to_be64(x)  (x)
#define be64_to_cpu(x)  (x)
#define be16_to_cpu(x)  (x)
#define be32_to_cpu(x)  (x)
#else
#define cpu_to_be64(x)  bswap_64(x)
#define be64_to_cpu(x)  bswap_64(x)
#define be16_to_cpu(x)  bswap_16(x)
#define be32_to_cpu(x)  bswap_32(x)
#endif


/* no board dependencies wanted here, let's hardcode SLOF's
 * magic strings here */

#define FLASHFS_MAGIC "magic123"
#define FLASHFS_PLATFORM_MAGIC "JS2XBlade"
#define FLASHFS_PLATFORM_REVISION "1"

/* there seems to be no structure defined anywhere in the code
 * which resembles the actual sloffs/romfs file header;
 * so defining it here for now */

struct sloffs {
	uint64_t next;
	uint64_t len;
	uint64_t flags;
	uint64_t data;
	char *name;
};

static struct sloffs *
next_file(struct sloffs *sloffs)
{
	return (struct sloffs *)((unsigned char *)sloffs +
				 be64_to_cpu(sloffs->next));
}

static struct sloffs *
find_file(const void *data, const char *name)
{
	struct sloffs *sloffs = (struct sloffs *)data;

	for (;;) {
		if (!strcmp((char *)&sloffs->name, name))
			return sloffs;

		if (be64_to_cpu(sloffs->next) == 0)
			break;
		sloffs = next_file(sloffs);
	}
	return NULL;
}

static void
sloffs_dump(const void *data)
{
	struct stH *header;
	struct sloffs *sloffs;
	int i;
	uint64_t crc;
	uint64_t *datetmp;

	/* find the "header" file with all the information about
	 * the flash image */
	sloffs = find_file(data, "header");
	if (!sloffs) {
		printf("sloffs file \"header\" not found. aborting...\n");
		return;
	}

	header = (struct stH *)((unsigned char *)sloffs +
				be64_to_cpu(sloffs->data));

	if (memcmp(FLASHFS_MAGIC, header->magic, strlen(FLASHFS_MAGIC))) {
		printf("sloffs magic not found. "
		       "probably not a valid SLOF flash image. aborting...\n");
		return;
	}
	printf("  Magic       : %s\n", header->magic);
	printf("  Platform    : %s\n", header->platform_name);
	printf("  Version     : %s\n", header->version);
	/* there is a bug in the date position;
	 * it should be at header->date, but it is at (header->date + 2) */
	printf("  Build Date  : ");
	datetmp = (void *)header->date;
	if (be64_to_cpu(*datetmp)) {
	    printf("%04x", be16_to_cpu(*(uint16_t *)(header->date + 2)));
	    printf("-%02x", *(uint8_t *)(header->date + 4));
	    printf("-%02x", *(uint8_t *)(header->date + 5));
	    printf(" %02x:", *(uint8_t *)(header->date + 6));
	    printf("%02x", *(uint8_t *)(header->date + 7));
	} else {
	    printf("N/A");
	}
	printf("\n");
	printf("  Modify Date : ");
	datetmp = (void *)header->mdate;
	if (be64_to_cpu(*datetmp)) {
	    printf("%04x", be16_to_cpu(*(uint16_t *)(header->mdate + 2)));
	    printf("-%02x", *(uint8_t *)(header->mdate + 4));
	    printf("-%02x", *(uint8_t *)(header->mdate + 5));
	    printf(" %02x:", *(uint8_t *)(header->mdate + 6));
	    printf("%02x", *(uint8_t *)(header->mdate + 7));
	} else {
	    printf("N/A");
	}
	printf("\n");
	printf("  Image Length: %ld", be64_to_cpu(header->flashlen));
	printf(" (0x%lx) bytes\n", be64_to_cpu(header->flashlen));
	printf("  Revision    : %s\n", header->platform_revision);
	crc = be64_to_cpu(header->ui64CRC);
	printf("  Header CRC  : 0x%016lx\n", crc);
	crc = be64_to_cpu(header->flashlen);
	crc = *(uint64_t *)(unsigned char *)(data + crc - 8);
	crc = be64_to_cpu(crc);
	printf("  Image CRC   : 0x%016lx\n", crc);

	/* count number of files */
	sloffs = (struct sloffs *)data;
	i = 0;
	for (;;) {
		i++;
		if (be64_to_cpu(sloffs->next) == 0)
			break;
		sloffs = next_file(sloffs);
	}
	printf("  Files       : %d\n", i);
}

static void
sloffs_list(const void *data)
{
	struct sloffs *sloffs = (struct sloffs *)data;
	const char *name_header = "File Name";
	unsigned int i;
	unsigned int max;
	unsigned int line;

	/* find largest name */
	max = strlen(name_header);;
	for (;;) {
		if (max < strlen((char *)&sloffs->name))
			max = strlen((char *)&sloffs->name);

		if (be64_to_cpu(sloffs->next) == 0)
			break;
		sloffs = next_file(sloffs);
	}

	/* have at least two spaces between name and size column */
	max += 2;

	/* header for listing */
	line = printf("   Offset      ");
	line += printf("%s", name_header);
	for (i = 0; i < max - strlen(name_header); i++)
		line += printf(" ");
	line += printf("Size                ");
	line += printf("Flags\n");
	printf("   ");
	for (i = 0; i <= line; i++)
		printf("=");
	printf("\n");

	sloffs = (struct sloffs *)data;
	for (;;) {
		printf("   0x%08lx", (void *)sloffs - (void *)data);
		printf("  %s", (char *)&sloffs->name);
		for (i = 0; i < max - strlen((char *)&sloffs->name); i++)
			printf(" ");

		printf("%07ld ", be64_to_cpu(sloffs->len));
		printf("(0x%06lx)", be64_to_cpu(sloffs->len));
		printf("  0x%08lx\n", be64_to_cpu(sloffs->flags));

		if (be64_to_cpu(sloffs->next) == 0)
			break;
		sloffs = next_file(sloffs);
	}
}

static void
usage(void)
{
	printf("sloffs lists or changes a SLOF flash image\n\n");
	printf("Usage:\n");
	printf("  sloffs [OPTION]... [FILE]\n\n");
	printf("Options:\n");
	printf("  -h, --help             show this help, then exit\n");
	printf("  -l, --list             list all files in the flash image\n");
	printf("  -v, --version          print the version, then exit\n");
	printf("  -d, --dump             dump the information from the header\n");
	printf("\n");
	exit(1);
}

int
main(int argc, char *argv[])
{
	int fd;
	void *file;
	struct stat stat;
	const struct option loption[] = {
		{ "help", 0, NULL, 'h' },
		{ "list", 0, NULL, 'l' },
		{ "version", 0, NULL, 'v' },
		{ "dump", 0, NULL, 'd' },
		{ 0, 0, 0, 0 }
	};
	const char *soption = "dhlv";
	int c;
	char mode = 0;

	for (;;) {
		c = getopt_long(argc, argv, soption, loption, NULL);
		if (c == -1)
			break;
		switch (c) {
		case 'l':
			mode = 'l';
			break;
		case 'v':
			printf("sloffs (version %d)\n", VERSION);
			exit(0);
		case 'd':
			mode = 'd';
			break;
		case 'h':
		default:
			usage();
		}
	}

	if (optind >= argc)
		usage();

	fd = open(argv[optind], O_RDONLY);

	if (fd == -1) {
		perror(argv[optind]);
		exit(1);
	}

	fstat(fd, &stat);
	file = mmap(NULL, stat.st_size, PROT_READ, MAP_SHARED, fd, 0);

	switch (mode) {
	case 'l':
		sloffs_list(file);
		break;
	case 'd':
		sloffs_dump(file);
		break;
	}

	munmap(file, stat.st_size);
	close(fd);
	return 0;
}