]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Ecc/Check.py
BaseTools/Ecc: Add some new checkpoints
[mirror_edk2.git] / BaseTools / Source / Python / Ecc / Check.py
index 5e5c8e72e4002369a36ac5786227b6402d5202d1..6803afdfddb6f694d18e7948b2e0a97a7c0399be 100644 (file)
@@ -1,7 +1,7 @@
 ## @file\r
 # This file is used to define checkpoints used by ECC tool\r
 #\r
-# Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>\r
+# Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>\r
 # This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution.  The full text of the license may be found at\r
 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 #\r
+from __future__ import absolute_import\r
 import Common.LongFilePathOs as os\r
 import re\r
 from CommonDataClass.DataClass import *\r
 import Common.DataType as DT\r
-from EccToolError import *\r
-from MetaDataParser import ParseHeaderCommentSection\r
-import EccGlobalData\r
-import c\r
+from .EccToolError import *\r
+from .MetaDataParser import ParseHeaderCommentSection\r
+from . import EccGlobalData\r
+from . import c\r
 from Common.LongFilePathSupport import OpenLongFilePath as open\r
 from Common.MultipleWorkspace import MultipleWorkspace as mws\r
 \r
@@ -41,6 +42,134 @@ class Check(object):
         self.DeclAndDataTypeCheck()\r
         self.FunctionLayoutCheck()\r
         self.NamingConventionCheck()\r
