Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance rule metadata and suppression info in SARIF V2 errorlog #64277

Merged
merged 13 commits into from
Nov 18, 2022

Conversation

mavasani
Copy link
Contributor

@mavasani mavasani commented Sep 26, 2022

Two additional piece of data is now logged in SARIF v2 log:

  1. Inside Results section for reported diagnostics: Results section contains an entry for each reported diagnostic. For each diagnostic instance that is suppressed with a pragma, SuppressMessageAttribute or via a DiagnosticSuppressor, we now report a new property suppressionType with one of these three values. This data helps analyze the preferred in-source suppression mechanisms in a code base.
  2. Inside Rules metadata section for analyzer rules: Rules section contain an entry for each analyzer reported DiagnosticDescriptor. Prior to this PR, we only logged rule metadata, i.e. DiagnosticDescriptor data, for those rules that fired at least one diagnostic instance in the compilation, and the rule metadata had no suppression info, so there was no way to know which all rules were executed on the project and which were disabled for part or entirety of the compilation. We now report the DiagnosticDescriptor info for all analyzers that were provided to the compilation, regardless of whether or not they executed on the entire compilation, part of the compilation or were disabled for the entire compilation. Additionally, if a rule had either a source suppression or was disabled for part or whole of the compilation via options, the rule metadata contains a special flag isEverSuppressed = true and an array suppressionKinds with either or both of the below suppression kinds:
    1. inSource suppression kind for one or more reported diagnostic(s) that were suppressed through pragma directive, SuppressMessageAttribute or a DiagnosticSuppressor.
    2. external suppression kind for diagnostic ID that is disabled either for the entire compilation (via global options such as /nowarn, ruleset, globalconfig, etc.) or for certain files or folders in the compilation (via editorconfig options).

Sample errorlog.txt

TODO:

  • Add unit tests

Two additional piece of info is now logged in SARIF v2 log:
1. We now report the rule metadata, i.e. Descriptor info, for all analyzers that were provided to the compilation, regardless of whether or not they executed on the entire compilation, part of the compilation or were suppressed for the entire compilation. Additionally, the rule metadata contains a special flag "isEverSuppressed = true" if the diagnostic ID was suppressed for the entire compilation (via global options such as /nowarn, ruleset, globalconfig, etc.) or for certain files or folders in the compilation (via editorconfig).
2. For each diagnostic instance that is suppressed in source with a pragma, SuppressMessageAttribute or via a DiagnosticSuppressor, we now report a new property "suppressionType" with one of these three values.
@mavasani mavasani changed the title Enhance rule and suppression info in SARIF V2 log Enhance rule metadata and suppression info in SARIF V2 log Sep 26, 2022
@mavasani mavasani changed the title Enhance rule metadata and suppression info in SARIF V2 log Enhance rule metadata and suppression info in SARIF V2 errorlog Sep 26, 2022
@mavasani mavasani marked this pull request as ready for review October 17, 2022 12:04
@mavasani mavasani requested a review from a team as a code owner October 17, 2022 12:04
@mavasani mavasani requested a review from jaredpar October 17, 2022 12:04
@jaredpar
Copy link
Member

Could we add a doc file that captures much of the information in your PR message and include it in the PR? It's very valuable to know what these items mean and I think your PR has a great starting point for a doc.

Doesn't need to be complex, just something we can point customers to in the future that explain what entries mean what. Can be roughly your PR description with a few formatting changes.

@mavasani
Copy link
Contributor Author

@jaredpar Thanks for the suggestion. I have updated the error log format doc with a high level overview of the SARIF v2 format error log contents.

@mavasani
Copy link
Contributor Author

@dotnet/roslyn-compiler for reviews.

@jaredpar
Copy link
Member

@jjonescz, @cston, @RikkiGibson PTAL

@mavasani
Copy link
Contributor Author

@jjonescz @RikkiGibson for second review, thanks!

@mavasani
Copy link
Contributor Author

mavasani commented Nov 7, 2022

@jjonescz @RikkiGibson @dotnet/roslyn-compiler for second review, thanks!

@mavasani
Copy link
Contributor Author

@dotnet/roslyn-compiler can I please get a second review? Thanks!

@mavasani
Copy link
Contributor Author

Merging this in to unblock the security team from using the additional SARIF info. I'll address any additional feedback with a follow-up PR. Thanks!

@mavasani mavasani merged commit 33c8ae8 into dotnet:main Nov 18, 2022
@mavasani mavasani deleted the SarifEnhancements branch November 18, 2022 05:33
@ghost ghost added this to the Next milestone Nov 18, 2022
@allisonchou allisonchou modified the milestones: Next, 17.5 P2 Nov 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants