io_fip.c 11.8 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2020, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
 */

#include <assert.h>
8
9
10
#include <errno.h>
#include <stdint.h>
#include <string.h>
11
12
13
14
15
16
17
18
19
20
21
22

#include <platform_def.h>

#include <common/bl_common.h>
#include <common/debug.h>
#include <drivers/io/io_driver.h>
#include <drivers/io/io_fip.h>
#include <drivers/io/io_storage.h>
#include <lib/utils.h>
#include <plat/common/platform.h>
#include <tools_share/firmware_image_package.h>
#include <tools_share/uuid.h>
23

24
25
26
27
#ifndef MAX_FIP_DEVICES
#define MAX_FIP_DEVICES		1
#endif

28
29
30
31
32
33
34
35
36
37
/* Useful for printing UUIDs when debugging.*/
#define PRINT_UUID2(x)								\
	"%08x-%04hx-%04hx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx",	\
		x.time_low, x.time_mid, x.time_hi_and_version,			\
		x.clock_seq_hi_and_reserved, x.clock_seq_low,			\
		x.node[0], x.node[1], x.node[2], x.node[3],			\
		x.node[4], x.node[5]

typedef struct {
	unsigned int file_pos;
38
	fip_toc_entry_t entry;
johpow01's avatar
johpow01 committed
39
} fip_file_state_t;
40

41
42
43
44
45
46
47
48
/*
 * Maintain dev_spec per FIP Device
 * TODO - Add backend handles and file state
 * per FIP device here once backends like io_memmap
 * can support multiple open files
 */
typedef struct {
	uintptr_t dev_spec;
49
	uint16_t plat_toc_flag;
50
51
52
53
54
55
56
57
58
} fip_dev_state_t;

/*
 * Only one file can be open across all FIP device
 * as backends like io_memmap don't support
 * multiple open files. The file state and
 * backend handle should be maintained per FIP device
 * if the same support is available in the backend
 */
johpow01's avatar
johpow01 committed
59
static fip_file_state_t current_fip_file = {0};
60
61
static uintptr_t backend_dev_handle;
static uintptr_t backend_image_spec;
62

63
64
65
66
67
static fip_dev_state_t state_pool[MAX_FIP_DEVICES];
static io_dev_info_t dev_info_pool[MAX_FIP_DEVICES];

/* Track number of allocated fip devices */
static unsigned int fip_dev_count;
68
69

/* Firmware Image Package driver functions */
70
71
static int fip_dev_open(const uintptr_t dev_spec, io_dev_info_t **dev_info);
static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
72
73
			  io_entity_t *entity);
static int fip_file_len(io_entity_t *entity, size_t *length);
74
static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
75
			  size_t *length_read);
76
static int fip_file_close(io_entity_t *entity);
77
static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params);
78
static int fip_dev_close(io_dev_info_t *dev_info);
79
80
81
82
83
84
85
86
87


/* Return 0 for equal uuids. */
static inline int compare_uuids(const uuid_t *uuid1, const uuid_t *uuid2)
{
	return memcmp(uuid1, uuid2, sizeof(uuid_t));
}


88
static inline int is_valid_header(fip_toc_header_t *header)
89
90
91
92
93
94
95
96
97
98
{
	if ((header->name == TOC_HEADER_NAME) && (header->serial_number != 0)) {
		return 1;
	} else {
		return 0;
	}
}


/* Identify the device type as a virtual driver */
99
static io_type_t device_type_fip(void)
100
101
102
103
104
{
	return IO_TYPE_FIRMWARE_IMAGE_PACKAGE;
}


105
static const io_dev_connector_t fip_dev_connector = {
106
107
108
109
	.dev_open = fip_dev_open
};


110
static const io_dev_funcs_t fip_dev_funcs = {
111
112
113
114
115
116
117
118
119
120
121
	.type = device_type_fip,
	.open = fip_file_open,
	.seek = NULL,
	.size = fip_file_len,
	.read = fip_file_read,
	.write = NULL,
	.close = fip_file_close,
	.dev_init = fip_dev_init,
	.dev_close = fip_dev_close,
};