+        self.SmmCommParaCheck()\r
+\r
+    def SmmCommParaCheck(self):\r
+        self.SmmCommParaCheckBufferType()\r
+\r
+\r
+    # Check if SMM communication function has correct parameter type\r
+    # 1. Get function calling with instance./->Communicate() interface\r
+    # and make sure the protocol instance is of type EFI_SMM_COMMUNICATION_PROTOCOL.\r
+    # 2. Find the origin of the 2nd parameter of Communicate() interface, if -\r
+    #    a. it is a local buffer on stack\r
+    #       report error.\r
+    #    b. it is a global buffer, check the driver that holds the global buffer is of type DXE_RUNTIME_DRIVER\r
+    #       report success.\r
+    #    c. it is a buffer by AllocatePage/AllocatePool (may be wrapped by nested function calls),\r
+    #       check the EFI_MEMORY_TYPE to be EfiRuntimeServicesCode,EfiRuntimeServicesData,\r
+    #       EfiACPIMemoryNVS or EfiReservedMemoryType\r
+    #       report success.\r
+    #    d. it is a buffer located via EFI_SYSTEM_TABLE.ConfigurationTable (may be wrapped by nested function calls)\r
+    #       report warning to indicate human code review.\r
+    #    e. it is a buffer from other kind of pointers (may need to trace into nested function calls to locate),\r
+    #       repeat checks in a.b.c and d.\r
+    def SmmCommParaCheckBufferType(self):\r
+        if EccGlobalData.gConfig.SmmCommParaCheckBufferType == '1' or EccGlobalData.gConfig.SmmCommParaCheckAll == '1':\r
+            EdkLogger.quiet("Checking SMM communication parameter type ...")\r
+            # Get all EFI_SMM_COMMUNICATION_PROTOCOL interface\r
+            CommApiList = []\r
+            for IdentifierTable in EccGlobalData.gIdentifierTableList:\r
+                SqlCommand = """select ID, Name, BelongsToFile from %s\r
+                                where Modifier = 'EFI_SMM_COMMUNICATION_PROTOCOL*' """ % (IdentifierTable)\r
+                RecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)\r
+                if RecordSet:\r
+                    for Record in RecordSet:\r
+                        if Record[1] not in CommApiList:\r
+                            CommApiList.append(Record[1])\r
+            # For each interface, check the second parameter\r
+            for CommApi in CommApiList:\r
+                for IdentifierTable in EccGlobalData.gIdentifierTableList:\r
+                    SqlCommand = """select ID, Name, Value, BelongsToFile, StartLine from %s\r
+                    where Name = '%s->Communicate' and Model = %s""" \\r
+                    % (IdentifierTable, CommApi, MODEL_IDENTIFIER_FUNCTION_CALLING)\r
+                    RecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)\r
+                    if RecordSet:\r
+                        # print IdentifierTable\r
+                        for Record in RecordSet:\r
+                            # Get the second parameter for Communicate function\r
+                            SecondPara = Record[2].split(',')[1].strip()\r
+                            SecondParaIndex = None\r
+                            if SecondPara.startswith('&'):\r
+                                SecondPara = SecondPara[1:]\r
+                            if SecondPara.endswith(']'):\r
+                                SecondParaIndex = SecondPara[SecondPara.find('[') + 1:-1]\r
+                                SecondPara = SecondPara[:SecondPara.find('[')]\r
+                            # Get the ID\r
+                            Id = Record[0]\r
+                            # Get the BelongsToFile\r
+                            BelongsToFile = Record[3]\r
+                            # Get the source file path\r
+                            SqlCommand = """select FullPath from File where ID = %s""" % BelongsToFile\r
+                            NewRecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)\r
+                            FullPath = NewRecordSet[0][0]\r
+                            # Get the line no of function calling\r
+                            StartLine = Record[4]\r
+                            # Get the module type\r
+                            SqlCommand = """select Value3 from INF where BelongsToFile = (select ID from File\r
+                                            where Path = (select Path from File where ID = %s) and Model = 1011)\r
+                                            and Value2 = 'MODULE_TYPE'""" % BelongsToFile\r
+                            NewRecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)\r
+                            ModuleType = NewRecordSet[0][0] if NewRecordSet else None\r
+\r
+                            # print BelongsToFile, FullPath, StartLine, ModuleType, SecondPara\r
+\r
+                            Value = FindPara(FullPath, SecondPara, StartLine)\r
+                            # Find the value of the parameter\r
+                            if Value:\r
+                                if 'AllocatePage' in Value \\r
+                                    or 'AllocatePool' in Value \\r
+                                    or 'AllocateRuntimePool' in Value \\r
+                                    or 'AllocateZeroPool' in Value:\r
+                                    pass\r
+                                else:\r
+                                    if '->' in Value:\r
+                                        if not EccGlobalData.gException.IsException(\r
+                                               ERROR_SMM_COMM_PARA_CHECK_BUFFER_TYPE, Value):\r
+                                            EccGlobalData.gDb.TblReport.Insert(ERROR_SMM_COMM_PARA_CHECK_BUFFER_TYPE,\r
+                                                                               OtherMsg="Please review the buffer type"\r
+                                                                               + "is correct or not. If it is correct" +\r
+                                                                               " please add [%s] to exception list"\r
+                                                                               % Value,\r
+                                                                               BelongsToTable=IdentifierTable,\r
+                                                                               BelongsToItem=Id)\r
+                                    else:\r
+                                        if not EccGlobalData.gException.IsException(\r
+                                               ERROR_SMM_COMM_PARA_CHECK_BUFFER_TYPE, Value):\r
+                                            EccGlobalData.gDb.TblReport.Insert(ERROR_SMM_COMM_PARA_CHECK_BUFFER_TYPE,\r
+                                                                               OtherMsg="Please review the buffer type"\r
+                                                                               + "is correct or not. If it is correct" +\r
+                                                                               " please add [%s] to exception list"\r
+                                                                               % Value,\r
+                                                                               BelongsToTable=IdentifierTable,\r
+                                                                               BelongsToItem=Id)\r
+\r
+\r
+                            # Not find the value of the parameter\r
+                            else:\r
+                                SqlCommand = """select ID, Modifier, Name, Value, Model, BelongsToFunction from %s\r
+                                                where Name = '%s' and StartLine < %s order by StartLine DESC""" \\r
+                                                % (IdentifierTable, SecondPara, StartLine)\r
+                                NewRecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)\r
+                                if NewRecordSet:\r
+                                    Value = NewRecordSet[0][1]\r
+                                    if 'AllocatePage' in Value \\r
+                                        or 'AllocatePool' in Value \\r
+                                        or 'AllocateRuntimePool' in Value \\r
+                                        or 'AllocateZeroPool' in Value:\r
+                                        pass\r
+                                    else:\r
+                                        if not EccGlobalData.gException.IsException(\r
+                                            ERROR_SMM_COMM_PARA_CHECK_BUFFER_TYPE, Value):\r
+                                            EccGlobalData.gDb.TblReport.Insert(ERROR_SMM_COMM_PARA_CHECK_BUFFER_TYPE,\r
+                                                                               OtherMsg="Please review the buffer type"\r
+                                                                               + "is correct or not. If it is correct" +\r
+                                                                               " please add [%s] to exception list"\r
+                                                                               % Value,\r
+                                                                               BelongsToTable=IdentifierTable,\r
+                                                                               BelongsToItem=Id)\r
+                                else:\r
+                                    pass\r
 \r
     # Check UNI files\r
     def UniCheck(self):\r
