gpt.c 1.36 KB
Newer Older
1
/*
2
 * Copyright (c) 2016-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
8
9
 */

#include <assert.h>
#include <errno.h>
#include <string.h>
10
11
12
13

#include <common/debug.h>
#include <drivers/partition/gpt.h>
#include <lib/utils.h>
14
15
16

static int unicode_to_ascii(unsigned short *str_in, unsigned char *str_out)
{
17
	uint8_t *name;
18
19
	int i;

20
21
22
23
24
	assert((str_in != NULL) && (str_out != NULL));

	name = (uint8_t *)str_in;

	assert(name[0] != '\0');
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

	/* check whether the unicode string is valid */
	for (i = 1; i < (EFI_NAMELEN << 1); i += 2) {
		if (name[i] != '\0')
			return -EINVAL;
	}
	/* convert the unicode string to ascii string */
	for (i = 0; i < (EFI_NAMELEN << 1); i += 2) {
		str_out[i >> 1] = name[i];
		if (name[i] == '\0')
			break;
	}
	return 0;
}

int parse_gpt_entry(gpt_entry_t *gpt_entry, partition_entry_t *entry)
{
	int result;

44
	assert((gpt_entry != NULL) && (entry != NULL));
45
46
47
48
49

	if ((gpt_entry->first_lba == 0) && (gpt_entry->last_lba == 0)) {
		return -EINVAL;
	}

50
	zeromem(entry, sizeof(partition_entry_t));
51
52
53
54
	result = unicode_to_ascii(gpt_entry->name, (uint8_t *)entry->name);
	if (result != 0) {
		return result;
	}
55
56
	entry->start = (uint64_t)gpt_entry->first_lba *
		       PLAT_PARTITION_BLOCK_SIZE;
57
58
	entry->length = (uint64_t)(gpt_entry->last_lba -
				   gpt_entry->first_lba + 1) *
59
			PLAT_PARTITION_BLOCK_SIZE;
60
61
	return 0;
}