122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* Locate a file state in the pool, specified by address */
static int find_first_fip_state(const uintptr_t dev_spec,
				  unsigned int *index_out)
{
	int result = -ENOENT;
	unsigned int index;

	for (index = 0; index < (unsigned int)MAX_FIP_DEVICES; ++index) {
		/* dev_spec is used as identifier since it's unique */
		if (state_pool[index].dev_spec == dev_spec) {
			result = 0;
			*index_out = index;
			break;
		}
	}
	return result;
}

140

141
142
143
144
/* Allocate a device info from the pool and return a pointer to it */
static int allocate_dev_info(io_dev_info_t **dev_info)
{
	int result = -ENOMEM;
145

146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
	assert(dev_info != NULL);

	if (fip_dev_count < (unsigned int)MAX_FIP_DEVICES) {
		unsigned int index = 0;

		result = find_first_fip_state(0, &index);
		assert(result == 0);
		/* initialize dev_info */
		dev_info_pool[index].funcs = &fip_dev_funcs;
		dev_info_pool[index].info =
				(uintptr_t)&state_pool[index];
		*dev_info = &dev_info_pool[index];
		++fip_dev_count;
	}

	return result;
}
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
/* Release a device info to the pool */
static int free_dev_info(io_dev_info_t *dev_info)
{
	int result;
	unsigned int index = 0;
	fip_dev_state_t *state;

	assert(dev_info != NULL);

	state = (fip_dev_state_t *)dev_info->info;
	result = find_first_fip_state(state->dev_spec, &index);
	if (result ==  0) {
		/* free if device info is valid */
		zeromem(state, sizeof(fip_dev_state_t));
		--fip_dev_count;
	}

	return result;
}

/*
 * Multiple FIP devices can be opened depending on the value of
 * MAX_FIP_DEVICES. Given that there is only one backend, only a
 * single file can be open at a time by any FIP device.
 */
static int fip_dev_open(const uintptr_t dev_spec,
190
			 io_dev_info_t **dev_info)
191
{
192
193
194
195
	int result;
	io_dev_info_t *info;
	fip_dev_state_t *state;

196
	assert(dev_info != NULL);
197
198
199
200
201
202
203
204
205
206
207
208
209
#if MAX_FIP_DEVICES > 1
	assert(dev_spec != (uintptr_t)NULL);
#endif

	result = allocate_dev_info(&info);
	if (result != 0)
		return -ENOMEM;

	state = (fip_dev_state_t *)info->info;

	state->dev_spec = dev_spec;

	*dev_info = info;
210

211
	return 0;
212
213
214
215
}


/* Do some basic package checks. */
216
static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params)
217
{
218
	int result;
219
	unsigned int image_id = (unsigned int)init_params;
220
	uintptr_t backend_handle;
221
	fip_toc_header_t header;
222
	size_t bytes_read;
223
224
225
226
227
	fip_dev_state_t *state;

	assert(dev_info != NULL);

	state = (fip_dev_state_t *)dev_info->info;
228
229

	/* Obtain a reference to the image by querying the platform layer */
230
	result = plat_get_image_source(image_id, &backend_dev_handle,
231
				       &backend_image_spec);
232
	if (result != 0) {
233
234
		WARN("Failed to obtain reference to image id=%u (%i)\n",
			image_id, result);
235
		result = -ENOENT;
236
237
238
239
240
241
		goto fip_dev_init_exit;
	}

	/* Attempt to access the FIP image */
	result = io_open(backend_dev_handle, backend_image_spec,
			 &backend_handle);
242
	if (result != 0) {
243
		WARN("Failed to access image id=%u (%i)\n", image_id, result);
244
		result = -ENOENT;
245
246
247
		goto fip_dev_init_exit;
	}

248
249
	result = io_read(backend_handle, (uintptr_t)&header, sizeof(header),
			&bytes_read);
250
	if (result == 0) {
251
		if (!is_valid_header(&header)) {
252
			WARN("Firmware Image Package header check failed.\n");
253
			result = -ENOENT;
254
		} else {
Dan Handley's avatar
Dan Handley committed
255
			VERBOSE("FIP header looks OK.\n");
256
257
258
259
260
			/*
			 * Store 16-bit Platform ToC flags field which occupies
			 * bits [32-47] in fip header.
			 */
			state->plat_toc_flag = (header.flags >> 32) & 0xffff;
261
262
263
264
265
266
267
268
269
270
		}
	}

	io_close(backend_handle);

 fip_dev_init_exit:
	return result;
}

