mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 22:05:40 +00:00

cppcheck: [drivers/partition/gpt.c:19] -> [drivers/partition/gpt.c:19]: (warning) Either the condition 'str_in!=((void*)0)' is redundant or there is possible null pointer dereference: name. sparse: drivers/partition/gpt.c:39:9: warning: Using plain integer as NULL pointer Signed-off-by: Yann Gautier <yann.gautier@st.com>
59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <debug.h>
|
|
#include <errno.h>
|
|
#include <gpt.h>
|
|
#include <string.h>
|
|
#include <utils.h>
|
|
|
|
static int unicode_to_ascii(unsigned short *str_in, unsigned char *str_out)
|
|
{
|
|
uint8_t *name;
|
|
int i;
|
|
|
|
assert((str_in != NULL) && (str_out != NULL));
|
|
|
|
name = (uint8_t *)str_in;
|
|
|
|
assert(name[0] != '\0');
|
|
|
|
/* 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;
|
|
|
|
assert((gpt_entry != NULL) && (entry != NULL));
|
|
|
|
if ((gpt_entry->first_lba == 0) && (gpt_entry->last_lba == 0)) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
zeromem(entry, sizeof(partition_entry_t));
|
|
result = unicode_to_ascii(gpt_entry->name, (uint8_t *)entry->name);
|
|
if (result != 0) {
|
|
return result;
|
|
}
|
|
entry->start = (uint64_t)gpt_entry->first_lba * PARTITION_BLOCK_SIZE;
|
|
entry->length = (uint64_t)(gpt_entry->last_lba -
|
|
gpt_entry->first_lba + 1) *
|
|
PARTITION_BLOCK_SIZE;
|
|
return 0;
|
|
}
|