@@ -59,6 +188,60 @@ class Check(object):
     def GeneralCheck(self):\r
         self.GeneralCheckNonAcsii()\r
         self.UniCheck()\r
+        self.GeneralCheckNoTab()\r
+        self.GeneralCheckLineEnding()\r
+        self.GeneralCheckTrailingWhiteSpaceLine()\r
+\r
+    # Check whether NO Tab is used, replaced with spaces\r
+    def GeneralCheckNoTab(self):\r
+        if EccGlobalData.gConfig.GeneralCheckNoTab == '1' or EccGlobalData.gConfig.GeneralCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
+            EdkLogger.quiet("Checking No TAB used in file ...")\r
+            SqlCommand = """select ID, FullPath, ExtName from File where ExtName in ('.dec', '.inf', '.dsc', 'c', 'h')"""\r
+            RecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)\r
+            for Record in RecordSet:\r
+                if Record[2].upper() not in EccGlobalData.gConfig.BinaryExtList:\r
+                    op = open(Record[1]).readlines()\r
+                    IndexOfLine = 0\r
+                    for Line in op:\r
+                        IndexOfLine += 1\r
+                        IndexOfChar = 0\r
+                        for Char in Line:\r
+                            IndexOfChar += 1\r
+                            if Char == '\t':\r
+                                OtherMsg = "File %s has TAB char at line %s column %s" % (Record[1], IndexOfLine, IndexOfChar)\r
+                                EccGlobalData.gDb.TblReport.Insert(ERROR_GENERAL_CHECK_NO_TAB, OtherMsg=OtherMsg, BelongsToTable='File', BelongsToItem=Record[0])\r
+\r
+    # Check Only use CRLF (Carriage Return Line Feed) line endings.\r
+    def GeneralCheckLineEnding(self):\r
+        if EccGlobalData.gConfig.GeneralCheckLineEnding == '1' or EccGlobalData.gConfig.GeneralCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
+            EdkLogger.quiet("Checking line ending in file ...")\r
+            SqlCommand = """select ID, FullPath, ExtName from File where ExtName in ('.dec', '.inf', '.dsc', 'c', 'h')"""\r
+            RecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)\r
+            for Record in RecordSet:\r
+                if Record[2].upper() not in EccGlobalData.gConfig.BinaryExtList:\r
+                    op = open(Record[1], 'rb').readlines()\r
+                    IndexOfLine = 0\r
+                    for Line in op:\r
+                        IndexOfLine += 1\r
+                        if not Line.endswith('\r\n'):\r
+                            OtherMsg = "File %s has invalid line ending at line %s" % (Record[1], IndexOfLine)\r
+                            EccGlobalData.gDb.TblReport.Insert(ERROR_GENERAL_CHECK_INVALID_LINE_ENDING, OtherMsg=OtherMsg, BelongsToTable='File', BelongsToItem=Record[0])\r
+\r
+    # Check if there is no trailing white space in one line.\r
+    def GeneralCheckTrailingWhiteSpaceLine(self):\r
+        if EccGlobalData.gConfig.GeneralCheckTrailingWhiteSpaceLine == '1' or EccGlobalData.gConfig.GeneralCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
+            EdkLogger.quiet("Checking trailing white space line in file ...")\r
+            SqlCommand = """select ID, FullPath, ExtName from File where ExtName in ('.dec', '.inf', '.dsc', 'c', 'h')"""\r
+            RecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)\r
+            for Record in RecordSet:\r
+                if Record[2].upper() not in EccGlobalData.gConfig.BinaryExtList:\r
+                    op = open(Record[1], 'rb').readlines()\r
+                    IndexOfLine = 0\r
+                    for Line in op:\r
+                        IndexOfLine += 1\r
+                        if Line.replace('\r', '').replace('\n', '').endswith(' '):\r
+                            OtherMsg = "File %s has trailing white spaces at line %s" % (Record[1], IndexOfLine)\r
+                            EccGlobalData.gDb.TblReport.Insert(ERROR_GENERAL_CHECK_TRAILING_WHITE_SPACE_LINE, OtherMsg=OtherMsg, BelongsToTable='File', BelongsToItem=Record[0])\r
 \r
     # Check whether file has non ACSII char\r
     def GeneralCheckNonAcsii(self):\r
