]> git.proxmox.com Git - mirror_edk2.git/commitdiff
BaseTools: Fix crash in ECC when parsing incorrect header
authorSami Mujawar <sami.mujawar@arm.com>
Thu, 22 Oct 2020 08:42:51 +0000 (09:42 +0100)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Tue, 22 Dec 2020 01:26:10 +0000 (01:26 +0000)
The ECC tool crashes if a C file has an incorrect file header
format.

The file ArmPkg\Library\ArmMmuLib\AArch64\ArmMmuPeiLibConstructor.c
has a file header in the incorrect format. It uses # to mark the
header comments instead of enclosing the file header in /* */. This
may have been a result of an INF file header being copied to a C
file.

A separate patch fixes the C file but ECC tool should
not crash if a file with an incorrect header is found.

Therefore, update the ECC tool to prevent it from crashing if an
incorrect file header is found. With this change the ECC tool will
report the incorrect header issue without crashing.

Signed-off-by: Sami Mujawar <sami.mujawar@arm.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
BaseTools/Source/Python/Ecc/c.py

index a30122a45f81e79f00552c0d099bcc664fde06ed..db686df0db25145bba4634b1eef87440e1759bf1 100644 (file)
@@ -2,6 +2,7 @@
 # This file is used to be the c coding style checking of ECC tool\r
 #\r
 # Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>\r
+# Copyright (c) 2020, Arm Limited. All rights reserved.<BR>\r
 # SPDX-License-Identifier: BSD-2-Clause-Patent\r
 #\r
 \r
@@ -64,7 +65,9 @@ def GetIdType(Str):
     Type = DataClass.MODEL_UNKNOWN\r
     Str = Str.replace('#', '# ')\r
     List = Str.split()\r
-    if List[1] == 'include':\r
+    if len(List) < 2:\r
+        pass\r
+    elif List[1] == 'include':\r
         Type = DataClass.MODEL_IDENTIFIER_INCLUDE\r
     elif List[1] == 'define':\r
         Type = DataClass.MODEL_IDENTIFIER_MACRO_DEFINE\r