/* Close a connection to the FIP device */
271
static int fip_dev_close(io_dev_info_t *dev_info)
272
273
274
275
{
	/* TODO: Consider tracking open files and cleaning them up here */

	/* Clear the backend. */
276
277
	backend_dev_handle = (uintptr_t)NULL;
	backend_image_spec = (uintptr_t)NULL;
278

279
	return free_dev_info(dev_info);
280
281
282
283
}


/* Open a file for access from package. */
284
static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
285
			 io_entity_t *entity)
286
{
287
	int result;
288
	uintptr_t backend_handle;
289
	const io_uuid_spec_t *uuid_spec = (io_uuid_spec_t *)spec;
johpow01's avatar
johpow01 committed
290
	static const uuid_t uuid_null = { {0} }; /* Double braces for clang */
291
292
293
	size_t bytes_read;
	int found_file = 0;

294
	assert(uuid_spec != NULL);
295
296
297
298
299
300
301
302
	assert(entity != NULL);

	/* Can only have one file open at a time for the moment. We need to
	 * track state like file cursor position. We know the header lives at
	 * offset zero, so this entry should never be zero for an active file.
	 * When the system supports dynamic memory allocation we can allow more
	 * than one open file at a time if needed.
	 */
johpow01's avatar
johpow01 committed
303
	if (current_fip_file.entry.offset_address != 0U) {
304
		WARN("fip_file_open : Only one open file at a time.\n");
305
		return -ENFILE;
306
307
308
309
310
	}

	/* Attempt to access the FIP image */
	result = io_open(backend_dev_handle, backend_image_spec,
			 &backend_handle);
311
	if (result != 0) {
312
		WARN("Failed to open Firmware Image Package (%i)\n", result);
313
		result = -ENOENT;
314
315
316
317
		goto fip_file_open_exit;
	}

	/* Seek past the FIP header into the Table of Contents */
318
319
	result = io_seek(backend_handle, IO_SEEK_SET,
			 (signed long long)sizeof(fip_toc_header_t));
320
	if (result != 0) {
321
		WARN("fip_file_open: failed to seek\n");
322
		result = -ENOENT;
323
324
325
326
327
		goto fip_file_open_close;
	}

	found_file = 0;
	do {
328
		result = io_read(backend_handle,
johpow01's avatar
johpow01 committed
329
330
				 (uintptr_t)&current_fip_file.entry,
				 sizeof(current_fip_file.entry),
331
				 &bytes_read);
332
		if (result == 0) {
johpow01's avatar
johpow01 committed
333
			if (compare_uuids(&current_fip_file.entry.uuid,
334
					  &uuid_spec->uuid) == 0) {
335
336
337
				found_file = 1;
			}
		} else {
338
			WARN("Failed to read FIP (%i)\n", result);
339
340
			goto fip_file_open_close;
		}
johpow01's avatar
johpow01 committed
341
342
343
	} while ((found_file == 0) &&
			(compare_uuids(&current_fip_file.entry.uuid,
				&uuid_null) != 0));
344
345
346

	if (found_file == 1) {
		/* All fine. Update entity info with file state and return. Set
johpow01's avatar
johpow01 committed
347
348
		 * the file position to 0. The 'current_fip_file.entry' holds
		 * the base and size of the file.
349
		 */
johpow01's avatar
johpow01 committed
350
351
		current_fip_file.file_pos = 0;
		entity->info = (uintptr_t)&current_fip_file;
352
353
	} else {
		/* Did not find the file in the FIP. */
johpow01's avatar
johpow01 committed
354
		current_fip_file.entry.offset_address = 0;
355
		result = -ENOENT;
356
357
358
359
360
361
362
363
364
365
366
	}

 fip_file_open_close:
	io_close(backend_handle);

 fip_file_open_exit:
	return result;
}