@@ -435,17 +618,17 @@ class Check(object):
                         op = open(FullName).readlines()\r
                         FileLinesList = op\r
                         LineNo             = 0\r
-                        CurrentSection     = MODEL_UNKNOWN \r
+                        CurrentSection     = MODEL_UNKNOWN\r
                         HeaderSectionLines       = []\r
-                        HeaderCommentStart = False \r
+                        HeaderCommentStart = False\r
                         HeaderCommentEnd   = False\r
-                        \r
+\r
                         for Line in FileLinesList:\r
                             LineNo   = LineNo + 1\r
                             Line     = Line.strip()\r
                             if (LineNo < len(FileLinesList) - 1):\r
                                 NextLine = FileLinesList[LineNo].strip()\r
-            \r
+\r
                             #\r
                             # blank line\r
                             #\r
@@ -472,8 +655,8 @@ class Check(object):
                                     #\r
                                     HeaderSectionLines.append((Line, LineNo))\r
                                     HeaderCommentStart = True\r
-                                    continue        \r
-            \r
+                                    continue\r
+\r
                             #\r
                             # Collect Header content.\r
                             #\r
@@ -507,7 +690,7 @@ class Check(object):
                                 if EccGlobalData.gConfig.HeaderCheckFileCommentEnd == '1' or EccGlobalData.gConfig.HeaderCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
                                     EccGlobalData.gDb.TblReport.Insert(ERROR_DOXYGEN_CHECK_FILE_HEADER, Msg, "File", Result[0])\r
 \r
-                                     \r
+\r
 \r
     # Check whether the function headers are followed Doxygen special documentation blocks in section 2.3.5\r
     def DoxygenCheckFunctionHeader(self):\r
@@ -616,7 +799,7 @@ class Check(object):
                         if Item not in LibraryClasses[List[0]]:\r
                             LibraryClasses[List[0]].append(Item)\r
 \r
-                if Record[2] != 'BASE' and Record[2] not in SupModType:\r
+                if Record[2] != DT.SUP_MODULE_BASE and Record[2] not in SupModType:\r
                     EccGlobalData.gDb.TblReport.Insert(ERROR_META_DATA_FILE_CHECK_LIBRARY_INSTANCE_2, OtherMsg="The Library Class '%s' does not specify its supported module types" % (List[0]), BelongsToTable='Inf', BelongsToItem=Record[0])\r
 \r
             SqlCommand = """select A.ID, A.Value1, B.Value3 from Inf as A left join Inf as B\r
@@ -635,7 +818,7 @@ class Check(object):
 \r
             for Record in RecordSet:\r
                 if Record[1] in LibraryClasses:\r
-                    if Record[2] not in LibraryClasses[Record[1]] and 'BASE' not in RecordDict[Record[1]]:\r
+                    if Record[2] not in LibraryClasses[Record[1]] and DT.SUP_MODULE_BASE not in RecordDict[Record[1]]:\r
                         if not EccGlobalData.gException.IsException(ERROR_META_DATA_FILE_CHECK_LIBRARY_INSTANCE_1, Record[1]):\r
                             EccGlobalData.gDb.TblReport.Insert(ERROR_META_DATA_FILE_CHECK_LIBRARY_INSTANCE_1, OtherMsg="The type of Library Class [%s] defined in Inf file does not match the type of the module" % (Record[1]), BelongsToTable='Inf', BelongsToItem=Record[0])\r
                 else:\r
@@ -653,9 +836,13 @@ class Check(object):
                     continue\r
                 else:\r
                     LibraryIns = os.path.normpath(mws.join(EccGlobalData.gWorkspace, LibraryClass[2]))\r
+                    SkipDirString = '|'.join(EccGlobalData.gConfig.SkipDirList)\r
+                    p = re.compile(r'.*[\\/](?:%s^\S)[\\/]?.*' % SkipDirString)\r
+                    if p.match(os.path.split(LibraryIns)[0].upper()):\r
+                        continue\r
                     SqlCommand = """select Value3 from Inf where BelongsToFile =\r
                                     (select ID from File where lower(FullPath) = lower('%s'))\r
