io_fip.c 8.79 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2017, 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
#include <bl_common.h>
9
10
#include <debug.h>
#include <errno.h>
11
12
13
#include <firmware_image_package.h>
#include <io_driver.h>
#include <io_fip.h>
14
15
#include <io_storage.h>
#include <platform.h>
16
#include <platform_def.h>
17
18
#include <stdint.h>
#include <string.h>
19
#include <utils.h>
20
#include <uuid.h>
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

/* 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 {
	/* Put file_pos above the struct to allow {0} on static init.
	 * It is a workaround for a known bug in GCC
	 * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53119
	 */
	unsigned int file_pos;
36
37
	fip_toc_entry_t entry;
} file_state_t;
38
39

static const uuid_t uuid_null = {0};
40
static file_state_t current_file = {0};
41
42
static uintptr_t backend_dev_handle;
static uintptr_t backend_image_spec;
43
44
45


/* Firmware Image Package driver functions */
46
47
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,
48
49
			  io_entity_t *entity);
static int fip_file_len(io_entity_t *entity, size_t *length);
50
static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
51
			  size_t *length_read);
52
static int fip_file_close(io_entity_t *entity);
53
static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params);
54
static int fip_dev_close(io_dev_info_t *dev_info);
55
56
57
58
59
60
61
62
63
64


/* 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));
}


/* TODO: We could check version numbers or do a package checksum? */
65
static inline int is_valid_header(fip_toc_header_t *header)
66
67
68
69
70
71
72
73
74
75
{
	if ((header->name == TOC_HEADER_NAME) && (header->serial_number != 0)) {
		return 1;
	} else {
		return 0;
	}
}


/* Identify the device type as a virtual driver */
76
io_type_t device_type_fip(void)
77
78
79
80
81
{
	return IO_TYPE_FIRMWARE_IMAGE_PACKAGE;
}


82
static const io_dev_connector_t fip_dev_connector = {
83
84
85
86
	.dev_open = fip_dev_open
};


87
static const io_dev_funcs_t fip_dev_funcs = {
88
89
90
91
92
93
94
95
96
97
98
99
	.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,
};


100
101
/* No state associated with this device so structure can be const */
static const io_dev_info_t fip_dev_info = {
102
103
104
105
106
107
	.funcs = &fip_dev_funcs,
	.info = (uintptr_t)NULL
};


/* Open a connection to the FIP device */
108
static int fip_dev_open(const uintptr_t dev_spec __unused,
109
			 io_dev_info_t **dev_info)
110
111
{
	assert(dev_info != NULL);
112
	*dev_info = (io_dev_info_t *)&fip_dev_info; /* cast away const */
113

114
	return 0;
115
116
117
118
}


/* Do some basic package checks. */
119
static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params)
120
{
121
	int result;
122
	unsigned int image_id = (unsigned int)init_params;
123
	uintptr_t backend_handle;
124
	fip_toc_header_t header;
125
126
127
	size_t bytes_read;

	/* Obtain a reference to the image by querying the platform layer */
128
	result = plat_get_image_source(image_id, &backend_dev_handle,
129
				       &backend_image_spec);
130
	if (result != 0) {
131
132
		WARN("Failed to obtain reference to image id=%u (%i)\n",
			image_id, result);
133
		result = -ENOENT;
134
135
136
137
138
139
		goto fip_dev_init_exit;
	}

	/* Attempt to access the FIP image */
	result = io_open(backend_dev_handle, backend_image_spec,
			 &backend_handle);
140
	if (result != 0) {
141
		WARN("Failed to access image id=%u (%i)\n", image_id, result);
142
		result = -ENOENT;
143
144
145
		goto fip_dev_init_exit;
	}

146
147
	result = io_read(backend_handle, (uintptr_t)&header, sizeof(header),
			&bytes_read);
148
	if (result == 0) {
149
		if (!is_valid_header(&header)) {
150
			WARN("Firmware Image Package header check failed.\n");
151
			result = -ENOENT;
152
		} else {
Dan Handley's avatar
Dan Handley committed
153
			VERBOSE("FIP header looks OK.\n");
154
155
156
157
158
159
160
161
162
163
		}
	}

	io_close(backend_handle);

 fip_dev_init_exit:
	return result;
}

/* Close a connection to the FIP device */
164
static int fip_dev_close(io_dev_info_t *dev_info)
165
166
167
168
{
	/* TODO: Consider tracking open files and cleaning them up here */

	/* Clear the backend. */
169
170
	backend_dev_handle = (uintptr_t)NULL;
	backend_image_spec = (uintptr_t)NULL;
171

172
	return 0;
173
174
175
176
}


/* Open a file for access from package. */
177
static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
178
			 io_entity_t *entity)
