io_fip.c 10.2 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2017, ARM Limited and Contributors. All rights reserved.
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
 *
 * 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 <assert.h>
32
#include <bl_common.h>
33
34
#include <debug.h>
#include <errno.h>
35
36
37
#include <firmware_image_package.h>
#include <io_driver.h>
#include <io_fip.h>
38
39
#include <io_storage.h>
#include <platform.h>
40
#include <platform_def.h>
41
42
#include <stdint.h>
#include <string.h>
43
#include <utils.h>
44
#include <uuid.h>
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

/* 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;
60
61
	fip_toc_entry_t entry;
} file_state_t;
62
63

static const uuid_t uuid_null = {0};
64
static file_state_t current_file = {0};
65
66
static uintptr_t backend_dev_handle;
static uintptr_t backend_image_spec;
67
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
88


/* 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? */
89
static inline int is_valid_header(fip_toc_header_t *header)
90
91
92
93
94
95
96
97
98
99
{
	if ((header->name == TOC_HEADER_NAME) && (header->serial_number != 0)) {
		return 1;
	} else {
		return 0;
	}
}


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


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


111
static const io_dev_funcs_t fip_dev_funcs = {
112
113
114
115
116
117
118
119
120
121
122
123
	.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,
};


124
125
/* No state associated with this device so structure can be const */
static const io_dev_info_t fip_dev_info = {
126
127
128
129
130
131
	.funcs = &fip_dev_funcs,
	.info = (uintptr_t)NULL
};


/* Open a connection to the FIP device */
132
static int fip_dev_open(const uintptr_t dev_spec __unused,
133
			 io_dev_info_t **dev_info)
134
135
{
	assert(dev_info != NULL);
136
	*dev_info = (io_dev_info_t *)&fip_dev_info; /* cast away const */
137

138
	return 0;
139
140
141
142
}


/* Do some basic package checks. */
143
static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params)
144
{
145
	int result;
146
	unsigned int image_id = (unsigned int)init_params;
147
	uintptr_t backend_handle;
148
	fip_toc_header_t header;
149
150
151
	size_t bytes_read;

	/* Obtain a reference to the image by querying the platform layer */
152
	result = plat_get_image_source(image_id, &backend_dev_handle,
153
				       &backend_image_spec);
154
	if (result != 0) {
155
156
		WARN("Failed to obtain reference to image id=%u (%i)\n",
			image_id, result);
157
		result = -ENOENT;
158
159
160
161
162
163
		goto fip_dev_init_exit;
	}

	/* Attempt to access the FIP image */
	result = io_open(backend_dev_handle, backend_image_spec,
			 &backend_handle);
164
	if (result != 0) {
165
		WARN("Failed to access image id=%u (%i)\n", image_id, result);
166
		result = -ENOENT;
167
168
169
		goto fip_dev_init_exit;
	}

170
171
	result = io_read(backend_handle, (uintptr_t)&header, sizeof(header),
			&bytes_read);
172
	if (result == 0) {
173
		if (!is_valid_header(&header)) {
174
			WARN("Firmware Image Package header check failed.\n");
175
			result = -ENOENT;
176
		} else {
Dan Handley's avatar
Dan Handley committed
177
			VERBOSE("FIP header looks OK.\n");
178
179
180
181
182
183
184
185
186
187
		}
	}

	io_close(backend_handle);

 fip_dev_init_exit:
	return result;
}

/* Close a connection to the FIP device */
188
static int fip_dev_close(io_dev_info_t *dev_info)
189
190
191
192
{
	/* TODO: Consider tracking open files and cleaning them up here */

	/* Clear the backend. */
193
194
	backend_dev_handle = (uintptr_t)NULL;
	backend_image_spec = (uintptr_t)NULL;
195

196
	return 0;
197
198
199
200
}


/* Open a file for access from package. */
201
static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
202
			 io_entity_t *entity)
203
{
204
	int result;
205
	uintptr_t backend_handle;
206
	const io_uuid_spec_t *uuid_spec = (io_uuid_spec_t *)spec;
207
208
209
	size_t bytes_read;
	int found_file = 0;

210
	assert(uuid_spec != NULL);
211
212
213
214
215
216
217
218
219
	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) {
220
		WARN("fip_file_open : Only one open file at a time.\n");
221
		return -ENOMEM;
222
223
224
225
226
	}

	/* Attempt to access the FIP image */
	result = io_open(backend_dev_handle, backend_image_spec,
			 &backend_handle);
227
	if (result != 0) {
228
		WARN("Failed to open Firmware Image Package (%i)\n", result);
229
		result = -ENOENT;
230
231
232
233
		goto fip_file_open_exit;
	}

	/* Seek past the FIP header into the Table of Contents */
234
	result = io_seek(backend_handle, IO_SEEK_SET, sizeof(fip_toc_header_t));
235
	if (result != 0) {
236
		WARN("fip_file_open: failed to seek\n");
237
		result = -ENOENT;
238
239
240
241
242
		goto fip_file_open_close;
	}

	found_file = 0;
	do {
243
244
		result = io_read(backend_handle,
				 (uintptr_t)&current_file.entry,
245
246
				 sizeof(current_file.entry),
				 &bytes_read);
247
		if (result == 0) {
248
			if (compare_uuids(&current_file.entry.uuid,
249
					  &uuid_spec->uuid) == 0) {
250
251
252
253
				found_file = 1;
				break;
			}
		} else {
254
			WARN("Failed to read FIP (%i)\n", result);
255
256
257
258
259
260
261
262
263
264
265
266
267
			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. */
268
		current_file.entry.offset_address = 0;
269
		result = -ENOENT;
270
271
272
273
274
275
276
277
278
279
280
	}

 fip_file_open_close:
	io_close(backend_handle);

 fip_file_open_exit:
	return result;
}


/* Return the size of a file in package */
281
static int fip_file_len(io_entity_t *entity, size_t *length)
282
283
284
285
{
	assert(entity != NULL);
	assert(length != NULL);

286
	*length =  ((file_state_t *)entity->info)->entry.size;
287

288
	return 0;
289
290
291
292
}


/* Read data from a file in package */
293
static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
294
295
			  size_t *length_read)
{
296
	int result;
297
	file_state_t *fp;
298
299
	size_t file_offset;
	size_t bytes_read;
300
	uintptr_t backend_handle;
301
302

	assert(entity != NULL);
303
	assert(buffer != (uintptr_t)NULL);
304
	assert(length_read != NULL);
305
	assert(entity->info != (uintptr_t)NULL);
306
307
308
309

	/* Open the backend, attempt to access the blob image */
	result = io_open(backend_dev_handle, backend_image_spec,
			 &backend_handle);
310
	if (result != 0) {
311
		WARN("Failed to open FIP (%i)\n", result);
312
		result = -ENOENT;
313
314
315
		goto fip_file_read_exit;
	}

316
	fp = (file_state_t *)entity->info;
317
318
319
320

	/* 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);
321
	if (result != 0) {
322
		WARN("fip_file_read: failed to seek\n");
323
		result = -ENOENT;
324
325
326
327
		goto fip_file_read_close;
	}

	result = io_read(backend_handle, buffer, length, &bytes_read);
328
	if (result != 0) {
329
		/* We cannot read our data. Fail. */
330
		WARN("Failed to read payload (%i)\n", result);
331
		result = -ENOENT;
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
		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 */
349
static int fip_file_close(io_entity_t *entity)
350
351
352
353
354
{
	/* Clear our current file pointer.
	 * If we had malloc() we would free() here.
	 */
	if (current_file.entry.offset_address != 0) {
355
		zeromem(&current_file, sizeof(current_file));
356
357
358
359
360
	}

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

361
	return 0;
362
363
364
365
366
}

/* Exported functions */

/* Register the Firmware Image Package driver with the IO abstraction */
367
int register_io_dev_fip(const io_dev_connector_t **dev_con)
368
{
369
	int result;
370
371
372
	assert(dev_con != NULL);

	result = io_register_device(&fip_dev_info);
373
	if (result == 0)
374
375
376
377
		*dev_con = &fip_dev_connector;

	return result;
}