-                                    and Value2 = '%s'""" % (LibraryIns, 'LIBRARY_CLASS')\r
+                                    and Value2 = '%s'""" % (LibraryIns, DT.PLATFORM_COMPONENT_TYPE_LIBRARY_CLASS)\r
                     RecordSet = EccGlobalData.gDb.TblInf.Exec(SqlCommand)\r
                     IsFound = False\r
                     for Record in RecordSet:\r
@@ -684,8 +871,8 @@ class Check(object):
                     EccGlobalData.gDb.TblReport.Insert(ERROR_META_DATA_FILE_CHECK_LIBRARY_NO_USE, OtherMsg="The Library Class [%s] is not used in any platform" % (Record[1]), BelongsToTable='Inf', BelongsToItem=Record[0])\r
             SqlCommand = """\r
                          select A.ID, A.Value1, A.BelongsToFile, A.StartLine, B.StartLine from Dsc as A left join Dsc as B\r
-                         where A.Model = %s and B.Model = %s and A.Scope1 = B.Scope1 and A.Scope2 = B.Scope2 and A.ID <> B.ID\r
-                         and A.Value1 = B.Value1 and A.Value2 <> B.Value2 and A.BelongsToItem = -1 and B.BelongsToItem = -1 and A.StartLine <> B.StartLine and B.BelongsToFile = A.BelongsToFile""" \\r
+                         where A.Model = %s and B.Model = %s and A.Scope1 = B.Scope1 and A.Scope2 = B.Scope2 and A.ID != B.ID\r
+                         and A.Value1 = B.Value1 and A.Value2 != B.Value2 and A.BelongsToItem = -1 and B.BelongsToItem = -1 and A.StartLine != B.StartLine and B.BelongsToFile = A.BelongsToFile""" \\r
                             % (MODEL_EFI_LIBRARY_CLASS, MODEL_EFI_LIBRARY_CLASS)\r
             RecordSet = EccGlobalData.gDb.TblDsc.Exec(SqlCommand)\r
             for Record in RecordSet:\r
@@ -695,7 +882,7 @@ class Check(object):
                     for FilePath in FilePathList:\r
                         if not EccGlobalData.gException.IsException(ERROR_META_DATA_FILE_CHECK_LIBRARY_NAME_DUPLICATE, Record[1]):\r
                             EccGlobalData.gDb.TblReport.Insert(ERROR_META_DATA_FILE_CHECK_LIBRARY_NAME_DUPLICATE, OtherMsg="The Library Class [%s] is duplicated in '%s' line %s and line %s." % (Record[1], FilePath, Record[3], Record[4]), BelongsToTable='Dsc', BelongsToItem=Record[0])\r
-    \r
+\r
     # Check the header file in Include\Library directory whether be defined in the package DEC file.\r
     def MetaDataFileCheckLibraryDefinedInDec(self):\r
         if EccGlobalData.gConfig.MetaDataFileCheckLibraryDefinedInDec == '1' or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
@@ -710,9 +897,9 @@ class Check(object):
                 if not LibraryDec:\r
                     if not EccGlobalData.gException.IsException(ERROR_META_DATA_FILE_CHECK_LIBRARY_NOT_DEFINED, LibraryInInf):\r
                         EccGlobalData.gDb.TblReport.Insert(ERROR_META_DATA_FILE_CHECK_LIBRARY_NOT_DEFINED, \\r
-                                            OtherMsg="The Library Class [%s] in %s line is not defined in the associated package file." % (LibraryInInf, Line), \r
+                                            OtherMsg="The Library Class [%s] in %s line is not defined in the associated package file." % (LibraryInInf, Line),\r
                                             BelongsToTable='Inf', BelongsToItem=ID)\r
-    \r
+\r
     # Check whether an Inf file is specified in the FDF file, but not in the Dsc file, then the Inf file must be for a Binary module only\r
     def MetaDataFileCheckBinaryInfInFdf(self):\r
         if EccGlobalData.gConfig.MetaDataFileCheckBinaryInfInFdf == '1' or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
@@ -771,7 +958,7 @@ class Check(object):
                          and A.Value1 = B.Value1\r
                          and A.Value2 = B.Value2\r
                          and A.Scope1 = B.Scope1\r
-                         and A.ID <> B.ID\r
+                         and A.ID != B.ID\r
                          and A.Model = B.Model\r
                          and A.Enabled > -1\r
                          and B.Enabled > -1\r
@@ -923,7 +1110,7 @@ class Check(object):
             SqlCommand = """\r
                          select A.ID, A.Value3, A.BelongsToFile, B.BelongsToFile from %s as A, %s as B\r
                          where A.Value2 = 'FILE_GUID' and B.Value2 = 'FILE_GUID' and\r
-                         A.Value3 = B.Value3 and A.ID <> B.ID group by A.ID\r
+                         A.Value3 = B.Value3 and A.ID != B.ID group by A.ID\r
                          """ % (Table.Table, Table.Table)\r
             RecordSet = Table.Exec(SqlCommand)\r
             for Record in RecordSet:\r
@@ -937,7 +1124,7 @@ class Check(object):
 \r
     # Check Guid Format in module INF\r
     def MetaDataFileCheckModuleFileGuidFormat(self):\r
-        if EccGlobalData.gConfig.MetaDataFileCheckModuleFileGuidFormat or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
+        if EccGlobalData.gConfig.MetaDataFileCheckModuleFileGuidFormat == '1' or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
             EdkLogger.quiet("Check Guid Format in module INF ...")\r
             Table = EccGlobalData.gDb.TblInf\r
             SqlCommand = """\r
@@ -980,7 +1167,7 @@ class Check(object):
 \r
     # Check Protocol Format in module INF\r
     def MetaDataFileCheckModuleFileProtocolFormat(self):\r
-        if EccGlobalData.gConfig.MetaDataFileCheckModuleFileProtocolFormat or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
+        if EccGlobalData.gConfig.MetaDataFileCheckModuleFileProtocolFormat == '1' or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
             EdkLogger.quiet("Check Protocol Format in module INF ...")\r
             Table = EccGlobalData.gDb.TblInf\r
             SqlCommand = """\r
@@ -1011,7 +1198,7 @@ class Check(object):
 \r
     # Check Ppi Format in module INF\r
     def MetaDataFileCheckModuleFilePpiFormat(self):\r
-        if EccGlobalData.gConfig.MetaDataFileCheckModuleFilePpiFormat or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
+        if EccGlobalData.gConfig.MetaDataFileCheckModuleFilePpiFormat == '1' or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
             EdkLogger.quiet("Check Ppi Format in module INF ...")\r
             Table = EccGlobalData.gDb.TblInf\r
             SqlCommand = """\r
@@ -1039,7 +1226,7 @@ class Check(object):
 \r
     # Check Pcd Format in module INF\r
     def MetaDataFileCheckModuleFilePcdFormat(self):\r
-        if EccGlobalData.gConfig.MetaDataFileCheckModuleFilePcdFormat or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
+        if EccGlobalData.gConfig.MetaDataFileCheckModuleFilePcdFormat == '1' or EccGlobalData.gConfig.MetaDataFileCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
             EdkLogger.quiet("Check Pcd Format in module INF ...")\r
             Table = EccGlobalData.gDb.TblInf\r
             SqlCommand = """\r
@@ -1083,7 +1270,7 @@ class Check(object):
         SqlCommand = """\r
                      select A.ID, A.Value1 from %s as A, %s as B\r
                      where A.Model = %s and B.Model = %s\r
-                     and A.Value1 = B.Value1 and A.ID <> B.ID\r
+                     and A.Value1 like B.Value1 and A.ID != B.ID\r
                      and A.Scope1 = B.Scope1\r
                      and A.Enabled > -1\r
                      and B.Enabled > -1\r
