blob: ee0bddf759d8e2b1a88611f8754b81e5426ce344 [file] [log] [blame]
Haojian Zhuang91f56462016-07-28 14:19:36 +08001/*
Douglas Raillarda8954fc2017-01-26 15:54:44 +00002 * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
Haojian Zhuang91f56462016-07-28 14:19:36 +08003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Haojian Zhuang91f56462016-07-28 14:19:36 +08005 */
6
7#include <assert.h>
Haojian Zhuang91f56462016-07-28 14:19:36 +08008#include <errno.h>
Haojian Zhuang91f56462016-07-28 14:19:36 +08009#include <string.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010
11#include <common/debug.h>
Sughosh Ganu51884ac2021-07-02 16:33:46 +053012#include <drivers/partition/efi.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000013#include <drivers/partition/gpt.h>
14#include <lib/utils.h>
Haojian Zhuang91f56462016-07-28 14:19:36 +080015
16static int unicode_to_ascii(unsigned short *str_in, unsigned char *str_out)
17{
Yann Gautiered041ac2018-11-09 18:21:04 +010018 uint8_t *name;
Haojian Zhuang91f56462016-07-28 14:19:36 +080019 int i;
20
Yann Gautiered041ac2018-11-09 18:21:04 +010021 assert((str_in != NULL) && (str_out != NULL));
22
23 name = (uint8_t *)str_in;
24
25 assert(name[0] != '\0');
Haojian Zhuang91f56462016-07-28 14:19:36 +080026
27 /* check whether the unicode string is valid */
28 for (i = 1; i < (EFI_NAMELEN << 1); i += 2) {
29 if (name[i] != '\0')
30 return -EINVAL;
31 }
32 /* convert the unicode string to ascii string */
33 for (i = 0; i < (EFI_NAMELEN << 1); i += 2) {
34 str_out[i >> 1] = name[i];
35 if (name[i] == '\0')
36 break;
37 }
38 return 0;
39}
40
41int parse_gpt_entry(gpt_entry_t *gpt_entry, partition_entry_t *entry)
42{
43 int result;
44
Yann Gautiered041ac2018-11-09 18:21:04 +010045 assert((gpt_entry != NULL) && (entry != NULL));
Haojian Zhuang91f56462016-07-28 14:19:36 +080046
47 if ((gpt_entry->first_lba == 0) && (gpt_entry->last_lba == 0)) {
48 return -EINVAL;
49 }
50
Douglas Raillarda8954fc2017-01-26 15:54:44 +000051 zeromem(entry, sizeof(partition_entry_t));
Haojian Zhuang91f56462016-07-28 14:19:36 +080052 result = unicode_to_ascii(gpt_entry->name, (uint8_t *)entry->name);
53 if (result != 0) {
54 return result;
55 }
Haojian Zhuang42a746d2019-09-14 18:01:16 +080056 entry->start = (uint64_t)gpt_entry->first_lba *
57 PLAT_PARTITION_BLOCK_SIZE;
Haojian Zhuang91f56462016-07-28 14:19:36 +080058 entry->length = (uint64_t)(gpt_entry->last_lba -
59 gpt_entry->first_lba + 1) *
Haojian Zhuang42a746d2019-09-14 18:01:16 +080060 PLAT_PARTITION_BLOCK_SIZE;
Sughosh Ganu51884ac2021-07-02 16:33:46 +053061 guidcpy(&entry->part_guid, &gpt_entry->unique_uuid);
62
Haojian Zhuang91f56462016-07-28 14:19:36 +080063 return 0;
64}