* [PATCH 0/2] ArmPlatformPkg: remove deprecated string function calls
@ 2016-10-25 18:17 Ard Biesheuvel
2016-10-25 18:17 ` [PATCH 1/2] ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string functions Ard Biesheuvel
2016-10-25 18:17 ` [PATCH 2/2] ArmPlatformPkg/BootMonFs: " Ard Biesheuvel
0 siblings, 2 replies; 7+ messages in thread
From: Ard Biesheuvel @ 2016-10-25 18:17 UTC (permalink / raw)
To: edk2-devel, leif.lindholm; +Cc: lersek, Ard Biesheuvel
ArmPlatformPkg no longer has its own .dsc, but we can still clean up some
uses of deprecated string functions, so that users of ArmPlatformPkg can
define DISABLE_NEW_DEPRECATED_INTERFACES
Ard Biesheuvel (2):
ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string
functions
ArmPlatformPkg/BootMonFs: eliminate deprecated string functions
ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c | 8 ++++----
ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c | 8 +++-----
ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c | 3 ++-
ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c | 12 +++++-------
4 files changed, 14 insertions(+), 17 deletions(-)
--
2.7.4
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/2] ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string functions
2016-10-25 18:17 [PATCH 0/2] ArmPlatformPkg: remove deprecated string function calls Ard Biesheuvel
@ 2016-10-25 18:17 ` Ard Biesheuvel
2016-10-26 10:32 ` Laszlo Ersek
2016-10-25 18:17 ` [PATCH 2/2] ArmPlatformPkg/BootMonFs: " Ard Biesheuvel
1 sibling, 1 reply; 7+ messages in thread
From: Ard Biesheuvel @ 2016-10-25 18:17 UTC (permalink / raw)
To: edk2-devel, leif.lindholm; +Cc: lersek, Ard Biesheuvel
Get rid of functions that are no longer available when defining
DISABLE_NEW_DEPRECATED_INTERFACES
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
---
ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
index 4d0811cc5eaf..6b39682948aa 100644
--- a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
+++ b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
@@ -269,7 +269,7 @@ ArmFastbootPlatformInit (
// Copy handle and partition name
Entry->PartitionHandle = AllHandles[LoopIndex];
- StrnCpy (
+ CopyMem (
Entry->PartitionName,
PartitionEntries[PartitionNode->PartitionNumber - 1].PartitionName, // Partition numbers start from 1.
PARTITION_NAME_MAX_LENGTH
@@ -320,7 +320,7 @@ ArmFastbootPlatformFlashPartition (
CHAR16 PartitionNameUnicode[60];
BOOLEAN PartitionFound;
- AsciiStrToUnicodeStr (PartitionName, PartitionNameUnicode);
+ AsciiStrToUnicodeStrS (PartitionName, PartitionNameUnicode, 60);
PartitionFound = FALSE;
Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&(mPartitionListHead));
@@ -396,7 +396,7 @@ ArmFastbootPlatformGetVar (
)
{
if (AsciiStrCmp (Name, "product")) {
- AsciiStrCpy (Value, FixedPcdGetPtr (PcdFirmwareVendor));
+ AsciiStrCpyS (Value, 60, FixedPcdGetPtr (PcdFirmwareVendor));
} else {
*Value = '\0';
}
@@ -410,7 +410,7 @@ ArmFastbootPlatformOemCommand (
{
CHAR16 CommandUnicode[65];
- AsciiStrToUnicodeStr (Command, CommandUnicode);
+ AsciiStrToUnicodeStrS (Command, CommandUnicode, 65);
if (AsciiStrCmp (Command, "Demonstrate") == 0) {
DEBUG ((EFI_D_ERROR, "ARM OEM Fastboot command 'Demonstrate' received.\n"));
--
2.7.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] ArmPlatformPkg/BootMonFs: eliminate deprecated string functions
2016-10-25 18:17 [PATCH 0/2] ArmPlatformPkg: remove deprecated string function calls Ard Biesheuvel
2016-10-25 18:17 ` [PATCH 1/2] ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string functions Ard Biesheuvel
@ 2016-10-25 18:17 ` Ard Biesheuvel
2016-10-26 11:26 ` Laszlo Ersek
1 sibling, 1 reply; 7+ messages in thread
From: Ard Biesheuvel @ 2016-10-25 18:17 UTC (permalink / raw)
To: edk2-devel, leif.lindholm; +Cc: lersek, Ard Biesheuvel
Get rid of functions that are no longer available when defining
DISABLE_NEW_DEPRECATED_INTERFACES
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
---
ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c | 8 +++-----
ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c | 3 ++-
ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c | 12 +++++-------
3 files changed, 10 insertions(+), 13 deletions(-)
diff --git a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c
index 450a707f183c..2736d3e0d0bf 100644
--- a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c
+++ b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c
@@ -304,7 +304,6 @@ SetFileName (
IN CONST CHAR16 *FileName
)
{
- CHAR16 TruncFileName[MAX_NAME_LENGTH];
CHAR8 AsciiFileName[MAX_NAME_LENGTH];
BOOTMON_FS_FILE *SameFile;
@@ -314,9 +313,7 @@ SetFileName (
FileName++;
}
- StrnCpy (TruncFileName, FileName, MAX_NAME_LENGTH - 1);
- TruncFileName[MAX_NAME_LENGTH - 1] = 0;
- UnicodeStrToAsciiStr (TruncFileName, AsciiFileName);
+ UnicodeStrToAsciiStrS (FileName, AsciiFileName, MAX_NAME_LENGTH);
if (BootMonGetFileFromAsciiFileName (
File->Instance,
@@ -327,7 +324,8 @@ SetFileName (
return EFI_ACCESS_DENIED;
} else {
// OK, change the filename.
- AsciiStrToUnicodeStr (AsciiFileName, File->Info->FileName);
+ AsciiStrToUnicodeStrS (AsciiFileName, File->Info->FileName,
+ (File->Info->Size - sizeof *File->Info) / sizeof (CHAR16));
return EFI_SUCCESS;
}
}
diff --git a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c
index 3d71760fef99..a1150856f6ba 100644
--- a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c
+++ b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c
@@ -98,7 +98,8 @@ BootMonGetFileFromAsciiFileName (
{
FileEntry = BOOTMON_FS_FILE_FROM_LINK_THIS (Entry);
if (FileEntry->Info != NULL) {
- UnicodeStrToAsciiStr (FileEntry->Info->FileName, OpenFileAsciiFileName);
+ UnicodeStrToAsciiStrS (FileEntry->Info->FileName, OpenFileAsciiFileName,
+ MAX_NAME_LENGTH);
AsciiFileNameToCompare = OpenFileAsciiFileName;
} else {
AsciiFileNameToCompare = FileEntry->HwDescription.Footer.Filename;
diff --git a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c
index af2fe514f044..4927d987eccf 100644
--- a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c
+++ b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c
@@ -101,7 +101,8 @@ WriteFileDescription (
Description->Attributes = 1;
Description->BlockStart = FileStart / BlockSize;
Description->BlockEnd = Description->BlockStart + (FileSize / BlockSize);
- AsciiStrCpy (Description->Footer.Filename, FileName);
+ AsciiStrCpyS (Description->Footer.Filename,
+ sizeof Description->Footer.Filename, FileName);
#ifdef MDE_CPU_ARM
Description->Footer.Offset = HW_IMAGE_FOOTER_OFFSET;
@@ -294,7 +295,7 @@ BootMonFsFlushFile (
DiskIo = Instance->DiskIo;
BlockSize = Media->BlockSize;
- UnicodeStrToAsciiStr (Info->FileName, AsciiFileName);
+ UnicodeStrToAsciiStrS (Info->FileName, AsciiFileName, MAX_NAME_LENGTH);
// If the file doesn't exist then find a space for it
if (File->HwDescription.RegionCount == 0) {
@@ -626,10 +627,7 @@ BootMonFsOpenFile (
Status = EFI_OUT_OF_RESOURCES;
goto Error;
}
- UnicodeStrToAsciiStr (Path, AsciiFileName);
- if (AsciiStrSize (AsciiFileName) > MAX_NAME_LENGTH) {
- AsciiFileName[MAX_NAME_LENGTH - 1] = '\0';
- }
+ UnicodeStrToAsciiStrS (Path, AsciiFileName, MAX_NAME_LENGTH);
if ((AsciiFileName[0] == '\0') ||
(AsciiFileName[0] == '.' ) ) {
@@ -688,7 +686,7 @@ BootMonFsOpenFile (
Info->FileSize = BootMonFsGetImageLength (File);
Info->PhysicalSize = BootMonFsGetPhysicalSize (File);
- AsciiStrToUnicodeStr (AsciiFileName, Info->FileName);
+ AsciiStrToUnicodeStrS (AsciiFileName, Info->FileName, MAX_NAME_LENGTH);
File->Info = Info;
Info = NULL;
--
2.7.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string functions
2016-10-25 18:17 ` [PATCH 1/2] ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string functions Ard Biesheuvel
@ 2016-10-26 10:32 ` Laszlo Ersek
2016-10-26 10:34 ` Ard Biesheuvel
0 siblings, 1 reply; 7+ messages in thread
From: Laszlo Ersek @ 2016-10-26 10:32 UTC (permalink / raw)
To: Ard Biesheuvel, edk2-devel, leif.lindholm
On 10/25/16 20:17, Ard Biesheuvel wrote:
> Get rid of functions that are no longer available when defining
> DISABLE_NEW_DEPRECATED_INTERFACES
>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> ---
> ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
> index 4d0811cc5eaf..6b39682948aa 100644
> --- a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
> +++ b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
> @@ -269,7 +269,7 @@ ArmFastbootPlatformInit (
>
> // Copy handle and partition name
> Entry->PartitionHandle = AllHandles[LoopIndex];
> - StrnCpy (
> + CopyMem (
> Entry->PartitionName,
> PartitionEntries[PartitionNode->PartitionNumber - 1].PartitionName, // Partition numbers start from 1.
> PARTITION_NAME_MAX_LENGTH
okay
> @@ -320,7 +320,7 @@ ArmFastbootPlatformFlashPartition (
> CHAR16 PartitionNameUnicode[60];
> BOOLEAN PartitionFound;
>
> - AsciiStrToUnicodeStr (PartitionName, PartitionNameUnicode);
> + AsciiStrToUnicodeStrS (PartitionName, PartitionNameUnicode, 60);
>
> PartitionFound = FALSE;
> Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&(mPartitionListHead));
You asked me to introduce a macro for a very similar case in one of my
ArmPkg patches...
Anyway, the change is valid.
> @@ -396,7 +396,7 @@ ArmFastbootPlatformGetVar (
> )
> {
> if (AsciiStrCmp (Name, "product")) {
> - AsciiStrCpy (Value, FixedPcdGetPtr (PcdFirmwareVendor));
> + AsciiStrCpyS (Value, 60, FixedPcdGetPtr (PcdFirmwareVendor));
> } else {
> *Value = '\0';
> }
This is wrong.
The signature of this function does not indicate the expected size of
the receiving buffer. However, the function is a
FASTBOOT_PLATFORM_GETVAR implementation (==
FASTBOOT_PLATFORM_PROTOCOL.GetVar() member implementation). The leading
comment on that function pointer type says,
Variable names and values may not be larger than 60 bytes, excluding the
terminal null character. This is a limitation of the Fastboot protocol.
I.e., 60 non-NUL bytes, plus the terminating NUL, is a valid variable
value. Therefore the DestMax parameter should be 61.
Just to be sure, I checked the call sites. There is only one call site
actually, in
"EmbeddedPkg/Application/AndroidFastboot/AndroidFastbootApp.c", function
HandleGetVar():
CHAR8 Response[FASTBOOT_COMMAND_MAX_LENGTH + 1] = "OKAY";
...
Status = mPlatform->GetVar (CmdArg, Response + 4);
FASTBOOT_COMMAND_MAX_LENGTH is 64 (same file), therefore (Response + 4)
points to a (sub-)array of 61 characters. IOW, the call site is
consistent with the protocol definition, and the DestMax param should be
bumped to 61.
> @@ -410,7 +410,7 @@ ArmFastbootPlatformOemCommand (
> {
> CHAR16 CommandUnicode[65];
>
> - AsciiStrToUnicodeStr (Command, CommandUnicode);
> + AsciiStrToUnicodeStrS (Command, CommandUnicode, 65);
>
> if (AsciiStrCmp (Command, "Demonstrate") == 0) {
> DEBUG ((EFI_D_ERROR, "ARM OEM Fastboot command 'Demonstrate' received.\n"));
>
This is correct.
Thanks
Laszlo
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string functions
2016-10-26 10:32 ` Laszlo Ersek
@ 2016-10-26 10:34 ` Ard Biesheuvel
2016-10-26 11:28 ` Laszlo Ersek
0 siblings, 1 reply; 7+ messages in thread
From: Ard Biesheuvel @ 2016-10-26 10:34 UTC (permalink / raw)
To: Laszlo Ersek; +Cc: edk2-devel@lists.01.org, Leif Lindholm
On 26 October 2016 at 11:32, Laszlo Ersek <lersek@redhat.com> wrote:
> On 10/25/16 20:17, Ard Biesheuvel wrote:
>> Get rid of functions that are no longer available when defining
>> DISABLE_NEW_DEPRECATED_INTERFACES
>>
>> Contributed-under: TianoCore Contribution Agreement 1.0
>> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>> ---
>> ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c | 8 ++++----
>> 1 file changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
>> index 4d0811cc5eaf..6b39682948aa 100644
>> --- a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
>> +++ b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
>> @@ -269,7 +269,7 @@ ArmFastbootPlatformInit (
>>
>> // Copy handle and partition name
>> Entry->PartitionHandle = AllHandles[LoopIndex];
>> - StrnCpy (
>> + CopyMem (
>> Entry->PartitionName,
>> PartitionEntries[PartitionNode->PartitionNumber - 1].PartitionName, // Partition numbers start from 1.
>> PARTITION_NAME_MAX_LENGTH
>
> okay
>
>> @@ -320,7 +320,7 @@ ArmFastbootPlatformFlashPartition (
>> CHAR16 PartitionNameUnicode[60];
>> BOOLEAN PartitionFound;
>>
>> - AsciiStrToUnicodeStr (PartitionName, PartitionNameUnicode);
>> + AsciiStrToUnicodeStrS (PartitionName, PartitionNameUnicode, 60);
>>
>> PartitionFound = FALSE;
>> Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&(mPartitionListHead));
>
> You asked me to introduce a macro for a very similar case in one of my
> ArmPkg patches...
>
You are right, my apologies. In my defense, ArmPkg is something we
consider maintained, whereas ArmPlatformPkg is a collection of cruft
which we would like to phase out as soon as we can.
> Anyway, the change is valid.
>
>> @@ -396,7 +396,7 @@ ArmFastbootPlatformGetVar (
>> )
>> {
>> if (AsciiStrCmp (Name, "product")) {
>> - AsciiStrCpy (Value, FixedPcdGetPtr (PcdFirmwareVendor));
>> + AsciiStrCpyS (Value, 60, FixedPcdGetPtr (PcdFirmwareVendor));
>> } else {
>> *Value = '\0';
>> }
>
> This is wrong.
>
> The signature of this function does not indicate the expected size of
> the receiving buffer. However, the function is a
> FASTBOOT_PLATFORM_GETVAR implementation (==
> FASTBOOT_PLATFORM_PROTOCOL.GetVar() member implementation). The leading
> comment on that function pointer type says,
>
> Variable names and values may not be larger than 60 bytes, excluding the
> terminal null character. This is a limitation of the Fastboot protocol.
>
> I.e., 60 non-NUL bytes, plus the terminating NUL, is a valid variable
> value. Therefore the DestMax parameter should be 61.
>
> Just to be sure, I checked the call sites. There is only one call site
> actually, in
> "EmbeddedPkg/Application/AndroidFastboot/AndroidFastbootApp.c", function
> HandleGetVar():
>
> CHAR8 Response[FASTBOOT_COMMAND_MAX_LENGTH + 1] = "OKAY";
> ...
> Status = mPlatform->GetVar (CmdArg, Response + 4);
>
> FASTBOOT_COMMAND_MAX_LENGTH is 64 (same file), therefore (Response + 4)
> points to a (sub-)array of 61 characters. IOW, the call site is
> consistent with the protocol definition, and the DestMax param should be
> bumped to 61.
>
Thanks for spotting that.
>> @@ -410,7 +410,7 @@ ArmFastbootPlatformOemCommand (
>> {
>> CHAR16 CommandUnicode[65];
>>
>> - AsciiStrToUnicodeStr (Command, CommandUnicode);
>> + AsciiStrToUnicodeStrS (Command, CommandUnicode, 65);
>>
>> if (AsciiStrCmp (Command, "Demonstrate") == 0) {
>> DEBUG ((EFI_D_ERROR, "ARM OEM Fastboot command 'Demonstrate' received.\n"));
>>
>
> This is correct.
>
Thanks,
Ard.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] ArmPlatformPkg/BootMonFs: eliminate deprecated string functions
2016-10-25 18:17 ` [PATCH 2/2] ArmPlatformPkg/BootMonFs: " Ard Biesheuvel
@ 2016-10-26 11:26 ` Laszlo Ersek
0 siblings, 0 replies; 7+ messages in thread
From: Laszlo Ersek @ 2016-10-26 11:26 UTC (permalink / raw)
To: Ard Biesheuvel, edk2-devel, leif.lindholm
On 10/25/16 20:17, Ard Biesheuvel wrote:
> Get rid of functions that are no longer available when defining
> DISABLE_NEW_DEPRECATED_INTERFACES
>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> ---
> ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c | 8 +++-----
> ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c | 3 ++-
> ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c | 12 +++++-------
> 3 files changed, 10 insertions(+), 13 deletions(-)
>
> diff --git a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c
> index 450a707f183c..2736d3e0d0bf 100644
> --- a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c
> +++ b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsDir.c
> @@ -304,7 +304,6 @@ SetFileName (
> IN CONST CHAR16 *FileName
> )
> {
> - CHAR16 TruncFileName[MAX_NAME_LENGTH];
> CHAR8 AsciiFileName[MAX_NAME_LENGTH];
> BOOTMON_FS_FILE *SameFile;
>
> @@ -314,9 +313,7 @@ SetFileName (
> FileName++;
> }
>
> - StrnCpy (TruncFileName, FileName, MAX_NAME_LENGTH - 1);
> - TruncFileName[MAX_NAME_LENGTH - 1] = 0;
> - UnicodeStrToAsciiStr (TruncFileName, AsciiFileName);
> + UnicodeStrToAsciiStrS (FileName, AsciiFileName, MAX_NAME_LENGTH);
>
> if (BootMonGetFileFromAsciiFileName (
> File->Instance,
Good.
> @@ -327,7 +324,8 @@ SetFileName (
> return EFI_ACCESS_DENIED;
> } else {
> // OK, change the filename.
> - AsciiStrToUnicodeStr (AsciiFileName, File->Info->FileName);
> + AsciiStrToUnicodeStrS (AsciiFileName, File->Info->FileName,
> + (File->Info->Size - sizeof *File->Info) / sizeof (CHAR16));
> return EFI_SUCCESS;
> }
> }
I think this is incorrect. The division is fine, but the dividend is off
by one CHAR16: the last member of EFI_FILE_INFO (that is, of *File->Info) is
///
/// The Null-terminated name of the file.
///
CHAR16 FileName[1];
If you subtract the entire EFI_FILE_INFO structure, then you remove the
first character from the file name as well.
Please add (sizeof (CHAR16)) to the dividend; or else, use
File->Info->Size - OFFSET_OF (EFI_FILE_INFO, FileName)
as the dividend.
Hey, wait a minute: look at the macro SIZE_OF_EFI_FILE_INFO in
"MdePkg/Include/Guid/FileInfo.h":
///
/// The FileName field of the EFI_FILE_INFO data structure is variable
/// length. Whenever code needs to know the size of the EFI_FILE_INFO
/// data structure, it needs to be the size of the data structure
/// without the FileName field. The following macro computes this size
/// correctly no matter how big the FileName array is declared. This is
/// required to make the EFI_FILE_INFO data structure ANSI compilant.
///
#define SIZE_OF_EFI_FILE_INFO OFFSET_OF (EFI_FILE_INFO, FileName)
So, for take-no-hostages pedantry, you should make the dividend
File->Info->Size - SIZE_OF_EFI_FILE_INFO
> diff --git a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c
> index 3d71760fef99..a1150856f6ba 100644
> --- a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c
> +++ b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsEntryPoint.c
> @@ -98,7 +98,8 @@ BootMonGetFileFromAsciiFileName (
> {
> FileEntry = BOOTMON_FS_FILE_FROM_LINK_THIS (Entry);
> if (FileEntry->Info != NULL) {
> - UnicodeStrToAsciiStr (FileEntry->Info->FileName, OpenFileAsciiFileName);
> + UnicodeStrToAsciiStrS (FileEntry->Info->FileName, OpenFileAsciiFileName,
> + MAX_NAME_LENGTH);
> AsciiFileNameToCompare = OpenFileAsciiFileName;
> } else {
> AsciiFileNameToCompare = FileEntry->HwDescription.Footer.Filename;
okay
> diff --git a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c
> index af2fe514f044..4927d987eccf 100644
> --- a/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c
> +++ b/ArmPlatformPkg/FileSystem/BootMonFs/BootMonFsOpenClose.c
> @@ -101,7 +101,8 @@ WriteFileDescription (
> Description->Attributes = 1;
> Description->BlockStart = FileStart / BlockSize;
> Description->BlockEnd = Description->BlockStart + (FileSize / BlockSize);
> - AsciiStrCpy (Description->Footer.Filename, FileName);
> + AsciiStrCpyS (Description->Footer.Filename,
> + sizeof Description->Footer.Filename, FileName);
>
> #ifdef MDE_CPU_ARM
> Description->Footer.Offset = HW_IMAGE_FOOTER_OFFSET;
okay
> @@ -294,7 +295,7 @@ BootMonFsFlushFile (
> DiskIo = Instance->DiskIo;
> BlockSize = Media->BlockSize;
>
> - UnicodeStrToAsciiStr (Info->FileName, AsciiFileName);
> + UnicodeStrToAsciiStrS (Info->FileName, AsciiFileName, MAX_NAME_LENGTH);
>
> // If the file doesn't exist then find a space for it
> if (File->HwDescription.RegionCount == 0) {
okay
> @@ -626,10 +627,7 @@ BootMonFsOpenFile (
> Status = EFI_OUT_OF_RESOURCES;
> goto Error;
> }
> - UnicodeStrToAsciiStr (Path, AsciiFileName);
> - if (AsciiStrSize (AsciiFileName) > MAX_NAME_LENGTH) {
> - AsciiFileName[MAX_NAME_LENGTH - 1] = '\0';
> - }
> + UnicodeStrToAsciiStrS (Path, AsciiFileName, MAX_NAME_LENGTH);
>
> if ((AsciiFileName[0] == '\0') ||
> (AsciiFileName[0] == '.' ) ) {
This change is incorrect. Consider the case when StrLen (Path) == 1, for
example -- you won't have MAX_NAME_LENGTH (32) characters in the
dynamically allocated AsciiFileName array.
I realize that no buffer overflow could happen in reality -- that's
because the original code is already safe here, and the receiving ASCII
buffer has been sized for the UCS2 input -- but DestMax=MAX_NAME_LENGTH
is untrue, generally speaking.
I suggest to introduce
AsciiFileNameSize = StrLen (Path) + 1;
if (AsciiFileNameSize > MAX_NAME_LENGTH) {
AsciiFileNameSize = MAX_NAME_LENGTH;
}
and then use AsciiFileNameSize in both the allocation and the
UnicodeStrToAsciiStrS() call.
> @@ -688,7 +686,7 @@ BootMonFsOpenFile (
>
> Info->FileSize = BootMonFsGetImageLength (File);
> Info->PhysicalSize = BootMonFsGetPhysicalSize (File);
> - AsciiStrToUnicodeStr (AsciiFileName, Info->FileName);
> + AsciiStrToUnicodeStrS (AsciiFileName, Info->FileName, MAX_NAME_LENGTH);
>
> File->Info = Info;
> Info = NULL;
>
Info is allocated with:
Info = AllocateZeroPool (
SIZE_OF_EFI_FILE_INFO + (sizeof (CHAR16) * MAX_NAME_LENGTH));
-- see SIZE_OF_EFI_FILE_INFO above --, so this hunk is correct.
Thanks
Laszlo
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string functions
2016-10-26 10:34 ` Ard Biesheuvel
@ 2016-10-26 11:28 ` Laszlo Ersek
0 siblings, 0 replies; 7+ messages in thread
From: Laszlo Ersek @ 2016-10-26 11:28 UTC (permalink / raw)
To: Ard Biesheuvel; +Cc: edk2-devel@lists.01.org, Leif Lindholm
On 10/26/16 12:34, Ard Biesheuvel wrote:
> On 26 October 2016 at 11:32, Laszlo Ersek <lersek@redhat.com> wrote:
>> On 10/25/16 20:17, Ard Biesheuvel wrote:
>>> Get rid of functions that are no longer available when defining
>>> DISABLE_NEW_DEPRECATED_INTERFACES
>>>
>>> Contributed-under: TianoCore Contribution Agreement 1.0
>>> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>>> ---
>>> ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c | 8 ++++----
>>> 1 file changed, 4 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
>>> index 4d0811cc5eaf..6b39682948aa 100644
>>> --- a/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
>>> +++ b/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressFastBootDxe/ArmVExpressFastBoot.c
>>> @@ -269,7 +269,7 @@ ArmFastbootPlatformInit (
>>>
>>> // Copy handle and partition name
>>> Entry->PartitionHandle = AllHandles[LoopIndex];
>>> - StrnCpy (
>>> + CopyMem (
>>> Entry->PartitionName,
>>> PartitionEntries[PartitionNode->PartitionNumber - 1].PartitionName, // Partition numbers start from 1.
>>> PARTITION_NAME_MAX_LENGTH
>>
>> okay
>>
>>> @@ -320,7 +320,7 @@ ArmFastbootPlatformFlashPartition (
>>> CHAR16 PartitionNameUnicode[60];
>>> BOOLEAN PartitionFound;
>>>
>>> - AsciiStrToUnicodeStr (PartitionName, PartitionNameUnicode);
>>> + AsciiStrToUnicodeStrS (PartitionName, PartitionNameUnicode, 60);
>>>
>>> PartitionFound = FALSE;
>>> Entry = (FASTBOOT_PARTITION_LIST *) GetFirstNode (&(mPartitionListHead));
>>
>> You asked me to introduce a macro for a very similar case in one of my
>> ArmPkg patches...
>>
>
> You are right, my apologies. In my defense, ArmPkg is something we
> consider maintained, whereas ArmPlatformPkg is a collection of cruft
> which we would like to phase out as soon as we can.
Ah, okay; I didn't realize that. No need to change this hunk then (I
didn't request that anyway). It is correct after all (and beauty we
don't insist upon here, then).
Thanks
Laszlo
>
>> Anyway, the change is valid.
>>
>>> @@ -396,7 +396,7 @@ ArmFastbootPlatformGetVar (
>>> )
>>> {
>>> if (AsciiStrCmp (Name, "product")) {
>>> - AsciiStrCpy (Value, FixedPcdGetPtr (PcdFirmwareVendor));
>>> + AsciiStrCpyS (Value, 60, FixedPcdGetPtr (PcdFirmwareVendor));
>>> } else {
>>> *Value = '\0';
>>> }
>>
>> This is wrong.
>>
>> The signature of this function does not indicate the expected size of
>> the receiving buffer. However, the function is a
>> FASTBOOT_PLATFORM_GETVAR implementation (==
>> FASTBOOT_PLATFORM_PROTOCOL.GetVar() member implementation). The leading
>> comment on that function pointer type says,
>>
>> Variable names and values may not be larger than 60 bytes, excluding the
>> terminal null character. This is a limitation of the Fastboot protocol.
>>
>> I.e., 60 non-NUL bytes, plus the terminating NUL, is a valid variable
>> value. Therefore the DestMax parameter should be 61.
>>
>> Just to be sure, I checked the call sites. There is only one call site
>> actually, in
>> "EmbeddedPkg/Application/AndroidFastboot/AndroidFastbootApp.c", function
>> HandleGetVar():
>>
>> CHAR8 Response[FASTBOOT_COMMAND_MAX_LENGTH + 1] = "OKAY";
>> ...
>> Status = mPlatform->GetVar (CmdArg, Response + 4);
>>
>> FASTBOOT_COMMAND_MAX_LENGTH is 64 (same file), therefore (Response + 4)
>> points to a (sub-)array of 61 characters. IOW, the call site is
>> consistent with the protocol definition, and the DestMax param should be
>> bumped to 61.
>>
>
> Thanks for spotting that.
>
>>> @@ -410,7 +410,7 @@ ArmFastbootPlatformOemCommand (
>>> {
>>> CHAR16 CommandUnicode[65];
>>>
>>> - AsciiStrToUnicodeStr (Command, CommandUnicode);
>>> + AsciiStrToUnicodeStrS (Command, CommandUnicode, 65);
>>>
>>> if (AsciiStrCmp (Command, "Demonstrate") == 0) {
>>> DEBUG ((EFI_D_ERROR, "ARM OEM Fastboot command 'Demonstrate' received.\n"));
>>>
>>
>> This is correct.
>>
>
> Thanks,
> Ard.
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-10-26 11:28 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-25 18:17 [PATCH 0/2] ArmPlatformPkg: remove deprecated string function calls Ard Biesheuvel
2016-10-25 18:17 ` [PATCH 1/2] ArmPlatformPkg/ArmVExpressFastBootDxe: eliminate deprecated string functions Ard Biesheuvel
2016-10-26 10:32 ` Laszlo Ersek
2016-10-26 10:34 ` Ard Biesheuvel
2016-10-26 11:28 ` Laszlo Ersek
2016-10-25 18:17 ` [PATCH 2/2] ArmPlatformPkg/BootMonFs: " Ard Biesheuvel
2016-10-26 11:26 ` Laszlo Ersek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox