From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 9D6ED7803D7 for ; Tue, 26 Sep 2023 19:22:03 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=Fl4eS4h/l4kqDClLpIWexrMvULRo/JMZtzQ64sljKxA=; c=relaxed/simple; d=groups.io; h=DKIM-Filter:From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1695756122; v=1; b=VZElFFaaLwEY2qo4LToN4J7sw8xHBd4nOBD9PzaU65cjEAbEDB9t3Kcltt7BtAzFfDJC+fDK WE3F4XKQMzJFKJUlW2z2HDXsh8ZZv9TBSErLNywtMW+Ixybcgq3desyufxVeFdQfKEOKuxyxxnb CQHsZeHHGgEfBhg6BnaDc96g= X-Received: by 127.0.0.2 with SMTP id NF9VYY7687511xbHV8t0blrK; Tue, 26 Sep 2023 12:22:02 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web11.7.1695756120616517279 for ; Tue, 26 Sep 2023 12:22:00 -0700 X-Received: from localhost.localdomain (unknown [47.201.241.95]) by linux.microsoft.com (Postfix) with ESMTPSA id 2E9F920B74C0; Tue, 26 Sep 2023 12:21:59 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 2E9F920B74C0 From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Bob Feng , Liming Gao , Michael D Kinney , Rebecca Cran , Sean Brogan , Yuwei Chen Subject: [edk2-devel] [PATCH v1 2/5] BaseTools/Plugin/CodeQL: Add CodeQL build plugin Date: Tue, 26 Sep 2023 15:21:11 -0400 Message-ID: <20230926192114.416-3-mikuback@linux.microsoft.com> In-Reply-To: <20230926192114.416-1-mikuback@linux.microsoft.com> References: <20230926192114.416-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: vL1gX6CH353jzP8iESTDCy0Mx7686176AA= Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=VZElFFaa; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=linux.microsoft.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io From: Michael Kubacki Adds a CodeQL plugin that supports CodeQL in the build system. 1. CodeQlBuildPlugin - Generates a CodeQL database for a given build. 2. CodeQlAnalyzePlugin - Analyzes a CodeQL database and interprets results. 3. External dependencies - Assist with downloading the CodeQL CLI and making it available to the CodeQL plugins. 4. CodeQlQueries.qls - A C/C++ CodeQL query set run against the code. 5. Readme.md - A comprehensive readme file to help: - Platform integrators understand how to configure the plugin - Developers understand how to modify the plugin - Users understand how to use the plugin Read Readme.md for additional details. Cc: Bob Feng Cc: Liming Gao Cc: Michael D Kinney Cc: Rebecca Cran Cc: Sean Brogan Cc: Yuwei Chen Signed-off-by: Michael Kubacki --- BaseTools/Plugin/CodeQL/CodeQlAnalyzePlugin.py | 222 +++++++++++= + BaseTools/Plugin/CodeQL/CodeQlAnalyze_plug_in.yaml | 13 + BaseTools/Plugin/CodeQL/CodeQlBuildPlugin.py | 172 +++++++++ BaseTools/Plugin/CodeQL/CodeQlBuild_plug_in.yaml | 13 + BaseTools/Plugin/CodeQL/CodeQlQueries.qls | 75 ++++ BaseTools/Plugin/CodeQL/Readme.md | 375 +++++++++++= +++++++++ BaseTools/Plugin/CodeQL/analyze/__init__.py | 0 BaseTools/Plugin/CodeQL/analyze/analyze_filter.py | 176 +++++++++ BaseTools/Plugin/CodeQL/analyze/globber.py | 132 +++++++ BaseTools/Plugin/CodeQL/codeqlcli_ext_dep.yaml | 26 ++ BaseTools/Plugin/CodeQL/codeqlcli_linux_ext_dep.yaml | 24 ++ BaseTools/Plugin/CodeQL/codeqlcli_windows_ext_dep.yaml | 24 ++ BaseTools/Plugin/CodeQL/common/__init__.py | 0 BaseTools/Plugin/CodeQL/common/codeql_plugin.py | 74 ++++ 14 files changed, 1326 insertions(+) diff --git a/BaseTools/Plugin/CodeQL/CodeQlAnalyzePlugin.py b/BaseTools/P= lugin/CodeQL/CodeQlAnalyzePlugin.py new file mode 100644 index 000000000000..199b0ad478ed --- /dev/null +++ b/BaseTools/Plugin/CodeQL/CodeQlAnalyzePlugin.py @@ -0,0 +1,222 @@ +# @file CodeQAnalyzePlugin.py +# +# A build plugin that analyzes a CodeQL database. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +import json +import logging +import os +import yaml + +from analyze import analyze_filter +from common import codeql_plugin + +from edk2toolext import edk2_logging +from edk2toolext.environment.plugintypes.uefi_build_plugin import \ + IUefiBuildPlugin +from edk2toolext.environment.uefi_build import UefiBuilder +from edk2toollib.uefi.edk2.path_utilities import Edk2Path +from edk2toollib.utility_functions import RunCmd +from pathlib import Path + + +class CodeQlAnalyzePlugin(IUefiBuildPlugin): + + def do_post_build(self, builder: UefiBuilder) -> int: + """CodeQL analysis post-build functionality. + + Args: + builder (UefiBuilder): A UEFI builder object for this build. + + Returns: + int: The number of CodeQL errors found. Zero indicates that + AuditOnly mode is enabled or no failures were found. + """ + + pp =3D builder.pp.split(os.pathsep) + edk2_path =3D Edk2Path(builder.ws, pp) + + self.builder =3D builder + self.package =3D edk2_path.GetContainingPackage( + builder.mws.join(builder.ws, + builder.env.GetValue( + "ACTIVE_PLATFORM"))) + self.package_path =3D Path( + edk2_path.GetAbsolutePathOnThisSystemFromEdk2RelativePath( + self.package)) + self.target =3D builder.env.GetValue("TARGET") + + self.codeql_db_path =3D codeql_plugin.get_codeql_db_path( + builder.ws, self.package, self.target, + new_path=3DFalse) + + self.codeql_path =3D codeql_plugin.get_codeql_cli_path() + if not self.codeql_path: + logging.critical("CodeQL build enabled but CodeQL CLI applic= ation " + "not found.") + return -1 + + codeql_sarif_dir_path =3D self.codeql_db_path[ + :self.codeql_db_path.rindex('-')= ] + codeql_sarif_dir_path =3D codeql_sarif_dir_path.replace( + "-db-", "-analysis-") + self.codeql_sarif_path =3D os.path.join( + codeql_sarif_dir_path, + (os.path.basename( + self.codeql_db_path) + + ".sarif")) + + edk2_logging.log_progress(f"Analyzing {self.package} ({self.targ= et}) " + f"CodeQL database at:\n" + f" {self.codeql_db_path}") + edk2_logging.log_progress(f"Results will be written to:\n" + f" {self.codeql_sarif_path}"= ) + + # Packages are allowed to specify package-specific query specifi= ers + # in the package CI YAML file that override the global query spe= cifier. + audit_only =3D False + query_specifiers =3D None + package_config_file =3D Path(os.path.join( + self.package_path, self.package + ".ci.y= aml")) + plugin_data =3D None + if package_config_file.is_file(): + with open(package_config_file, 'r') as cf: + package_config_file_data =3D yaml.safe_load(cf) + if "CodeQlAnalyze" in package_config_file_data: + plugin_data =3D package_config_file_data["CodeQlAnal= yze"] + if "AuditOnly" in plugin_data: + audit_only =3D plugin_data["AuditOnly"] + if "QuerySpecifiers" in plugin_data: + logging.debug(f"Loading CodeQL query specifiers = in " + f"{str(package_config_file)}") + query_specifiers =3D plugin_data["QuerySpecifier= s"] + + global_audit_only =3D builder.env.GetValue("STUART_CODEQL_AUDIT_= ONLY") + if global_audit_only: + if global_audit_only.strip().lower() =3D=3D "true": + audit_only =3D True + + if audit_only: + logging.info(f"CodeQL Analyze plugin is in audit only mode f= or " + f"{self.package} ({self.target}).") + + # Builds can override the query specifiers defined in this plugi= n + # by setting the value in the STUART_CODEQL_QUERY_SPECIFIERS + # environment variable. + if not query_specifiers: + query_specifiers =3D builder.env.GetValue( + "STUART_CODEQL_QUERY_SPECIFIERS") + + # Use this plugins query set file as the default fallback if it = is + # not overridden. It is possible the file is not present if modi= fied + # locally. In that case, skip the plugin. + plugin_query_set =3D Path(Path(__file__).parent, "CodeQlQueries.= qls") + + if not query_specifiers and plugin_query_set.is_file(): + query_specifiers =3D str(plugin_query_set.resolve()) + + if not query_specifiers: + logging.warning("Skipping CodeQL analysis since no CodeQL qu= ery " + "specifiers were provided.") + return 0 + + codeql_params =3D (f'database analyze {self.codeql_db_path} ' + f'{query_specifiers} --format=3Dsarifv2.1.0 ' + f'--output=3D{self.codeql_sarif_path} --downloa= d ' + f'--threads=3D0') + + # CodeQL requires the sarif file parent directory to exist alrea= dy. + Path(self.codeql_sarif_path).parent.mkdir(exist_ok=3DTrue, paren= ts=3DTrue) + + cmd_ret =3D RunCmd(self.codeql_path, codeql_params) + if cmd_ret !=3D 0: + logging.critical(f"CodeQL CLI analysis failed with return co= de " + f"{cmd_ret}.") + + if not os.path.isfile(self.codeql_sarif_path): + logging.critical(f"The sarif file {self.codeql_sarif_path} w= as " + f"not created. Analysis cannot continue.") + return -1 + + filter_pattern_data =3D [] + global_filter_file_value =3D builder.env.GetValue( + "STUART_CODEQL_FILTER_FILES") + if global_filter_file_value: + global_filter_files =3D global_filter_file_value.strip().spl= it(',') + global_filter_files =3D [Path(f) for f in global_filter_file= s] + + for global_filter_file in global_filter_files: + if global_filter_file.is_file(): + with open(global_filter_file, 'r') as ff: + global_filter_file_data =3D yaml.safe_load(ff) + if "Filters" in global_filter_file_data: + current_pattern_data =3D \ + global_filter_file_data["Filters"] + if type(current_pattern_data) is not list: + logging.critical( + f"CodeQL pattern data must be a list= of " + f"strings. Data in " + f"{str(global_filter_file.resolve())= } is " + f"invalid. CodeQL analysis is incomp= lete.") + return -1 + filter_pattern_data +=3D current_pattern_dat= a + else: + logging.critical( + f"CodeQL global filter file " + f"{str(global_filter_file.resolve())} is= " + f"malformed. Missing Filters section. Co= deQL " + f"analysis is incomplete.") + return -1 + else: + logging.critical( + f"CodeQL global filter file " + f"{str(global_filter_file.resolve())} was not fo= und. " + f"CodeQL analysis is incomplete.") + return -1 + + if plugin_data and "Filters" in plugin_data: + if type(plugin_data["Filters"]) is not list: + logging.critical( + "CodeQL pattern data must be a list of strings. " + "CodeQL analysis is incomplete.") + return -1 + filter_pattern_data.extend(plugin_data["Filters"]) + + if filter_pattern_data: + logging.info("Applying CodeQL SARIF result filters.") + analyze_filter.filter_sarif( + self.codeql_sarif_path, + self.codeql_sarif_path, + filter_pattern_data, + split_lines=3DFalse) + + with open(self.codeql_sarif_path, 'r') as sf: + sarif_file_data =3D json.load(sf) + + try: + # Perform minimal JSON parsing to find the number of errors. + total_errors =3D 0 + for run in sarif_file_data['runs']: + total_errors +=3D len(run['results']) + except KeyError: + logging.critical("Sarif file does not contain expected data.= " + "Analysis cannot continue.") + return -1 + + if total_errors > 0: + if audit_only: + # Show a warning message so CodeQL analysis is not forgo= tten. + # If the repo owners truly do not want to fix CodeQL iss= ues, + # analysis should be disabled entirely. + logging.warning(f"{self.package} ({self.target}) CodeQL = " + f"analysis ignored {total_errors} errors= due " + f"to audit mode being enabled.") + return 0 + else: + logging.error(f"{self.package} ({self.target}) CodeQL " + f"analysis failed with {total_errors} erro= rs.") + + return total_errors diff --git a/BaseTools/Plugin/CodeQL/CodeQlAnalyze_plug_in.yaml b/BaseToo= ls/Plugin/CodeQL/CodeQlAnalyze_plug_in.yaml new file mode 100644 index 000000000000..ec01e55c53aa --- /dev/null +++ b/BaseTools/Plugin/CodeQL/CodeQlAnalyze_plug_in.yaml @@ -0,0 +1,13 @@ +## @file CodeQlAnalyze_plug_in.py +# +# Build plugin used to analyze CodeQL results. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +{ + "scope": "codeql-analyze", + "name": "CodeQL Analyze Plugin", + "module": "CodeQlAnalyzePlugin" +} diff --git a/BaseTools/Plugin/CodeQL/CodeQlBuildPlugin.py b/BaseTools/Plu= gin/CodeQL/CodeQlBuildPlugin.py new file mode 100644 index 000000000000..2fbf554f8fa4 --- /dev/null +++ b/BaseTools/Plugin/CodeQL/CodeQlBuildPlugin.py @@ -0,0 +1,172 @@ +# @file CodeQlBuildPlugin.py +# +# A build plugin that produces CodeQL results for the present build. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +import glob +import logging +import os +import stat +from common import codeql_plugin +from pathlib import Path + +from edk2toolext import edk2_logging +from edk2toolext.environment.plugintypes.uefi_build_plugin import \ + IUefiBuildPlugin +from edk2toolext.environment.uefi_build import UefiBuilder +from edk2toollib.uefi.edk2.path_utilities import Edk2Path +from edk2toollib.utility_functions import GetHostInfo, RemoveTree + + +class CodeQlBuildPlugin(IUefiBuildPlugin): + + def do_pre_build(self, builder: UefiBuilder) -> int: + """CodeQL pre-build functionality. + + Args: + builder (UefiBuilder): A UEFI builder object for this build. + + Returns: + int: The plugin return code. Zero indicates the plugin ran + successfully. A non-zero value indicates an unexpected error + occurred during plugin execution. + """ + + if not builder.SkipBuild: + pp =3D builder.pp.split(os.pathsep) + edk2_path =3D Edk2Path(builder.ws, pp) + + self.builder =3D builder + self.package =3D edk2_path.GetContainingPackage( + builder.mws.join(builder.ws, + builder.env.GetValue( + "ACTIVE_PLATFORM"))) + self.target =3D builder.env.GetValue("TARGET") + + self.build_output_dir =3D builder.env.GetValue("BUILD_OUTPUT= _BASE") + + self.codeql_db_path =3D codeql_plugin.get_codeql_db_path( + builder.ws, self.package, self.targe= t) + + edk2_logging.log_progress(f"{self.package} will be built for= CodeQL") + edk2_logging.log_progress(f" CodeQL database will be writte= n to " + f"{self.codeql_db_path}") + + self.codeql_path =3D codeql_plugin.get_codeql_cli_path() + if not self.codeql_path: + logging.critical("CodeQL build enabled but CodeQL CLI ap= plication " + "not found.") + return -1 + + # CodeQL can only generate a database on clean build + # + # Note: builder.CleanTree() cannot be used here as some plat= forms + # have build steps that run before this plugin that st= ore + # files in the build output directory. + # + # CodeQL does not care about with those files or many = others such + # as the FV directory, build logs, etc. so instead foc= us on + # removing only the directories with compilation/linke= r output + # for the architectures being built (that need clean r= uns for + # CodeQL to work). + targets =3D self.builder.env.GetValue("TARGET_ARCH").split("= ") + for target in targets: + directory_to_delete =3D Path(self.build_output_dir, targ= et) + + if directory_to_delete.is_dir(): + logging.debug(f"Removing {str(directory_to_delete)} = to have a " + f"clean build for CodeQL.") + RemoveTree(str(directory_to_delete)) + + # CodeQL CLI does not handle spaces passed in CLI commands w= ell + # (perhaps at all) as discussed here: + # 1. https://github.com/github/codeql-cli-binaries/issues/= 73 + # 2. https://github.com/github/codeql/issues/4910 + # + # Since it's unclear how quotes are handled and may change i= n the + # future, this code is going to use the workaround to place = the + # command in an executable file that is instead passed to Co= deQL. + self.codeql_cmd_path =3D Path(builder.mws.join( + builder.ws, self.build_output_di= r, + "codeql_build_command")) + + build_params =3D self._get_build_params() + + codeql_build_cmd =3D "" + if GetHostInfo().os =3D=3D "Windows": + self.codeql_cmd_path =3D self.codeql_cmd_path.parent / ( + self.codeql_cmd_path.name + '.bat') + elif GetHostInfo().os =3D=3D "Linux": + self.codeql_cmd_path =3D self.codeql_cmd_path.parent / ( + self.codeql_cmd_path.name + '.sh') + codeql_build_cmd +=3D f"#!/bin/bash{os.linesep * 2}" + codeql_build_cmd +=3D "build " + build_params + + self.codeql_cmd_path.parent.mkdir(exist_ok=3DTrue, parents=3D= True) + self.codeql_cmd_path.write_text(encoding=3D'utf8', data=3Dco= deql_build_cmd) + + if GetHostInfo().os =3D=3D "Linux": + os.chmod(self.codeql_cmd_path, + os.stat(self.codeql_cmd_path).st_mode | stat.S_I= EXEC) + for f in glob.glob(os.path.join( + os.path.dirname(self.codeql_path), '**/*'), recursiv= e=3DTrue): + os.chmod(f, os.stat(f).st_mode | stat.S_IEXEC) + + codeql_params =3D (f'database create {self.codeql_db_path} ' + f'--language=3Dcpp ' + f'--source-root=3D{builder.ws} ' + f'--command=3D{self.codeql_cmd_path}') + + # Set environment variables so the CodeQL build command is p= icked up + # as the active build command. + # + # Note: Requires recent changes in edk2-pytool-extensions (0= .20.0) + # to support reading these variables. + builder.env.SetValue( + "EDK_BUILD_CMD", self.codeql_path, "Set in CodeQL Build = Plugin") + builder.env.SetValue( + "EDK_BUILD_PARAMS", codeql_params, "Set in CodeQL Build = Plugin") + + return 0 + + def _get_build_params(self) -> str: + """Returns the build command parameters for this build. + + Based on the well-defined `build` command-line parameters. + + Returns: + str: A string representing the parameters for the build comm= and. + """ + build_params =3D f"-p {self.builder.env.GetValue('ACTIVE_PLATFOR= M')}" + build_params +=3D f" -b {self.target}" + build_params +=3D f" -t {self.builder.env.GetValue('TOOL_CHAIN_T= AG')}" + + max_threads =3D self.builder.env.GetValue('MAX_CONCURRENT_THREAD= _NUMBER') + if max_threads is not None: + build_params +=3D f" -n {max_threads}" + + rt =3D self.builder.env.GetValue("TARGET_ARCH").split(" ") + for t in rt: + build_params +=3D " -a " + t + + if (self.builder.env.GetValue("BUILDREPORTING") =3D=3D "TRUE"): + build_params +=3D (" -y " + + self.builder.env.GetValue("BUILDREPORT_FILE= ")) + rt =3D self.builder.env.GetValue("BUILDREPORT_TYPES").split(= " ") + for t in rt: + build_params +=3D " -Y " + t + + # add special processing to handle building a single module + mod =3D self.builder.env.GetValue("BUILDMODULE") + if (mod is not None and len(mod.strip()) > 0): + build_params +=3D " -m " + mod + edk2_logging.log_progress("Single Module Build: " + mod) + + build_vars =3D self.builder.env.GetAllBuildKeyValues(self.target= ) + for key, value in build_vars.items(): + build_params +=3D " -D " + key + "=3D" + value + + return build_params diff --git a/BaseTools/Plugin/CodeQL/CodeQlBuild_plug_in.yaml b/BaseTools= /Plugin/CodeQL/CodeQlBuild_plug_in.yaml new file mode 100644 index 000000000000..13baa58d0cdf --- /dev/null +++ b/BaseTools/Plugin/CodeQL/CodeQlBuild_plug_in.yaml @@ -0,0 +1,13 @@ +## @file CodeQlBuild_plug_in.py +# +# Build plugin used to produce a CodeQL database from a build. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +{ + "scope": "codeql-build", + "name": "CodeQL Build Plugin", + "module": "CodeQlBuildPlugin" +} diff --git a/BaseTools/Plugin/CodeQL/CodeQlQueries.qls b/BaseTools/Plugin= /CodeQL/CodeQlQueries.qls new file mode 100644 index 000000000000..3f97bcd583d5 --- /dev/null +++ b/BaseTools/Plugin/CodeQL/CodeQlQueries.qls @@ -0,0 +1,75 @@ +--- +- description: C++ queries + +- queries: '.' + from: codeql/cpp-queries + +########################################################################= ################## +# Queries +########################################################################= ################## + +## Enable When Time is Available to Fix Issues +# Hundreds of issues. Most appear valid. Type: Recommendation. +#- include: +# id: cpp/missing-null-test + +## Errors +- include: + id: cpp/overrunning-write +- include: + id: cpp/overrunning-write-with-float +- include: + id: cpp/pointer-overflow-check +- include: + id: cpp/very-likely-overrunning-write + +## Warnings +- include: + id: cpp/conditionallyuninitializedvariable +- include: + id: cpp/infinite-loop-with-unsatisfiable-exit-condition +- include: + id: cpp/overflow-buffer + +# Note: Some queries above are not active by default with the below filt= er. +# Update the filter and run the queries again to get all results. +- include: + tags: + - "security" + - "correctness" + severity: + - "error" + - "warning" + - "recommendation" + +# Specifically hide the results of these. +# +# The following rules have been evaluated and explicitly not included fo= r the following reasons: +# - `cpp/allocation-too-small` - Appears to be hardcoded for C standar= d library functions `malloc`, `calloc`, +# `realloc`, so it consumes time without much value with custom allo= cation functions in the codebase. +# - `cpp/commented-out-code` - Triggers often. Needs further review. +# - `cpp/duplicate-include-guard` - The EntryPoint.h files incl= udes a common include guard value +# `__MODULE_ENTRY_POINT_H__`. This was the only occurrence found. So= not very useful. +# - `cpp/invalid-pointer-deref` - Very limited results with what appea= r to be false positives. +# - `cpp/use-of-goto` - Goto is valid and allowed in the codebase. +# - `cpp/useless-expression` - Triggers too often on cases where a NUL= L lib implementation is provided for a function. +# Because the implementation simply returns, the check considers it = useless. +# - `cpp/weak-crypto/*` - Crypto algorithms are tracked outside CodeQL= . +- exclude: + id: cpp/allocation-too-small +- exclude: + id: cpp/commented-out-code +- exclude: + id: cpp/duplicate-include-guard +- exclude: + id: cpp/invalid-pointer-deref +- exclude: + id: cpp/use-of-goto +- exclude: + id: cpp/useless-expression +- exclude: + id: cpp/weak-crypto/banned-hash-algorithms +- exclude: + id: cpp/weak-crypto/capi/banned-modes +- exclude: + id: cpp/weak-crypto/openssl/banned-hash-algorithms diff --git a/BaseTools/Plugin/CodeQL/Readme.md b/BaseTools/Plugin/CodeQL/= Readme.md new file mode 100644 index 000000000000..2f405782ca9c --- /dev/null +++ b/BaseTools/Plugin/CodeQL/Readme.md @@ -0,0 +1,375 @@ +# CodeQL Plugin + +The set of CodeQL plugins provided include two main plugins that seamles= sly integrate into a Stuart build environment: + +1. `CodeQlBuildPlugin` - Used to produce a CodeQL database from a build. +2. `CodeQlAnalyzePlugin` - Used to analyze a CodeQL database. + +While CodeQL can be run in a CI environment with other approaches. This = plugin offers the following advantages: + +1. Provides exactly the same results locally as on a CI server. +2. Integrates very well into VS Code. +3. Very simple to use - just use normal Stuart update and build commands= . +4. Very simple to understand - minimally wraps the official CodeQL CLI. +5. Very simple to integrate - works like any other Stuart build plugin. + - Integration is usually just a few lines of code. +6. Portable - not tied to Azure DevOps specific, GitHub specific, or oth= er host infrastructure. +7. Versioned - the query and filters are versioned in source control so = easy to find and track. + +It is very important to read the Integration Instructions in this file a= nd determine how to best integrate the +CodeQL plugin into your environment. + +Due to the total size of dependencies required to run CodeQL and the fle= xibility needed by a platform to determine what +CodeQL queries to run and how to interpret results, a number of configur= ation options are provided to allow a high +degree of flexibility during platform integration. + +This document is focused on those setting up the CodeQL plugin in their = environment. Once setup, end users simply need +to use their normal build commands and process and CodeQL will be integr= ated with it. The most relevant section for +such users is [Local Development Tips](#local-development-tips). + +## Table of Contents + +1. [Database and Analysis Result Locations](#database-and-analysis-resul= t-locations) +2. [Global Configuration](#global-configuration) +3. [Package-Specific Configuration](#package-specific-configuration) +4. [Filter Patterns](#filter-patterns) +5. [Integration Instructions](#integration-instructions) + - [Integration Step 1 - Choose Scopes](#integration-step-1---choose-s= copes) + - [Scopes Available](#scopes-available) + - [Integration Step 2 - Choose CodeQL Queries](#integration-step-2---= choose-codeql-queries) + - [Integration Step 3 - Determine Global Configuration Values](#integ= ration-step-3---determine-global-configuration-values) + - [Integration Step 4 - Determine Package-Specific Configuration Valu= es](#integration-step-4---determine-package-specific-configuration-values= ) + - [Integration Step 5 - Testing](#integration-step-5---testing) + - [Integration Step 6 - Define Inclusion and Exclusion Filter Pattern= s](#integration-step-6---define-inclusion-and-exclusion-filter-patterns) +6. [High-Level Operation](#high-level-operation) + - [CodeQlBuildPlugin](#codeqlbuildplugin) + - [CodeQlAnalyzePlugin](#codeqlanalyzeplugin) +7. [Local Development Tips](#local-development-tips) + +## Database and Analysis Result Locations + +The CodeQL database is written to a directory unique to the package and = target being built: + + `Build/codeql-db---` + +For example: `Build/codeql-db-mdemodulepkg-debug-0` + +The plugin does not delete or overwrite existing databases, the instance= value is simply increased. This is +because databases are large, take a long time to generate, and are impor= tant for reproducing analysis results. The user +is responsible for deleting database directories when they are no longer= needed. + +Similarly, analysis results are written to a directory unique to the pac= kage and target. For analysis, results are +stored in individual files so those files are stored in a single directo= ry. + +For example, all analysis results for the above package and target will = be stored in: + `codeql-analysis-mdemodulepkg-debug` + +CodeQL results are stored in [SARIF](https://sarifweb.azurewebsites.net/= ) (Static Analysis Results Interchange Format) +([CodeQL SARIF documentation](https://codeql.github.com/docs/codeql-cli/= sarif-output/)) files. Each SARIF file +corresponding to a database will be stored in a file with an instance ma= tching the database instance. + +For example, the analysis result file for the above database would be st= ored in this file: + `codeql-analysis-mdemodulepkg-debug/codeql-db-mdemodulepkg-debug-0.sar= if` + +Result files are overwritten. This is because result files are quick to = generate and need to represent the latest +results for the last analysis operation performed. The user is responsib= le for backing up SARIF result files if they +need to saved. + +## Global Configuration + +Global configuration values are specified with build environment variabl= es. + +These values are all optional. They provide a convenient mechanism for a= build script to set the value for all packages +built by the script. + +- `STUART_CODEQL_AUDIT_ONLY` - If `true` (case insensitive), `CodeQlAnal= yzePlugin` will be in audit-only mode. In this + mode all CodeQL failures are ignored. +- `STUART_CODEQL_PATH` - The path to the CodeQL CLI application to use. +- `STUART_CODEQL_QUERY_SPECIFIERS` - The CodeQL CLI query specifiers to = use. See [Running codeql database analyze](https://codeql.github.com/docs= /codeql-cli/analyzing-databases-with-the-codeql-cli/#running-codeql-datab= ase-analyze) + for possible options. +- `STUART_CODEQL_FILTER_FILES` - The path to "filter" files that contain= s filter patterns as described in + [Filter Patterns](#filter-patterns). + - More than one file may be specified by separating each absolute file= path with a comma. + - This might be useful to reference a global filter file from an ups= tream repo and also include a global filter + file for the local repo. + - Filters are concatenated in the order of files in the variable. Pa= tterns in later files can override patterns + in earlier files. + - The file only needs to contain a list of filter pattern strings unde= r a `"Filters"` key. For example: + + ```yaml + { + "Filters": [ + "", + "" + ] + } + ... + ``` + + Comments are allowed in the filter files and begin with `#` (like a = normal YAML file). + +## Package-Specific Configuration + +Package-specific configuration values reuse existing package-level confi= guration approaches to simplify adjusting +CodeQL plugin behavior per package. + +These values are all optional. They provide a convenient mechanism for a= package owner to adjust settings specific to +the package. + +``` yaml + "CodeQlAnalyze": { + "AuditOnly": False, # Don't fail the build if there are er= rors. Just log them. + "QuerySpecifiers": "" # Query specifiers to pass to CodeQL C= LI. + "Filters": "" # Inclusion/exclusion filters + } +``` + +> _NOTE:_ If a global filter set is provided via `STUART_CODEQL_FILTER_F= ILES` and a package has a package-specific +> list, then the package-specific filter list (in a package CI YAML file= ) is appended onto the global filter list and +> may be used to override settings in the global list. + +The format used to specify items in `"Filters"` is specified in [Filter = Patterns](#filter-patterns). + +## Filter Patterns + +As you inspect results, you may want to include or exclude certain sets = of results. For example, exclude some files by +file path entirely or adjust the CodeQL rule applied to a certain file. = This plugin reuses logic from a popular +GitHub Action called [`filter-sarif`](https://github.com/advanced-securi= ty/filter-sarif) to allow filtering as part of +the plugin analysis process. + +If any results are excluded using filters, the results are removed from = the SARIF file. This allows the exclude results +seen locally to exactly match the results on the CI server. + +Read the ["Patterns"](https://github.com/advanced-security/filter-sarif#= patterns) section there for more details. The +patterns section is also copied below with some updates to make the info= rmation more relevant for an edk2 codebase +for convenience. + +Each pattern line is of the form: + +```plaintext +[+/-][:] +``` + +For example: + +```yaml +-**/*Test*.c:** # exclusion pattern: remove all alerts from = all test files +-**/*Test*.c # ditto, short form of the line above ++**/*.c:cpp/infiniteloop # inclusion pattern: This line has precedenc= e over the first two + # and thus "allow lists" alerts of type "cpp= /infiniteloop" +**/*.c:cpp/infiniteloop # ditto, the "+" in inclusion patterns is op= tional +** # allow all alerts in all files (reverses al= l previous lines) +``` + +- The path separator character in patterns is always `/`, independent of= the platform the code is running on and + independent of the paths in the SARIF file. +- `*` matches any character, except a path separator +- `**` matches any character and is only allowed between path separators= , e.g. `/**/file.txt`, `**/file.txt` or `**`. + NOT allowed: `**.txt`, `/etc**` +- The rule pattern is optional. If omitted, it will apply to alerts of a= ll types. +- Subsequent lines override earlier ones. By default all alerts are incl= uded. +- If you need to use the literals `+`, `-`, `\` or `:` in your pattern, = you can escape them with `\`, e.g. + `\-this/is/an/inclusion/file/pattern\:with-a-semicolon:and/a/rule/patt= ern/with/a/\\/backslash`. For `+` and `-`, this + is only necessary if they appear at the beginning of the pattern line. + +## Integration Instructions + +First, note that most CodeQL CLI operations will take a long time the fi= rst time they are run. This is due to: + +1. Downloads - Downloading the CodeQL CLI binary (during `stuart_update`= ) and downloading CodeQL queries during + CodeQL plugin execution +2. Cache not established - CodeQL CLI caches data as it performs analysi= s. The first time analysis is performed will + take more time than in the future. + +Second, these are build plugins. This means a build needs to take place = for the plugins to run. This typically happens +in the following two scenarios: + +1. `stuart_build` - A single package is built and the build process is s= tarted by the stuart tools. +2. `stuart_ci_build` - A number of packages may be built and the build p= rocess is started by the `CompilerPlugin`. + +In any case, each time a package is built, the CodeQL plugins will be ru= n if their scopes are active. + +### Integration Step 1 - Choose Scopes + +Decide which scopes need to be enabled in your platform, see [Scopes Ava= ilable](#scopes-available). + +Consider using a build profile to enable CodeQL so developers and pipeli= nes can use the profile when they are +interested in CodeQL results but in other cases they can easily work wit= hout CodeQL in the way. + +Furthermore, build-script specific command-line parameters might be usef= ul to control CodeQL scopes and other +behavior. + +#### Scopes Available + +This CodeQL plugin leverages scopes to control major pieces of functiona= lity. Any combination of scopes can be +returned from the `GetActiveScopes()` function in the platform settings = manager to add and remove functionality. + +Plugin scopes: + +- `codeql-analyze` - Activate `CodeQlAnalyzePlugin` to perform post-buil= d analysis of the last generated database for + the package and target specified. +- `codeql-build` - Activate `CodeQlBuildPlugin` to hook the firmware bui= ld in pre-build such that the build will + generate a CodeQL database during build. + +In most cases, to perform a full CodeQL run, `codeql-build` should be en= abled so a new CodeQL database is generated +during build and `codeql-analyze` should be be enabled so analysis of th= at database is performed after the build is +completed. + +External dependency scopes: + +- `codeql-ext-dep` - Downloads the cross-platform CodeQL CLI as an exter= nal dependency. +- `codeql-linux-ext-dep` - Downloads the Linux CodeQL CLI as an external= dependency. +- `codeql-windows-ext-dep` - Downloads the Windows CodeQL CLI as an exte= rnal dependency. + +Note, that the CodeQL CLI is large in size. Sizes as of the [v2.11.2 rel= ease](https://github.com/github/codeql-cli-binaries/releases/tag/v2.11.2)= . + +| Cross-platform | Linux | Windows | +|:--------------:|:------:|:-------:| +| 934 MB | 415 MB | 290 MB | + +Therefore, the following is recommended: + +1. **Ideal** - Create container images for build agents and install the = CodeQL CLI for the container OS into the + container. +2. Leverage host-OS detection (e.g. [`GetHostInfo()`](https://github.com= /tianocore/edk2-pytool-library/blob/42ad6561af73ba34564f1577f64f7dbaf1d0a= 5a2/edk2toollib/utility_functions.py#L112)) +to set the scope for the appropriate operating system. This will downloa= d the much smaller OS-specific application. + +> _NOTE:_ You should never have more than one CodeQL external dependency= scope enabled at a time. + +### Integration Step 2 - Choose CodeQL Queries + +Determine which queries need to be run against packages in your repo. In= most cases, the same set of queries will be +run against all packages. It is also possible to customize the queries r= un at the package level. + +The default set of Project Mu CodeQL queries is specified in the `MuCode= QlQueries.qls` file in this plugin. + +> _NOTE:_ The queries in `MuCodeQlQueries.qls` may change at any time. I= f you do not want these changes to impact +> your platform, do not relay on option (3). + +The plugin decides what queries to run based on the following, in order = of preference: + +1. Package CI YAML file query specifier +2. Build environment variable query specifier +3. Plugin default query set file + +For details on how to set (1) and (2), see the Package CI Configuration = and Environment Variable sections respectively. + +> _NOTE:_ The value specified is directly passed as a `query specifier` = to CodeQL CLI. Therefore, the arguments +> allowed by the `` argument of CodeQL CLI are allowed= here. See +> [Running codeql database analyze](https://codeql.github.com/docs/codeq= l-cli/analyzing-databases-with-the-codeql-cli/#running-codeql-database-an= alyze). + +A likely scenario is that a platform needs to run local/closed source qu= eries in addition to the open-source queries. +There's various ways to handle that: + +1. Create a query specifier that includes all the queries needed, both p= ublic and private and use that query specifier, + either globally or at package-level. + + For example, at the global level - `STUART_CODEQL_QUERY_SPECIFIERS` =3D= _"Absolute_path_to_AllMyQueries.qls"_ + +2. Specify a query specifier that includes the closed sources queries an= d reuse the public query list provided by + this plugin. + + For example, at the global level - `STUART_CODEQL_QUERY_SPECIFIERS` =3D= _"Absolute_path_to_MuCodeQlQueries.qls + Absolute_path_to_ClosedSourceQueries.qls"_ + +Refer to the CodeQL documentation noted above on query specifiers to dev= ise other options. + +### Integration Step 3 - Determine Global Configuration Values + +Review the Environment Variable section to determine which, if any, glob= al values need to be set in your build script. + +### Integration Step 4 - Determine Package-Specific Configuration Values + +Review the Package CI Configuration section to determine which, if any, = global values need to be set in your +package's CI YAML file. + +### Integration Step 5 - Testing + +Verify a `stuart_update` and `stuart_build` (or `stuart_ci_build`) comma= nd work. + +### Integration Step 6 - Define Inclusion and Exclusion Filter Patterns + +After reviewing the test results from Step 5, determine if you need to a= pply any filters as described in +[Filter Patterns](#filter-patterns). + +## High-Level Operation + +This section summarizes the complete CodeQL plugin flow. This is to help= developers understand basic theory of +operation behind the plugin and can be skipped by anyone not interested = in those details. + +### CodeQlBuildPlugin + +1. Register a pre-build hook +2. Determine the package and target being built +3. Determine the best CodeQL CLI path to use + - First choice, the `STUART_CODEQL_PATH` environment variable + - Note: This is set by the CodeQL CLI external dependency if that i= s used + - Second choice, `codeql` as found on the system path +4. Determine the directory name for the CodeQL database + - Format: `Build/codeql-db---` +5. Clean the build directory of the active platform and target + - CodeQL database generation only works on clean builds +6. Ensure the "build" step is not skipped as a build is needed to genera= te a CodeQL database +7. Build a CodeQL file that wraps around the edk2 build + - Written to the package build directory + - Example: `Build/MdeModulePkg/VS2022/codeql_build_command.bat` +8. Set the variables necessary for stuart to call CodeQL CLI during the = build phase + - Sets `EDK_BUILD_CMD` and `EDK_BUILD_PARAMS` + +### CodeQlAnalyzePlugin + +1. Register a post-build hook +2. Determine the package and target being built +3. Determine the best CodeQL CLI path to use + - First choice, the `STUART_CODEQL_PATH` environment variable + - Note: This is set by the CodeQL CLI external dependency if that i= s used + - Second choice, `codeql` as found on the system path +4. Determine the directory name for the most recent CodeQL database + - Format: `Build/codeql-db---` +5. Determine plugin audit status for the given package and target + - Check if `AuditOnly` is enabled either globally or for the package +6. Determine the CodeQL query specifiers to use for the given package an= d target + - First choice, the package CI YAML file value + - Second choice, the `STUART_CODEQL_QUERY_SPECIFIERS` + - Third choice, use `CodeQlQueries.qls` (in the plugin directory) +7. Run CodeQL CLI to perform database analysis +8. Parse the analysis SARIF file to determine the number of CodeQL failu= res +9. Return the number of failures (or zero if `AuditOnly` is enabled) + +## Local Development Tips + +This section contains helpful tips to expedite common scenarios when wor= king with CodeQL locally. + +1. Pre-build, Build, and Post-Build + + Generating a database requires the pre-build and build steps. Analyzi= ng a database requires the post-build step. + + Therefore, if you are making tweaks that don't affect the build, such= as modifying the CodeQL queries used or level + of severity reported, you can save time by skipping pre-build and pos= t-build (e.g. `--skipprebuild` and + `--skipbuild`). + +2. Scopes + + Similar to (1), add/remove `codeql-build` and `codeql-analyze` from t= he active scopes to save time depending on what + you are trying to do. + + If you are focusing on coding, remove the code CodeQL scopes if they = are active. If you are ready to check your + changes against CodeQL, simply add the scopes back. It is recommended= to use build profiles to do this more + conveniently. + + If you already have CodeQL CLI enabled, you can remove the `codeql-ex= t-dep` scope locally. The build will use the + `codeql` command on your path. + +3. CodeQL Output is in the CI Build Log + + To see exactly which queries CodeQL ran or why it might be taking lon= ger than expected, look in the CI build log + (i.e. `Build/CI_BUILDLOG.txt`) where the CodeQL CLI application outpu= t is written. + + Search for the text you see in the progress output (e.g. "Analyzing _= MdeModulePkg_ (_DEBUG_) CodeQL database at") + to jump to the section of the log just before the CodeQL CLI is invok= ed. + +4. Use a SARIF Viewer to Read Results + +The [SARIF Viewer extension for VS Code](https://marketplace.visualstudi= o.com/items?itemName=3DMS-SarifVSCode.sarif-viewer) +can open the .sarif file generated by this plugin and allow you to click= links directly to the problem area in source +files. diff --git a/BaseTools/Plugin/CodeQL/analyze/__init__.py b/BaseTools/Plug= in/CodeQL/analyze/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/BaseTools/Plugin/CodeQL/analyze/analyze_filter.py b/BaseTool= s/Plugin/CodeQL/analyze/analyze_filter.py new file mode 100644 index 000000000000..9a544e3192c6 --- /dev/null +++ b/BaseTools/Plugin/CodeQL/analyze/analyze_filter.py @@ -0,0 +1,176 @@ +# @file analyze_filter.py +# +# Filters results in a SARIF file. +# +# Based on code in: +# https://github.com/advanced-security/filter-sarif +# +# Specifically: +# https://github.com/advanced-security/filter-sarif/blob/main/filter_s= arif.py +# +# That code is licensed under: +# Apache License +# Version 2.0, January 2004 +# http://www.apache.org/licenses/ +# +# View the full and complete license as provided by that repository here= : +# https://github.com/advanced-security/filter-sarif/blob/main/LICENSE +# +# This file has been altered from its original form. +# +# It primarily contains modifications made to integrate with the CodeQL = plugin. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +import json +import logging +import re +from os import PathLike +from typing import Iterable, List, Tuple + +from analyze.globber import match + + +def _match_path_and_rule( + path: str, rule: str, patterns: Iterable[str]) -> bool: + """Returns whether a given path matches a given rule. + + Args: + path (str): A file path string. + rule (str): A rule file path string. + patterns (Iterable[str]): An iterable of pattern strings. + + Returns: + bool: True if the path matches a rule. Otherwise, False. + """ + result =3D True + for s, fp, rp in patterns: + if match(rp, rule) and match(fp, path): + result =3D s + return result + + +def _parse_pattern(line: str) -> Tuple[str]: + """Parses a given pattern line. + + Args: + line (str): The line string that contains the rule. + + Returns: + Tuple[str]: The parsed sign, file pattern, and rule pattern from= the + line. + """ + sep_char =3D ':' + esc_char =3D '\\' + file_pattern =3D '' + rule_pattern =3D '' + seen_separator =3D False + sign =3D True + + # inclusion or exclusion pattern? + u_line =3D line + if line: + if line[0] =3D=3D '-': + sign =3D False + u_line =3D line[1:] + elif line[0] =3D=3D '+': + u_line =3D line[1:] + + i =3D 0 + while i < len(u_line): + c =3D u_line[i] + i =3D i + 1 + if c =3D=3D sep_char: + if seen_separator: + raise Exception( + 'Invalid pattern: "' + line + '" Contains more than = one ' + 'separator!') + seen_separator =3D True + continue + elif c =3D=3D esc_char: + next_c =3D u_line[i] if (i < len(u_line)) else None + if next_c in ['+' , '-', esc_char, sep_char]: + i =3D i + 1 + c =3D next_c + if seen_separator: + rule_pattern =3D rule_pattern + c + else: + file_pattern =3D file_pattern + c + + if not rule_pattern: + rule_pattern =3D '**' + + return sign, file_pattern, rule_pattern + + +def filter_sarif(input_sarif: PathLike, + output_sarif: PathLike, + patterns: List[str], + split_lines: bool) -> None: + """Filters a SARIF file with a given set of filter patterns. + + Args: + input_sarif (PathLike): Input SARIF file path. + output_sarif (PathLike): Output SARIF file path. + patterns (PathLike): List of filter pattern strings. + split_lines (PathLike): Whether to split lines in individual pat= terns. + """ + if split_lines: + tmp =3D [] + for p in patterns: + tmp =3D tmp + re.split('\r?\n', p) + patterns =3D tmp + + patterns =3D [_parse_pattern(p) for p in patterns if p] + + logging.debug('Given patterns:') + for s, fp, rp in patterns: + logging.debug( + 'files: {file_pattern} rules: {rule_pattern} ({sign})'.fo= rmat( + file_pattern=3Dfp, + rule_pattern=3Drp, + sign=3D'positive' if s else 'negative')) + + with open(input_sarif, 'r') as f: + s =3D json.load(f) + + for run in s.get('runs', []): + if run.get('results', []): + new_results =3D [] + for r in run['results']: + if r.get('locations', []): + new_locations =3D [] + for l in r['locations']: + # TODO: The uri field is optional. We might have= to + # fetch the actual uri from "artifacts" vi= a + # "index" + # (see https://github.com/microsoft/sarif-tutori= als/blob/main/docs/2-Basics.md#-linking-results-to-artifacts) + uri =3D l.get( + 'physicalLocation', {}).get( + 'artifactLocation', {}).get( + 'uri', None) + + # TODO: The ruleId field is optional and potenti= ally + # ambiguous. We might have to fetch the ac= tual + # ruleId from the rule metadata via the ru= leIndex + # field. + # (see https://github.com/microsoft/sarif-tutori= als/blob/main/docs/2-Basics.md#rule-metadata) + ruleId =3D r['ruleId'] + + if (uri is None or + _match_path_and_rule(uri, ruleId, patterns))= : + new_locations.append(l) + r['locations'] =3D new_locations + if new_locations: + new_results.append(r) + else: + # locations array doesn't exist or is empty, so we c= an't + # match on anything. Therefore, we include the resul= t in + # the output. + new_results.append(r) + run['results'] =3D new_results + + with open(output_sarif, 'w') as f: + json.dump(s, f, indent=3D2) diff --git a/BaseTools/Plugin/CodeQL/analyze/globber.py b/BaseTools/Plugi= n/CodeQL/analyze/globber.py new file mode 100644 index 000000000000..25548fc9c754 --- /dev/null +++ b/BaseTools/Plugin/CodeQL/analyze/globber.py @@ -0,0 +1,132 @@ +# @file globber.py +# +# Provides global functionality for use by the CodeQL plugin. +# +# Copyright 2019 Jaakko Kangasharju +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implie= d. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# This file has been altered from its original form. +# +# Based on code in: +# https://github.com/advanced-security/filter-sarif +# +# Specifically: +# https://github.com/advanced-security/filter-sarif/blob/main/filter_s= arif.py +# +# That code is licensed under: +# Apache License +# Version 2.0, January 2004 +# http://www.apache.org/licenses/ +# +# This file has been altered from its original form. Primarily modificat= ions +# made to integrate with the CodeQL plugin. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +import re + +_double_star_after_invalid_regex =3D re.compile(r'[^/\\]\*\*') +_double_star_first_before_invalid_regex =3D re.compile('^\\*\\*[^/]') +_double_star_middle_before_invalid_regex =3D re.compile(r'[^\\]\*\*[^/]'= ) + + +def _match_component(pattern_component, file_name_component): + if len(pattern_component) =3D=3D 0 and len(file_name_component) =3D=3D= 0: + return True + elif len(pattern_component) =3D=3D 0: + return False + elif len(file_name_component) =3D=3D 0: + return pattern_component =3D=3D '*' + elif pattern_component[0] =3D=3D '*': + return (_match_component(pattern_component, file_name_component[= 1:]) or + _match_component(pattern_component[1:], file_name_compon= ent)) + elif pattern_component[0] =3D=3D '?': + return _match_component(pattern_component[1:], file_name_compone= nt[1:]) + elif pattern_component[0] =3D=3D '\\': + return (len(pattern_component) >=3D 2 and + pattern_component[1] =3D=3D file_name_component[0] and + _match_component( + pattern_component[2:], file_name_component[1:])) + elif pattern_component[0] !=3D file_name_component[0]: + return False + else: + return _match_component(pattern_component[1:], file_name_compone= nt[1:]) + + +def _match_components(pattern_components, file_name_components): + if len(pattern_components) =3D=3D 0 and len(file_name_components) =3D= =3D 0: + return True + if len(pattern_components) =3D=3D 0: + return False + if len(file_name_components) =3D=3D 0: + return len(pattern_components) =3D=3D 1 and pattern_components[0= ] =3D=3D '**' + if pattern_components[0] =3D=3D '**': + return (_match_components(pattern_components, file_name_componen= ts[1:]) + or _match_components( + pattern_components[1:], file_name_components)) + else: + return ( + _match_component( + pattern_components[0], file_name_components[0]) and + _match_components( + pattern_components[1:], file_name_components[1:])) + + +def match(pattern: str, file_name: str): + """Match a glob pattern against a file name. + + Glob pattern matching is for file names, which do not need to exist = as + files on the file system. + + A file name is a sequence of directory names, possibly followed by t= he name + of a file, with the components separated by a path separator. A glob + pattern is similar, except it may contain special characters: A '?' = matches + any character in a name. A '*' matches any sequence of characters (p= ossibly + empty) in a name. Both of these match only within a single component= , i.e., + they will not match a path separator. A component in a pattern may a= lso be + a literal '**', which matches zero or more components in the complet= e file + name. A backslash '\\' in a pattern acts as an escape character, and + indicates that the following character is to be matched literally, e= ven if + it is a special character. + + Args: + pattern (str): The pattern to match. The path separator in patte= rns is + always '/'. + file_name (str): The file name to match against. The path separa= tor in + file names is the platform separator + + Returns: + bool: True if the pattern matches, False otherwise. + """ + if (_double_star_after_invalid_regex.search(pattern) is not None or + _double_star_first_before_invalid_regex.search( + pattern) is not None or + _double_star_middle_before_invalid_regex.search(pattern) is not = None): + raise ValueError( + '** in {} not alone between path separators'.format(pattern)= ) + + pattern =3D pattern.rstrip('/') + file_name =3D file_name.rstrip('/') + + while '**/**' in pattern: + pattern =3D pattern.replace('**/**', '**') + + pattern_components =3D pattern.split('/') + + # We split on '\' as well as '/' to support unix and windows-style p= aths + file_name_components =3D re.split(r'[\\/]', file_name) + + return _match_components(pattern_components, file_name_components) diff --git a/BaseTools/Plugin/CodeQL/codeqlcli_ext_dep.yaml b/BaseTools/P= lugin/CodeQL/codeqlcli_ext_dep.yaml new file mode 100644 index 000000000000..37c7c9f595ca --- /dev/null +++ b/BaseTools/Plugin/CodeQL/codeqlcli_ext_dep.yaml @@ -0,0 +1,26 @@ +## @file codeqlcli_ext_dep.yaml +# +# Downloads the CodeQL Command-Line Interface (CLI) application that sup= port Linux, Windows, and Mac OS X. +# +# This download is very large but conveniently provides support for all = operating systems. Use it if you +# need CodeQL CLI support without concern for the host operating system. +# +# In an environment where a platform might build in different operating = systems, it is recommended to set +# the scope for the appropriate CodeQL external dependency based on the = host operating system being used. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +{ + "scope": "codeql-ext-dep", + "type": "web", + "name": "codeql_cli", + "source": "https://github.com/github/codeql-cli-binaries/releases/down= load/v2.12.4/codeql.zip", + "version": "2.12.4", + "sha256": "f682f1155d627ad97f10b1bcad97f682011986717bd3823e9cf831ed83a= c96e7", + "compression_type": "zip", + "internal_path": "/codeql/", + "flags": ["set_shell_var", ], + "var_name": "STUART_CODEQL_PATH" +} diff --git a/BaseTools/Plugin/CodeQL/codeqlcli_linux_ext_dep.yaml b/BaseT= ools/Plugin/CodeQL/codeqlcli_linux_ext_dep.yaml new file mode 100644 index 000000000000..a6ca5d0f34cc --- /dev/null +++ b/BaseTools/Plugin/CodeQL/codeqlcli_linux_ext_dep.yaml @@ -0,0 +1,24 @@ +## @file codeqlcli_linux_ext_dep.yaml +# +# Downloads the Linux CodeQL Command-Line Interface (CLI) application. +# +# This download only supports Linux. In an environment where a platform = might build in different operating +# systems, it is recommended to set the scope for the appropriate CodeQL= external dependency based on the +# host operating system being used. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +{ + "scope": "codeql-linux-ext-dep", + "type": "web", + "name": "codeql_linux_cli", + "source": "https://github.com/github/codeql-cli-binaries/releases/down= load/v2.14.5/codeql-linux64.zip", + "version": "2.14.5", + "sha256": "72aa5d748ff9ab57cfd86045560683bdc4897e0fe6d9f9a2786d9394674= ae733", + "compression_type": "zip", + "internal_path": "/codeql/", + "flags": ["set_shell_var", ], + "var_name": "STUART_CODEQL_PATH" +} diff --git a/BaseTools/Plugin/CodeQL/codeqlcli_windows_ext_dep.yaml b/Bas= eTools/Plugin/CodeQL/codeqlcli_windows_ext_dep.yaml new file mode 100644 index 000000000000..e706a7cabf9f --- /dev/null +++ b/BaseTools/Plugin/CodeQL/codeqlcli_windows_ext_dep.yaml @@ -0,0 +1,24 @@ +## @file codeqlcli_windows_ext_dep.yaml +# +# Downloads the Windows CodeQL Command-Line Interface (CLI) application. +# +# This download only supports Windows. In an environment where a platfor= m might build in different operating +# systems, it is recommended to set the scope for the appropriate CodeQL= external dependency based on the +# host operating system being used. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +{ + "scope": "codeql-windows-ext-dep", + "type": "web", + "name": "codeql_windows_cli", + "source": "https://github.com/github/codeql-cli-binaries/releases/down= load/v2.14.5/codeql-win64.zip", + "version": "2.14.5", + "sha256": "861fcb38365cc311efee0c3a28c77494e93c69a969885b72e53173ad473= f61aa", + "compression_type": "zip", + "internal_path": "/codeql/", + "flags": ["set_shell_var", ], + "var_name": "STUART_CODEQL_PATH" +} diff --git a/BaseTools/Plugin/CodeQL/common/__init__.py b/BaseTools/Plugi= n/CodeQL/common/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/BaseTools/Plugin/CodeQL/common/codeql_plugin.py b/BaseTools/= Plugin/CodeQL/common/codeql_plugin.py new file mode 100644 index 000000000000..c827cc30ae8b --- /dev/null +++ b/BaseTools/Plugin/CodeQL/common/codeql_plugin.py @@ -0,0 +1,74 @@ +# @file codeql_plugin.py +# +# Common logic shared across the CodeQL plugin. +# +# Copyright (c) Microsoft Corporation. All rights reserved. +# SPDX-License-Identifier: BSD-2-Clause-Patent +## + +import os +import shutil +from os import PathLike + +from edk2toollib.utility_functions import GetHostInfo + + +def get_codeql_db_path(workspace: PathLike, package: str, target: str, + new_path: bool =3D True) -> str: + """Return the CodeQL database path for this build. + + Args: + workspace (PathLike): The workspace path. + package (str): The package name (e.g. "MdeModulePkg") + target (str): The target (e.g. "DEBUG") + new_path (bool, optional): Whether to create a new database path= or + return an existing path. Defaults to = True. + + Returns: + str: The absolute path to the CodeQL database directory. + """ + codeql_db_dir_name =3D "codeql-db-" + package + "-" + target + codeql_db_dir_name =3D codeql_db_dir_name.lower() + codeql_db_path =3D os.path.join("Build", codeql_db_dir_name) + codeql_db_path =3D os.path.join(workspace, codeql_db_path) + + i =3D 0 + while os.path.isdir(f"{codeql_db_path + '-%s' % i}"): + i +=3D 1 + + if not new_path: + if i =3D=3D 0: + return None + else: + i -=3D 1 + + return codeql_db_path + f"-{i}" + + +def get_codeql_cli_path() -> str: + """Return the current CodeQL CLI path. + + Returns: + str: The absolute path to the CodeQL CLI application to use for + this build. + """ + # The CodeQL executable path can be passed via the + # STUART_CODEQL_PATH environment variable (to override with a + # custom value for this run) or read from the system path. + codeql_path =3D None + + if "STUART_CODEQL_PATH" in os.environ: + codeql_path =3D os.environ["STUART_CODEQL_PATH"] + + if GetHostInfo().os =3D=3D "Windows": + codeql_path =3D os.path.join(codeql_path, "codeql.exe") + else: + codeql_path =3D os.path.join(codeql_path, "codeql") + + if not os.path.isfile(codeql_path): + codeql_path =3D None + + if not codeql_path: + codeql_path =3D shutil.which("codeql") + + return codeql_path --=20 2.42.0.windows.2 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#109083): https://edk2.groups.io/g/devel/message/109083 Mute This Topic: https://groups.io/mt/101603469/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-