@@ -1107,12 +1294,12 @@ class Check(object):
         SqlCommand = """\r
                      select A.ID, A.Value1, A.Value2 from %s as A, %s as B\r
                      where A.Model = %s and B.Model = %s\r
-                     and A.Value2 = B.Value2 and A.ID <> B.ID\r
-                     and A.Scope1 = B.Scope1 and A.Value1 <> B.Value1\r
+                     and A.Value2 like B.Value2 and A.ID != B.ID\r
+                     and A.Scope1 = B.Scope1 and A.Value1 != B.Value1\r
                      group by A.ID\r
                      """ % (Table.Table, Table.Table, Model, Model)\r
         RecordSet = Table.Exec(SqlCommand)\r
-        for Record in RecordSet:     \r
+        for Record in RecordSet:\r
             if not EccGlobalData.gException.IsException(ErrorID, Record[2]):\r
                 EccGlobalData.gDb.TblReport.Insert(ErrorID, OtherMsg="The %s value [%s] is used more than one time" % (Name.upper(), Record[2]), BelongsToTable=Table.Table, BelongsToItem=Record[0])\r
 \r
@@ -1135,9 +1322,10 @@ class Check(object):
                         FileTable = 'Identifier' + str(Id)\r
                         self.NamingConventionCheckDefineStatement(FileTable)\r
                         self.NamingConventionCheckTypedefStatement(FileTable)\r
-                        self.NamingConventionCheckIfndefStatement(FileTable)\r
                         self.NamingConventionCheckVariableName(FileTable)\r
                         self.NamingConventionCheckSingleCharacterVariable(FileTable)\r
+                        if os.path.splitext(F)[1] in ('.h'):\r
+                            self.NamingConventionCheckIfndefStatement(FileTable)\r
 \r
         self.NamingConventionCheckPathName()\r
         self.NamingConventionCheckFunctionName()\r
@@ -1166,7 +1354,7 @@ class Check(object):
             RecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)\r
             for Record in RecordSet:\r
                 Name = Record[1].strip()\r
-                if Name != '' and Name != None:\r
+                if Name != '' and Name is not None:\r
                     if Name[0] == '(':\r
                         Name = Name[1:Name.find(')')]\r
                     if Name.find('(') > -1:\r
@@ -1179,7 +1367,7 @@ class Check(object):
 \r
     # Check whether the #ifndef at the start of an include file uses both prefix and postfix underscore characters, '_'.\r
     def NamingConventionCheckIfndefStatement(self, FileTable):\r
-        if EccGlobalData.gConfig.NamingConventionCheckTypedefStatement == '1' or EccGlobalData.gConfig.NamingConventionCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
+        if EccGlobalData.gConfig.NamingConventionCheckIfndefStatement == '1' or EccGlobalData.gConfig.NamingConventionCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':\r
             EdkLogger.quiet("Checking naming covention of #ifndef statement ...")\r
 \r
             SqlCommand = """select ID, Value from %s where Model = %s""" % (FileTable, MODEL_IDENTIFIER_MACRO_IFNDEF)\r
@@ -1256,6 +1444,19 @@ class Check(object):
                     if not EccGlobalData.gException.IsException(ERROR_NAMING_CONVENTION_CHECK_SINGLE_CHARACTER_VARIABLE, Record[1]):\r
                         EccGlobalData.gDb.TblReport.Insert(ERROR_NAMING_CONVENTION_CHECK_SINGLE_CHARACTER_VARIABLE, OtherMsg="The variable name [%s] does not follow the rules" % (Record[1]), BelongsToTable=FileTable, BelongsToItem=Record[0])\r
 \r
+def FindPara(FilePath, Para, CallingLine):\r
+    Lines = open(FilePath).readlines()\r
+    Line = ''\r
+    for Index in range(CallingLine - 1, 0, -1):\r
+        # Find the nearest statement for Para\r
+        Line = Lines[Index].strip()\r
+        if Line.startswith('%s = ' % Para):\r
+            Line = Line.strip()\r
+            return Line\r
+            break\r
+\r
+    return ''\r
+\r
 ##\r
 #\r
 # This acts like the main() function for the script, unless it is 'import'ed into another\r