179
{
180
	int result;
181
	uintptr_t backend_handle;
182
	const io_uuid_spec_t *uuid_spec = (io_uuid_spec_t *)spec;
183
184
185
	size_t bytes_read;
	int found_file = 0;

186
	assert(uuid_spec != NULL);
187
188
189
190
191
192
193
194
195
	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.
	 */
	if (current_file.entry.offset_address != 0) {
196
		WARN("fip_file_open : Only one open file at a time.\n");
197
		return -ENOMEM;
198
199
200
201
202
	}

	/* Attempt to access the FIP image */
	result = io_open(backend_dev_handle, backend_image_spec,
			 &backend_handle);
203
	if (result != 0) {
204
		WARN("Failed to open Firmware Image Package (%i)\n", result);
205
		result = -ENOENT;
206
207
208
209
		goto fip_file_open_exit;
	}

	/* Seek past the FIP header into the Table of Contents */
210
	result = io_seek(backend_handle, IO_SEEK_SET, sizeof(fip_toc_header_t));
211
	if (result != 0) {
212
		WARN("fip_file_open: failed to seek\n");
213
		result = -ENOENT;
214
215
216
217
218
		goto fip_file_open_close;
	}

	found_file = 0;
	do {
219
220
		result = io_read(backend_handle,
				 (uintptr_t)&current_file.entry,
221
222
				 sizeof(current_file.entry),
				 &bytes_read);
223
		if (result == 0) {
224
			if (compare_uuids(&current_file.entry.uuid,
225
					  &uuid_spec->uuid) == 0) {
226
227
228
229
				found_file = 1;
				break;
			}
		} else {
230
			WARN("Failed to read FIP (%i)\n", result);
231
232
233
234
235
236
237
238
239
240
241
242
243
			goto fip_file_open_close;
		}
	} while (compare_uuids(&current_file.entry.uuid, &uuid_null) != 0);

	if (found_file == 1) {
		/* All fine. Update entity info with file state and return. Set
		 * the file position to 0. The 'current_file.entry' holds the
		 * base and size of the file.
		 */
		current_file.file_pos = 0;
		entity->info = (uintptr_t)&current_file;
	} else {
		/* Did not find the file in the FIP. */
244
		current_file.entry.offset_address = 0;
245
		result = -ENOENT;
246
247
248
249
250
251
252
253
254
255
256
	}

 fip_file_open_close:
	io_close(backend_handle);

 fip_file_open_exit:
	return result;
}


/* Return the size of a file in package */
257
static int fip_file_len(io_entity_t *entity, size_t *length)
258
259
260
261
{
	assert(entity != NULL);
	assert(length != NULL);

262
	*length =  ((file_state_t *)entity->info)->entry.size;
263

264
	return 0;
265
266
267
268
}


/* Read data from a file in package */
269
static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
270
271
			  size_t *length_read)
{
272
	int result;
273
	file_state_t *fp;
274
275
	size_t file_offset;
	size_t bytes_read;
276
	uintptr_t backend_handle;
277
278

	assert(entity != NULL);
279
	assert(buffer != (uintptr_t)NULL);
280
	assert(length_read != NULL);
281
	assert(entity->info != (uintptr_t)NULL);
282
283
284
285

	/* Open the backend, attempt to access the blob image */
	result = io_open(backend_dev_handle, backend_image_spec,
			 &backend_handle);
286
	if (result != 0) {
287
		WARN("Failed to open FIP (%i)\n", result);
288
		result = -ENOENT;
289
290
291
		goto fip_file_read_exit;
	}

292
	fp = (file_state_t *)entity->info;
293
294
295
296

	/* Seek to the position in the FIP where the payload lives */
	file_offset = fp->entry.offset_address + fp->file_pos;
	result = io_seek(backend_handle, IO_SEEK_SET, file_offset);
297
	if (result != 0) {
298
		WARN("fip_file_read: failed to seek\n");
299
		result = -ENOENT;
300
301
302
303
		goto fip_file_read_close;
	}

	result = io_read(backend_handle, buffer, length, &bytes_read);
304
	if (result != 0) {
305
		/* We cannot read our data. Fail. */
306
		WARN("Failed to read payload (%i)\n", result);
307
		result = -ENOENT;
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
		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 */
325
static int fip_file_close(io_entity_t *entity)
326
327
328
329
330
{
	/* Clear our current file pointer.
	 * If we had malloc() we would free() here.
	 */
	if (current_file.entry.offset_address != 0) {
331
		zeromem(&current_file, sizeof(current_file));
332
333
334
335
336
	}

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

337
	return 0;
338
339
340
341
342
}

/* Exported functions */

/* Register the Firmware Image Package driver with the IO abstraction */
343
int register_io_dev_fip(const io_dev_connector_t **dev_con)
344
{
345
	int result;
346
347
348
	assert(dev_con != NULL);

	result = io_register_device(&fip_dev_info);
349
	if (result == 0)
350
351
352
353
		*dev_con = &fip_dev_connector;

	return result;
}