/* Return the size of a file in package */
367
static int fip_file_len(io_entity_t *entity, size_t *length)
368
369
370
371
{
	assert(entity != NULL);
	assert(length != NULL);

johpow01's avatar
johpow01 committed
372
	*length =  ((fip_file_state_t *)entity->info)->entry.size;
373

374
	return 0;
375
376
377
378
}


/* Read data from a file in package */
379
static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
380
381
			  size_t *length_read)
{
382
	int result;
johpow01's avatar
johpow01 committed
383
	fip_file_state_t *fp;
384
385
	size_t file_offset;
	size_t bytes_read;
386
	uintptr_t backend_handle;
387
388
389

	assert(entity != NULL);
	assert(length_read != NULL);
390
	assert(entity->info != (uintptr_t)NULL);
391
392
393
394

	/* Open the backend, attempt to access the blob image */
	result = io_open(backend_dev_handle, backend_image_spec,
			 &backend_handle);
395
	if (result != 0) {
396
		WARN("Failed to open FIP (%i)\n", result);
397
		result = -ENOENT;
398
399
400
		goto fip_file_read_exit;
	}

johpow01's avatar
johpow01 committed
401
	fp = (fip_file_state_t *)entity->info;
402
403
404

	/* Seek to the position in the FIP where the payload lives */
	file_offset = fp->entry.offset_address + fp->file_pos;
405
406
	result = io_seek(backend_handle, IO_SEEK_SET,
			 (signed long long)file_offset);
407
	if (result != 0) {
408
		WARN("fip_file_read: failed to seek\n");
409
		result = -ENOENT;
410
411
412
413
		goto fip_file_read_close;
	}

	result = io_read(backend_handle, buffer, length, &bytes_read);
414
	if (result != 0) {
415
		/* We cannot read our data. Fail. */
416
		WARN("Failed to read payload (%i)\n", result);
417
		result = -ENOENT;
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
		goto fip_file_read_close;
	} else {
		/* Set caller length and new file position. */
		*length_read = bytes_read;
		fp->file_pos += bytes_read;
	}

/* Close the backend. */
 fip_file_read_close:
	io_close(backend_handle);

 fip_file_read_exit:
	return result;
}


/* Close a file in package */
435
static int fip_file_close(io_entity_t *entity)
436
437
438
439
{
	/* Clear our current file pointer.
	 * If we had malloc() we would free() here.
	 */
johpow01's avatar
johpow01 committed
440
441
	if (current_fip_file.entry.offset_address != 0U) {
		zeromem(&current_fip_file, sizeof(current_fip_file));
442
443
444
445
446
	}

	/* Clear the Entity info. */
	entity->info = 0;

447
	return 0;
448
449
450
451
452
}

/* Exported functions */

/* Register the Firmware Image Package driver with the IO abstraction */
453
int register_io_dev_fip(const io_dev_connector_t **dev_con)
454
{
455
	int result;
456
457
	assert(dev_con != NULL);

458
459
460
461
462
	/*
	 * Since dev_info isn't really used in io_register_device, always
	 * use the same device info at here instead.
	 */
	result = io_register_device(&dev_info_pool[0]);
463
	if (result == 0)
464
465
466
467
		*dev_con = &fip_dev_connector;

	return result;
}
468
469
470
471
472
473
474
475
476
477
478
479
480
481

/* Function to retrieve plat_toc_flags, previously saved in FIP dev */
int fip_dev_get_plat_toc_flag(io_dev_info_t *dev_info, uint16_t *plat_toc_flag)
{
	fip_dev_state_t *state;

	assert(dev_info != NULL);

	state = (fip_dev_state_t *)dev_info->info;

	*plat_toc_flag =  state->plat_toc_flag;

	return 0;
}