mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
disk: efi: buffer overflow in part_get_info_efi()
In part_get_info_efi() we use the output of print_efiname() to set info->name[]. The size of info->name is PART_NAME_LEN = 32 but print_efiname() returns a string with a maximum length of PARTNAME_SZ + 1 = 37. Use snprintf() instead of sprintf() to avoid buffer overflow. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
1f83431f00
commit
5375ee508f
1 changed files with 2 additions and 2 deletions
|
@ -313,7 +313,7 @@ int part_get_info_efi(struct blk_desc *dev_desc, int part,
|
|||
- info->start;
|
||||
info->blksz = dev_desc->blksz;
|
||||
|
||||
sprintf((char *)info->name, "%s",
|
||||
snprintf((char *)info->name, sizeof(info->name), "%s",
|
||||
print_efiname(&gpt_pte[part - 1]));
|
||||
strcpy((char *)info->type, "U-Boot");
|
||||
info->bootable = is_bootable(&gpt_pte[part - 1]);
|
||||
|
|
Loading…
Reference in a new issue